diff --git a/.gitignore b/.gitignore index 6348658..080b1a4 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,5 @@ yarn-error.* expo-env.d.ts # @end expo-cli + +mame.xml \ No newline at end of file diff --git a/package.json b/package.json index 6408acc..1810a2d 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,8 @@ "test:ci": "vitest run --coverage=false", "test:integration": "vitest run --coverage=false --config vitest.integration.config.ts", "check": "npm run typecheck && npm run test:ci", - "build:web": "npx expo export --platform web" + "build:web": "npx expo export --platform web", + "seed:mame": "node scripts/build-mame-game-seed.mjs" }, "dependencies": { "@maplibre/maplibre-react-native": "^11.0.1", diff --git a/scripts/build-mame-game-seed.mjs b/scripts/build-mame-game-seed.mjs new file mode 100644 index 0000000..73c3433 --- /dev/null +++ b/scripts/build-mame-game-seed.mjs @@ -0,0 +1,344 @@ +#!/usr/bin/env node + +import { readFileSync, writeFileSync } from 'node:fs'; +import { basename } from 'node:path'; + +const DEFAULT_OUTPUT = 'supabase/seed-data/mame-game-catalog.generated.sql'; + +const EXCLUDED_TITLE_PATTERN = + /(^[^a-z0-9]+|slot|poker|blackjack|casino|fruit|mahjong|pachinko|pachislo|bingo|lottery|quiz|trivia|medal|keyboard|calculator|printer|terminal|bios|pinball|plug ?& ?play|plug and play|pocket player|mini arcade|my arcade|tiger|jakks|radica|coleco|scorpion|fruit machine|educational computer|electronic typewriter)\b/i; + +const EXCLUDED_SOURCE_PATTERN = + /(^|\/)(aristocrat|barcrest|bfm|maygay|igt|mpu4|mpu5|pinball|handheld|tvgames|skeleton|adds|acorn|alesis|apple|amstrad|att|commodore|sinclair|msx|sony|trs|pc|pce|palm|psion|nokia|ti|sharp|tandy|tektronix|thomson|trainer|roland|saitek|sgi|ussr|virtual|vtech|yeno|ncd|facit|esprit|interton|nintendo\/nes|nintendo\/snes|nintendo\/gameboy|sega\/megadriv|sega\/sms|coleco|mattel|epoch|jpm)\b/i; + +const CATEGORY_RULES = [ + ['Fighting', /\b(street fighter|mortal kombat|tekken|king of fighters|marvel vs|capcom vs|killer instinct|virtua fighter|soul ?calibur|guilty gear|samurai shodown|darkstalkers|fatal fury)\b/i], + ['Rhythm', /\b(dance dance|ddr|pump it up|beatmania|jubeat|sound voltex|taiko|maimai|groove coaster|wacca|museca|pop'n)\b/i], + ['Light gun', /\b(time crisis|house of the dead|area 51|terminator|lethal enforcers|jurassic park|virtua cop|operation wolf|gunblade)\b/i], + ['Racing', /\b(daytona|cruis'?n|outrun|ridge racer|crazy taxi|hydro thunder|sega rally|initial d|sprint|racing|driver)\b/i], + ['Sports', /\b(nba jam|nfl blitz|golden tee|track ?& ?field|baseball|football|soccer|tennis|bowling|golf|hangtime)\b/i], + ['Beat em up', /\b(final fight|simpsons|teenage mutant ninja|tmnt|x-men|gauntlet|double dragon|streets of rage|dungeons & dragons)\b/i], + ['Shooter', /\b(galaga|space invaders|defender|robotron|raiden|1942|r-type|rtype|metal slug|contra|gradius|darius|ikaruga|shooter)\b/i], + ['Platformer', /\b(donkey kong|mario bros|bubble bobble|ghosts'?n goblins|joust|rastan|contra)\b/i], + ['Puzzle', /\b(tetris|q\*?bert|columns|puzzle|puyo|bubble bobble|magical drop)\b/i], + ['Classic', /\b(pac-man|ms\.? pac|galaga|donkey kong|frogger|centipede|asteroids|dig dug|defender|joust|robotron|q\*?bert|tempest|classic)\b/i], +]; + +const CANONICAL_SLUG_OVERRIDES = new Map([ + ['dragonslair', 'dragons-lair'], + ['houseofthedead2', 'house-of-the-dead-2'], + ['qbert', 'qbert'], + ['roadblasters', 'roadblasters'], + ['satanshollow', 'satans-hollow'], + ['smashtv', 'smash-tv'], + ['soulcalibur', 'soulcalibur'], + ['soulcaliburii', 'soulcalibur-ii'], + ['starwars', 'star-wars-1983'], + ['terminator2judgmentday', 'terminator-2-judgment-day-arcade'], +]); + +function getArgValue(flag) { + const index = process.argv.indexOf(flag); + return index >= 0 ? process.argv[index + 1] : null; +} + +function getPositionalInput() { + return process.argv + .slice(2) + .find((argument) => !argument.startsWith('-')); +} + +function hasFlag(flag) { + return process.argv.includes(flag); +} + +function showHelp() { + console.log(` +Usage: + node scripts/build-mame-game-seed.mjs --input path/to/mame.xml [--output supabase/seed-data/mame-game-catalog.generated.sql] [--chunk-size 500] [--include-clones] [--include-mechanical] + +Input: + Generate XML with MAME: + mame -listxml > mame.xml + +Output: + Idempotent SQL that inserts/updates public.games only. It does not create venue inventory. + By default it skips clones, mechanical/pinball sets, gambling games, handhelds, + plug-and-play TV games, and home computer/console entries. +`); +} + +function decodeXml(value) { + return value + .replaceAll('&', '&') + .replaceAll('"', '"') + .replaceAll(''', "'") + .replaceAll('<', '<') + .replaceAll('>', '>'); +} + +function getAttribute(block, name) { + const match = block.match(new RegExp(`\\b${name}="([^"]*)"`)); + return match ? decodeXml(match[1]) : null; +} + +function getTag(block, name) { + const match = block.match(new RegExp(`<${name}>([\\s\\S]*?)<\\/${name}>`)); + return match ? decodeXml(match[1].trim()) : null; +} + +function normalizeTitle(title) { + return title + .replace(/\s*\([^)]*(set|version|ver\.?|revision|rev\.?|bootleg|prototype|world|usa|us|japan|europe|asia|korea|china|taiwan|location test|hack)[^)]*\)\s*/gi, ' ') + .replace(/\s+/g, ' ') + .trim(); +} + +function slugify(value) { + return value + .toLowerCase() + .replace(/&/g, ' and ') + .replace(/['’*]/g, '') + .replace(/[^a-z0-9]+/g, '-') + .replace(/^-+|-+$/g, '') + .slice(0, 90); +} + +function getCanonicalSlug(title) { + const normalizedTitle = title.toLowerCase().replace(/[^a-z0-9]+/g, ''); + + return CANONICAL_SLUG_OVERRIDES.get(normalizedTitle) ?? slugify(title); +} + +function sqlString(value) { + if (value === null || value === undefined || value === '') { + return 'null'; + } + + return `'${String(value).replaceAll("'", "''")}'`; +} + +function sqlStringArray(values) { + const uniqueValues = [...new Set(values.filter(Boolean))]; + + if (uniqueValues.length === 0) { + return "'{}'::text[]"; + } + + return `array[${uniqueValues.map(sqlString).join(', ')}]`; +} + +function sqlJson(value) { + return `'${JSON.stringify(value).replaceAll("'", "''")}'::jsonb`; +} + +function inferCategories(title) { + const categories = CATEGORY_RULES + .filter(([, pattern]) => pattern.test(title)) + .map(([category]) => category); + + return categories.length > 0 ? [...new Set(categories)] : ['Arcade']; +} + +function buildCatalog(xml, { includeClones, includeMechanical }) { + const machineBlocks = xml.match(//g) ?? []; + const catalog = new Map(); + + for (const block of machineBlocks) { + const machineName = getAttribute(block, 'name'); + const cloneOf = getAttribute(block, 'cloneof'); + const sourceFile = getAttribute(block, 'sourcefile') ?? ''; + const isDevice = getAttribute(block, 'isdevice') === 'yes'; + const isMechanical = getAttribute(block, 'ismechanical') === 'yes'; + const runnable = getAttribute(block, 'runnable'); + const rawTitle = getTag(block, 'description'); + const yearText = getTag(block, 'year'); + const manufacturer = getTag(block, 'manufacturer'); + + if (!machineName || !rawTitle || isDevice || runnable === 'no') { + continue; + } + + if (isMechanical && !includeMechanical) { + continue; + } + + if (cloneOf && !includeClones) { + continue; + } + + if (EXCLUDED_SOURCE_PATTERN.test(sourceFile)) { + continue; + } + + const title = normalizeTitle(rawTitle); + + if (!title || EXCLUDED_TITLE_PATTERN.test(title)) { + continue; + } + + const slug = getCanonicalSlug(title); + const releaseYear = Number(yearText); + const existing = catalog.get(slug); + const mameNames = existing?.mameNames ?? []; + const aliases = existing?.aliases ?? []; + + if (title !== rawTitle) { + aliases.push(rawTitle); + } + + mameNames.push(machineName); + + catalog.set(slug, { + aliases, + categories: existing?.categories ?? inferCategories(title), + manufacturer: existing?.manufacturer ?? manufacturer, + mameNames, + releaseYear: existing?.releaseYear ?? (Number.isFinite(releaseYear) ? releaseYear : null), + sourceFiles: [...new Set([...(existing?.sourceFiles ?? []), sourceFile].filter(Boolean))], + slug, + title: existing?.title ?? title, + }); + } + + return [...catalog.values()].sort((left, right) => + left.title.localeCompare(right.title), + ); +} + +function buildSql(catalog, { inputFile, includeClones, includeMechanical }) { + const rows = catalog.map((game) => ` ( + ${sqlString(game.slug)}, + ${sqlString(game.title)}, + ${sqlString(game.manufacturer)}, + ${game.releaseYear ?? 'null'}, + ${sqlStringArray(game.aliases)}, + ${sqlStringArray(game.categories)}, + ${sqlJson({ mame: game.mameNames })}, + ${sqlJson({ + excluded_noise: [ + 'gambling', + 'handheld', + 'home-computer', + 'home-console', + 'pinball', + 'plug-and-play', + ], + include_mechanical: includeMechanical, + import_policy: includeClones ? 'parents-and-clones' : 'parents-only', + source: 'mame-listxml', + source_file: basename(inputFile), + source_files: game.sourceFiles, + })} + )`); + + return `-- Generated by scripts/build-mame-game-seed.mjs +-- Source: ${inputFile} +-- Games: ${catalog.length} +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values +${rows.join(',\n')} +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; +`; +} + +function getChunkOutputPath(outputFile, chunkIndex) { + const suffix = String(chunkIndex + 1).padStart(3, '0'); + + if (outputFile.endsWith('.sql')) { + return outputFile.replace(/\.sql$/, `.${suffix}.sql`); + } + + return `${outputFile}.${suffix}.sql`; +} + +if (hasFlag('--help') || hasFlag('-h')) { + showHelp(); + process.exit(0); +} + +const inputFile = getArgValue('--input') ?? getPositionalInput(); +const outputFile = getArgValue('--output') ?? DEFAULT_OUTPUT; +const chunkSizeText = getArgValue('--chunk-size'); +const chunkSize = chunkSizeText ? Number(chunkSizeText) : 0; +const includeClones = hasFlag('--include-clones'); +const includeMechanical = hasFlag('--include-mechanical'); + +if (!inputFile) { + showHelp(); + process.exit(1); +} + +const xml = readFileSync(inputFile, 'utf8'); +const catalog = buildCatalog(xml, { includeClones, includeMechanical }); + +if (Number.isFinite(chunkSize) && chunkSize > 0) { + const chunkCount = Math.ceil(catalog.length / chunkSize); + + for (let index = 0; index < chunkCount; index += 1) { + const chunk = catalog.slice(index * chunkSize, (index + 1) * chunkSize); + const chunkOutputFile = getChunkOutputPath(outputFile, index); + const sql = buildSql(chunk, { includeClones, includeMechanical, inputFile }); + + writeFileSync(chunkOutputFile, sql); + } + + console.log( + `Generated ${chunkCount} chunk files from ${catalog.length} games using chunk size ${chunkSize}.`, + ); + process.exit(0); +} + +const sql = buildSql(catalog, { includeClones, includeMechanical, inputFile }); + +writeFileSync(outputFile, sql); + +console.log(`Generated ${outputFile} with ${catalog.length} games.`); diff --git a/src/lib/live-data.test.ts b/src/lib/live-data.test.ts index 1a3c4b9..9a03210 100644 --- a/src/lib/live-data.test.ts +++ b/src/lib/live-data.test.ts @@ -44,8 +44,10 @@ describe('live-data game mappers', () => { aliases: ['3rd Strike'], categories: ['Fighting'], created_at: '2026-04-01T00:00:00Z', + external_ids: {}, id: 'sf3', manufacturer: 'Capcom', + metadata: {}, release_year: 1999, slug: 'street-fighter-iii-3rd-strike', title: 'Street Fighter III: 3rd Strike', diff --git a/src/types/database.ts b/src/types/database.ts index 7c92b31..bf53fa6 100644 --- a/src/types/database.ts +++ b/src/types/database.ts @@ -22,6 +22,8 @@ export interface Database { release_year: number | null; aliases: string[]; categories: string[]; + external_ids: Record; + metadata: Record; created_at: string; updated_at: string; }; @@ -33,6 +35,8 @@ export interface Database { release_year?: number | null; aliases?: string[]; categories?: string[]; + external_ids?: Record; + metadata?: Record; created_at?: string; updated_at?: string; }; @@ -43,6 +47,8 @@ export interface Database { release_year?: number | null; aliases?: string[]; categories?: string[]; + external_ids?: Record; + metadata?: Record; updated_at?: string; }; }; diff --git a/supabase/migrations/0014_game_catalog_external_metadata.sql b/supabase/migrations/0014_game_catalog_external_metadata.sql new file mode 100644 index 0000000..86af650 --- /dev/null +++ b/supabase/migrations/0014_game_catalog_external_metadata.sql @@ -0,0 +1,9 @@ +alter table public.games +add column if not exists external_ids jsonb not null default '{}'::jsonb, +add column if not exists metadata jsonb not null default '{}'::jsonb; + +create index if not exists games_external_ids_gin_idx + on public.games using gin (external_ids); + +create index if not exists games_metadata_gin_idx + on public.games using gin (metadata); diff --git a/supabase/seed-data/mame-game-catalog.generated.001.sql b/supabase/seed-data/mame-game-catalog.generated.001.sql new file mode 100644 index 0000000..13256e7 --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.001.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + '005', + '005', + 'Sega', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["005"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80r.cpp"]}'::jsonb + ), + ( + '10-yard-fight', + '10-Yard Fight', + 'Irem', + 1983, + array['10-Yard Fight (World, set 1)'], + array['Arcade'], + '{"mame":["10yard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m58.cpp"]}'::jsonb + ), + ( + '100-in-1-v5-01-11-frd-bl-20041217', + '100 in 1 (v5.01.11-frd, BL 20041217)', + '', + 2004, + array['100 in 1 (D-CAT8 8bit Console, set 1) (v5.01.11-frd, BL 20041217)'], + array['Arcade'], + '{"mame":["mc_dcat8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + '100-in-1-arcade-action-ii-at-103', + '100 in 1 Arcade Action II (AT-103)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_aa2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + '1000-miglia-great-1000-miles-rally', + '1000 Miglia: Great 1000 Miles Rally', + 'Kaneko', + 1994, + array['1000 Miglia: Great 1000 Miles Rally (Taiwan 94/07/18)'], + array['Arcade'], + '{"mame":["gtmr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + '101-games-in-1', + '101 Games in 1', + 'Senario', + 2009, + array['101 Games in 1 (Senario, NES/Famicom bootlegs)'], + array['Arcade'], + '{"mame":["sen101"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + '110-in-1-coolbaby-coolboy-rs-1s', + '110 in 1 CoolBaby (CoolBoy RS-1S)', + 'CoolBoy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_110cb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + '119', + '119', + 'Coreland / Sega', + 1986, + array['119 (bootleg?)'], + array['Arcade'], + '{"mame":["119"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/119.cpp"]}'::jsonb + ), + ( + '138-in-1-coolbaby-coolboy-rs-5-pcb060-10009011v1-3', + '138 in 1 CoolBaby (CoolBoy RS-5, PCB060-10009011V1.3)', + 'CoolBoy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_138cb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + '18-holes-pro-golf', + '18 Holes Pro Golf', + 'Data East Corporation', + 1981, + array['18 Holes Pro Golf (set 1)'], + array['Sports'], + '{"mame":["progolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/progolf.cpp"]}'::jsonb + ), + ( + '18-wheeler-american-pro-trucker', + '18 Wheeler: American Pro Trucker', + 'Sega', + 2000, + array['18 Wheeler: American Pro Trucker (deluxe, Rev A)'], + array['Arcade'], + '{"mame":["18wheelr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + '1941-counter-attack', + '1941: Counter Attack', + 'Capcom', + 1990, + array['1941: Counter Attack (World 900227)'], + array['Arcade'], + '{"mame":["1941"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + '1942', + '1942', + 'Capcom', + 1984, + array['1942 (Revision B)'], + array['Shooter'], + '{"mame":["1942"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/1942.cpp"]}'::jsonb + ), + ( + '1942-playchoice-10', + '1942 (PlayChoice-10)', + 'Capcom', + 1987, + '{}'::text[], + array['Shooter'], + '{"mame":["pc_1942"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + '1943-kai-midway-kaisen', + '1943 Kai: Midway Kaisen', + 'Capcom', + 1987, + array['1943 Kai: Midway Kaisen (Japan)'], + array['Arcade'], + '{"mame":["1943kai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/1943.cpp"]}'::jsonb + ), + ( + '1943-the-battle-of-midway-euro', + '1943: The Battle of Midway (Euro)', + 'Capcom', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["1943"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/1943.cpp"]}'::jsonb + ), + ( + '1943-the-battle-of-midway-mark-ii', + '1943: The Battle of Midway Mark II', + 'Capcom', + 1987, + array['1943: The Battle of Midway Mark II (US)'], + array['Arcade'], + '{"mame":["1943mii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/1943.cpp"]}'::jsonb + ), + ( + '1944-the-loop-master', + '1944: The Loop Master', + 'Eighting / Raizing (Capcom license)', + 2000, + array['1944: The Loop Master (Europe 000620)'], + array['Arcade'], + '{"mame":["1944"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + '1945k-iii-newer-opcx2-pcb', + '1945k III (newer, OPCX2 PCB)', + 'Oriental Soft', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["1945kiii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["promat/1945kiii.cpp"]}'::jsonb + ), + ( + '19xx-the-war-against-destiny', + '19XX: The War Against Destiny', + 'Capcom', + 1996, + array['19XX: The War Against Destiny (Europe 960104)'], + array['Arcade'], + '{"mame":["19xx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + '2-spicy', + '2 Spicy', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["2spicy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + '200-in-1-retro-tv-game', + '200 in 1 Retro TV Game', + 'Thumbs Up', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_tv200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + '2011-super-hik-105-in-1-turbo-edition', + '2011 Super HiK 105 in 1 Turbo Edition', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_105te"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + '2020-super-baseball', + '2020 Super Baseball', + 'SNK / Pallas', + 1991, + array['2020 Super Baseball (set 1)'], + array['Sports'], + '{"mame":["2020bb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + '21-sigma', + '21 (Sigma)', + 'Sigma Enterprises', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sigma21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigma21.cpp"]}'::jsonb + ), + ( + '25-video-games-all-in-1-video-system-senario', + '25 Video Games - All in 1 Video System (Senario)', + 'Senario / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["senario25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + '280-zzzap', + '280-ZZZAP', + 'Dave Nutting Associates / Midway', + 1976, + array['280-ZZZAP (set 1)'], + array['Arcade'], + '{"mame":["280zzzap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + '3-count-bout-fire-suplex-ngm-043-ngh-043', + '3 Count Bout / Fire Suplex (NGM-043 ~ NGH-043)', + 'SNK', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["3countb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + '3-on-3-dunk-madness', + '3 On 3 Dunk Madness', + 'Video System Co.', + 1996, + array['3 On 3 Dunk Madness (US, prototype? 1997/02/04)'], + array['Arcade'], + '{"mame":["3on3dunk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/inufuku.cpp"]}'::jsonb + ), + ( + '3-super-8-italy', + '3 Super 8 (Italy)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["3super8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + '3-d-bowling', + '3-D Bowling', + 'Meadows Games, Inc.', + 1978, + '{}'::text[], + array['Sports'], + '{"mame":["bowl3d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadows.cpp"]}'::jsonb + ), + ( + '30-test-remake', + '30 Test (remake)', + 'Namco', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["30test"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/30test.cpp"]}'::jsonb + ), + ( + '3006', + '3006', + 'Labtam International', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["labtam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/labtam.cpp"]}'::jsonb + ), + ( + '35-in-1-super-twins', + '35 in 1 Super Twins', + 'SilverLit / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["silv35"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + '36-in-1-classic-games-phone-case', + '36-in-1 Classic Games phone case', + '', + null, + '{}'::text[], + array['Classic'], + '{"mame":["36pcase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + '39-in-1-mame-bootleg-gno-v000', + '39 in 1 MAME bootleg (GNO-V000)', + 'bootleg', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["39in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/39in1.cpp"]}'::jsonb + ), + ( + '3do-fz-1-r-e-a-l-interactive-multiplayer', + '3DO FZ-1 R.E.A.L. Interactive Multiplayer', + 'Panasonic', + 1993, + array['3DO FZ-1 R.E.A.L. Interactive Multiplayer (USA)'], + array['Arcade'], + '{"mame":["3do_fz1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + '3do-fz-10-r-e-a-l-interactive-multiplayer', + '3DO FZ-10 R.E.A.L. Interactive Multiplayer', + 'Panasonic', + 1994, + array['3DO FZ-10 R.E.A.L. Interactive Multiplayer (USA)'], + array['Arcade'], + '{"mame":["3do_fz10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + '3do-gdo-101m-interactive-multiplayer', + '3DO GDO-101M Interactive Multiplayer', + 'Goldstar', + 1994, + array['3DO GDO-101M Interactive Multiplayer (USA?)'], + array['Arcade'], + '{"mame":["3do_gdo101"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + '3do-imp-21j-try-interactive-multiplayer', + '3DO IMP-21J TRY Interactive Multiplayer', + 'Sanyo', + 1995, + array['3DO IMP-21J TRY Interactive Multiplayer (Japan)'], + array['Arcade'], + '{"mame":["3do_try"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + '3x3-puzzle-enterprise', + '3X3 Puzzle (Enterprise)', + 'Ace Enterprise', + 1998, + '{}'::text[], + array['Puzzle'], + '{"mame":["3x3puzzl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["promat/3x3puzzl.cpp"]}'::jsonb + ), + ( + '4-en-raya', + '4 En Raya', + 'IDSA', + 1990, + array['4 En Raya (set 1)'], + array['Arcade'], + '{"mame":["4enraya"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enraya.cpp"]}'::jsonb + ), + ( + '4-fun-in-1', + '4 Fun in 1', + 'Armenia / Food and Fun', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["4in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxold.cpp"]}'::jsonb + ), + ( + '4-d-warriors-315-5162', + '4-D Warriors (315-5162)', + 'Coreland / Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["4dwarrio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + '4-in-1', + '4-in-1', + 'SMS Manufacturing Corp.', + 1984, + array['4-in-1 (version SWS1-052587)'], + array['Arcade'], + '{"mame":["sms4in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/smsmcorp.cpp"]}'::jsonb + ), + ( + '40-bonus-games-in-1-atgames', + '40 Bonus Games in 1 (AtGames)', + 'AtGames', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["atgame40"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_firecore.cpp"]}'::jsonb + ), + ( + '4004-nixie-clock', + '4004 Nixie Clock', + 'John L. Weinrich', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["4004clk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/4004clk.cpp"]}'::jsonb + ), + ( + '500-gp', + '500 GP', + 'Namco', + 1998, + array['500 GP (US, 5GP3 Ver. C)'], + array['Arcade'], + '{"mame":["500gp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + '500-in-1-handheld-game', + '500-in-1 Handheld Game', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["500in1hh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + '630-games-in-1-handheld-t3', + '630 Games in 1 Handheld (T3)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["t3_630"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + '6300-plus', + '6300 Plus', + 'AT&T', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["att6300p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olivetti/att6300p.cpp"]}'::jsonb + ), + ( + '64th-street-a-detective-story', + '64th. Street: A Detective Story', + 'Jaleco', + 1991, + array['64th. Street: A Detective Story (World)'], + array['Arcade'], + '{"mame":["64street"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + '6809-portable', + '6809 Portable', + 'Dunfield', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["d6809"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/d6809.cpp"]}'::jsonb + ), + ( + '68k-single-board-computer', + '68k Single Board Computer', + 'Wichit Sirichote', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["68ksbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/68ksbc.cpp"]}'::jsonb + ), + ( + '7-e-mezzo', + '7 e Mezzo', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["7mezzo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicfly.cpp"]}'::jsonb + ), + ( + '7-gold', + '7 Gold', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["7gold"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + '7-ordi', + '7 Ordi', + 'Yun Sung', + 2002, + array['7 Ordi (Korea)'], + array['Arcade'], + '{"mame":["7ordi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp"]}'::jsonb + ), + ( + '7-smash', + '7 Smash', + 'Sovic', + 1993, + array['7 Smash (set 1)'], + array['Arcade'], + '{"mame":["7smash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/luckgrln.cpp"]}'::jsonb + ), + ( + '707-performing-synthesizer', + '707 Performing Synthesizer', + 'Korg', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["korg707"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgds8.cpp"]}'::jsonb + ), + ( + '720-degrees', + '720 Degrees', + 'Atari Games', + 1986, + array['720 Degrees (rev 4)'], + array['Arcade'], + '{"mame":["720"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy2.cpp"]}'::jsonb + ), + ( + '777777-in-1-8-bit-slim-station-newpxp-dvt22-a-pcb', + '777777 in 1 (8 bit Slim Station, NEWPXP-DVT22-A PCB)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_7x6ss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + '888888-in-1-8-bit-slim-station-newpxp-dvt22-a-pcb', + '888888 in 1 (8 bit Slim Station, NEWPXP-DVT22-A PCB)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_8x6ss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + '888888-in-1-coolboy-aef-390', + '888888 in 1 (Coolboy AEF-390)', + 'CoolBoy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_8x6cb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + '89-in-1-mini-game-console-060-92023011v1-0', + '89 in 1 Mini Game Console (060-92023011V1.0)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_89in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + '9-ball-shootout', + '9-Ball Shootout', + 'E-Scape EnterMedia (Bundra license)', + 1993, + array['9-Ball Shootout (set 1)'], + array['Arcade'], + '{"mame":["9ballsht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coolpool.cpp"]}'::jsonb + ), + ( + '9161-display-processor-unit', + '9161 Display Processor Unit', + 'Ericsson', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["e9161"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ericsson/e9161.cpp"]}'::jsonb + ), + ( + '9835a', + '9835A', + 'Hewlett-Packard', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9835a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9845.cpp"]}'::jsonb + ), + ( + '9845a', + '9845A', + 'Hewlett-Packard', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9845a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9845.cpp"]}'::jsonb + ), + ( + '9845b', + '9845B', + 'Hewlett-Packard', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9845b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9845.cpp"]}'::jsonb + ), + ( + '9845c', + '9845C', + 'Hewlett-Packard', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9845c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9845.cpp"]}'::jsonb + ), + ( + '9845t', + '9845T', + 'Hewlett-Packard', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9845t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9845.cpp"]}'::jsonb + ), + ( + '999', + '999', + 'Chang Yu Electronic', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["changyu2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/changyu.cpp"]}'::jsonb + ), + ( + '999999-in-1-pxp2-slim-station', + '999999 in 1 (PXP2 Slim Station)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_9x6ss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'a-day-in-space-31-03-87', + 'A Day In Space (31/03/87)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_day"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'a-plan', + 'A-Plan', + 'WeaShing H.K.', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["aplan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'a-d-2083', + 'A. D. 2083', + 'Midcoin', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ad2083"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'a-b-cop-fd1094-317-0169b', + 'A.B. Cop (FD1094 317-0169b)', + 'Sega', + 1990, + array['A.B. Cop (World) (FD1094 317-0169b)'], + array['Arcade'], + '{"mame":["abcop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'a5120', + 'A5120', + 'VEB Robotron', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["a5120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/a51xx.cpp"]}'::jsonb + ), + ( + 'a7150', + 'A7150', + 'VEB Robotron', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["a7150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/a7150.cpp"]}'::jsonb + ), + ( + 'aaargh-arcadia', + 'Aaargh (Arcadia)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_argh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'aamber-pegasus', + 'Aamber Pegasus', + 'Technosys', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["pegasus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/pegasus.cpp"]}'::jsonb + ), + ( + 'abacus', + 'Abacus', + 'Nazionale Elettronica', + 2001, + array['Abacus (Ver 1.0)'], + array['Arcade'], + '{"mame":["abacus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'abc-1600', + 'ABC 1600', + 'Luxor', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["abc1600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["luxor/abc1600.cpp"]}'::jsonb + ), + ( + 'abc-80', + 'ABC 80', + 'Luxor Datorer AB', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["abc80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["luxor/abc80.cpp"]}'::jsonb + ), + ( + 'abc-800-c-hr', + 'ABC 800 C/HR', + 'Luxor Datorer AB', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["abc800c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["luxor/abc80x.cpp"]}'::jsonb + ), + ( + 'abc-802', + 'ABC 802', + 'Luxor Datorer AB', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["abc802"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["luxor/abc80x.cpp"]}'::jsonb + ), + ( + 'abc-806', + 'ABC 806', + 'Luxor Datorer AB', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["abc806"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["luxor/abc80x.cpp"]}'::jsonb + ), + ( + 'abnormal-check', + 'Abnormal Check', + 'Namco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["abcheck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcond1.cpp"]}'::jsonb + ), + ( + 'abunai-houkago-mou-matenai', + 'Abunai Houkago - Mou Matenai', + 'Green Soft', + 1989, + array['Abunai Houkago - Mou Matenai (Japan 890325)'], + array['Arcade'], + '{"mame":["abunai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'acchi-muite-hoi-battle', + 'Acchi Muite Hoi Battle', + 'Amuzy Corporation', + 2006, + array['Acchi Muite Hoi Battle (Japan, ver 1.04)'], + array['Arcade'], + '{"mame":["amhbattl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'accord', + 'Accord', + 'Novag Industries / Intelligent Heuristic Programming', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["accord"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/accord.cpp"]}'::jsonb + ), + ( + 'ace', + 'Ace', + 'Allied Leisure', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["ace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/ace.cpp"]}'::jsonb + ), + ( + 'ace-attacker-fd1094-317-0059', + 'Ace Attacker (FD1094 317-0059)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["aceattac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'ace-driver-3-final-turn', + 'Ace Driver 3: Final Turn', + 'Namco', + 2008, + '{}'::text[], + array['Racing'], + '{"mame":["acedriv3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'ace-driver-racing-evolution', + 'Ace Driver: Racing Evolution', + 'Namco', + 1994, + array['Ace Driver: Racing Evolution (World, AD2)'], + array['Racing'], + '{"mame":["acedrive"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'ace-driver-victory-lap', + 'Ace Driver: Victory Lap', + 'Namco', + 1996, + array['Ace Driver: Victory Lap (World, ADV2 Ver.B)'], + array['Racing'], + '{"mame":["victlap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'acr-20-digital-accompaniment-center', + 'ACR-20 Digital Accompaniment Center', + 'Kawai Musical Instruments Manufacturing', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["acr20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/acr20.cpp"]}'::jsonb + ), + ( + 'acrobat-mission', + 'Acrobat Mission', + 'UPL (Taito license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["acrobatm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'acrobatic-dog-fight', + 'Acrobatic Dog-Fight', + 'Technos Japan', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dogfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/dogfgt.cpp"]}'::jsonb + ), + ( + 'acs586', + 'ACS586', + 'Altos Computer Systems', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["altos586"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["altos/altos586.cpp"]}'::jsonb + ), + ( + 'acs8600', + 'ACS8600', + 'Altos Computer Systems', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["altos8600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["altos/altos8600.cpp"]}'::jsonb + ), + ( + 'act-raiser-nintendo-super-system', + 'Act Raiser (Nintendo Super System)', + 'Enix', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_actr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'act-5a', + 'ACT-5A', + 'Micro-Term', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["act5a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microterm/microterm_f8.cpp"]}'::jsonb + ), + ( + 'act-fancer-cybernetick-hyper-weapon', + 'Act-Fancer Cybernetick Hyper Weapon', + 'Data East Corporation', + 1989, + array['Act-Fancer Cybernetick Hyper Weapon (World revision 3)'], + array['Arcade'], + '{"mame":["actfancr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/actfancr.cpp"]}'::jsonb + ), + ( + 'action-2000', + 'Action 2000', + 'Amcoe', + 1999, + array['Action 2000 (Version 3.5E Dual)'], + array['Arcade'], + '{"mame":["act2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'action-fighter-fd1089a-317-0018', + 'Action Fighter (FD1089A 317-0018)', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["afighter"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'action-hollywood', + 'Action Hollywood', + 'TCH / Proyesel', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["actionhw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/kickgoal.cpp"]}'::jsonb + ), + ( + 'adults-only-ukraine-v-43-23', + 'Adults Only (Ukraine, V. 43.23)', + 'Extrema', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["adults"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'advanced-bridge-challenger', + 'Advanced Bridge Challenger', + 'Fidelity Electronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["bridgeca"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/card.cpp"]}'::jsonb + ), + ( + 'advanced-pico-beena', + 'Advanced Pico BEENA', + 'Sega Toys', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["beena"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_beena.cpp"]}'::jsonb + ), + ( + 'adventure-vision', + 'Adventure Vision', + 'Entex', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["advision"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["entex/advision.cpp"]}'::jsonb + ), + ( + 'aero-fighters-newer-hardware', + 'Aero Fighters (newer hardware)', + 'Video System Co.', + 1992, + array['Aero Fighters (World / USA + Canada / Korea / Hong Kong / Taiwan) (newer hardware)'], + array['Arcade'], + '{"mame":["aerofgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/aerofgt.cpp"]}'::jsonb + ), + ( + 'aero-fighters-2-sonic-wings-2', + 'Aero Fighters 2 / Sonic Wings 2', + 'Video System Co.', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["sonicwi2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'aero-fighters-3-sonic-wings-3', + 'Aero Fighters 3 / Sonic Wings 3', + 'Video System Co.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["sonicwi3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'african-adventure', + 'African Adventure', + 'Konami', + null, + array['African Adventure (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["aadvent"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'after-burner', + 'After Burner', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["aburner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'after-burner-mega-tech-sms-based', + 'After Burner (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_aftrb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'after-burner-climax-export', + 'After Burner Climax (Export)', + 'Sega', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["abclimax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'after-burner-ii', + 'After Burner II', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["aburner2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'agat-7', + 'Agat-7', + 'Agat', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["agat7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["agat/agat.cpp"]}'::jsonb + ), + ( + 'agat-9', + 'Agat-9', + 'Agat', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["agat9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["agat/agat.cpp"]}'::jsonb + ), + ( + 'age-of-heroes-silkroad-2-v0-63-2001-02-07', + 'Age Of Heroes - Silkroad 2 (v0.63 - 2001/02/07)', + 'Unico', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["aoh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'agent-super-bond', + 'Agent Super Bond', + 'Signatron USA', + 1985, + array['Agent Super Bond (Super Cobra conversion, encrypted)'], + array['Arcade'], + '{"mame":["superbon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'aggressors-of-dark-kombat-tsuukai-gangan-koushinkyoku-adm-008-adh-008', + 'Aggressors of Dark Kombat / Tsuukai GANGAN Koushinkyoku (ADM-008 ~ ADH-008)', + 'ADK / SNK', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["aodk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'agress-missile-daisenryaku', + 'Agress - Missile Daisenryaku', + 'Palco', + 1991, + array['Agress - Missile Daisenryaku (Japan)'], + array['Arcade'], + '{"mame":["agress"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/blockout.cpp"]}'::jsonb + ), + ( + 'ah-eikou-no-koshien', + 'Ah Eikou no Koshien', + 'Taito Corporation', + 1990, + array['Ah Eikou no Koshien (Japan)'], + array['Arcade'], + '{"mame":["koshien"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'ai', + 'AI', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["segaai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaai.cpp"]}'::jsonb + ), + ( + 'ai-mode-pet-shiiku', + 'Ai-mode - Pet Shiiku', + 'Nichibutsu/eic', + 1999, + array['Ai-mode - Pet Shiiku (Japan)'], + array['Arcade'], + '{"mame":["aimode"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'aim-65', + 'AIM 65', + 'Rockwell', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["aim65"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rockwell/aim65.cpp"]}'::jsonb + ), + ( + 'aim-65-40', + 'AIM-65/40', + 'Rockwell', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["aim65_40"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rockwell/aim65_40.cpp"]}'::jsonb + ), + ( + 'air-assault', + 'Air Assault', + 'Irem', + 1993, + array['Air Assault (World)'], + array['Arcade'], + '{"mame":["airass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m107.cpp"]}'::jsonb + ), + ( + 'air-attack', + 'Air Attack', + 'Comad', + 1996, + array['Air Attack (set 1)'], + array['Arcade'], + '{"mame":["airattck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'air-buster-trouble-specialty-raid-unit', + 'Air Buster: Trouble Specialty Raid Unit', + 'Kaneko (Namco license)', + 1990, + array['Air Buster: Trouble Specialty Raid Unit (World)'], + array['Arcade'], + '{"mame":["airbustr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/airbustr.cpp"]}'::jsonb + ), + ( + 'air-combat', + 'Air Combat', + 'Namco', + 1992, + array['Air Combat (AC2, US)'], + array['Arcade'], + '{"mame":["aircomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21_c67.cpp"]}'::jsonb + ), + ( + 'air-combat-22', + 'Air Combat 22', + 'Namco', + 1995, + array['Air Combat 22 (Japan, ACS1 Ver.B)'], + array['Arcade'], + '{"mame":["airco22b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'air-duel', + 'Air Duel', + 'Irem', + 1990, + array['Air Duel (World, M82 hardware)'], + array['Arcade'], + '{"mame":["airduel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'air-gallet', + 'Air Gallet', + 'Gazelle (Banpresto license)', + 1996, + array['Air Gallet (Europe)'], + array['Arcade'], + '{"mame":["agallet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'air-inferno', + 'Air Inferno', + 'Taito Corporation Japan', + 1990, + array['Air Inferno (World)'], + array['Arcade'], + '{"mame":["ainferno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitoair.cpp"]}'::jsonb + ), + ( + 'air-race', + 'Air Race', + 'Atari Games', + 1985, + array['Air Race (prototype)'], + array['Arcade'], + '{"mame":["airrace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy4.cpp"]}'::jsonb + ), + ( + 'air-raid-single-pcb', + 'Air Raid (Single PCB)', + 'Seibu Kaihatsu', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["airraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/airraid.cpp"]}'::jsonb + ), + ( + 'air-rescue', + 'Air Rescue', + 'Sega', + 1992, + array['Air Rescue (World)'], + array['Arcade'], + '{"mame":["arescue"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'air-trix', + 'Air Trix', + 'Sega / Hitmaker', + 2000, + array['Air Trix (Rev A)'], + array['Arcade'], + '{"mame":["airtrix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'air-walkers', + 'Air Walkers', + 'Data East Corporation', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["airwlkrs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'airline-pilots', + 'Airline Pilots', + 'Sega', + 1999, + array['Airline Pilots (World, Rev B)', 'Airline Pilots (Japan, Rev A)'], + array['Arcade'], + '{"mame":["alpilot","alpilotj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'airwolf', + 'Airwolf', + 'Kyugo', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["airwolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/kyugo.cpp"]}'::jsonb + ), + ( + 'ajax', + 'Ajax', + 'Konami', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["ajax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ajax.cpp"]}'::jsonb + ), + ( + 'akatsuki-blitzkampf-ausf-achse', + 'Akatsuki Blitzkampf Ausf. Achse', + 'Subtle Style', + 2008, + array['Akatsuki Blitzkampf Ausf. Achse (Japan)'], + array['Arcade'], + '{"mame":["ausfache"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'akazukin', + 'Akazukin', + 'Sigma', + 1983, + array['Akazukin (Japan)'], + array['Arcade'], + '{"mame":["akazukin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/akazukin.cpp"]}'::jsonb + ), + ( + 'akka-arrh', + 'Akka Arrh', + 'Atari', + 1982, + array['Akka Arrh (prototype)'], + array['Arcade'], + '{"mame":["akkaarrh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/akkaarrh.cpp"]}'::jsonb + ), + ( + 'aladdin', + 'Aladdin', + 'bootleg / Sega', + 1993, + array['Aladdin (bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["aladmdb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'alantin-aladdin-s-magic-lamp', + 'Alantin - Aladdin''s Magic Lamp', + 'bootleg (Robert / Avraam)', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["alantin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/carrera.cpp"]}'::jsonb + ), + ( + 'alcon', + 'Alcon', + 'Toaplan / Taito America Corp.', + 1986, + array['Alcon (US)'], + array['Arcade'], + '{"mame":["alcon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/slapfght.cpp"]}'::jsonb + ), + ( + 'alex-kidd-the-lost-stars', + 'Alex Kidd: The Lost Stars', + 'Sega', + 1986, + array['Alex Kidd: The Lost Stars (set 2, unprotected)'], + array['Arcade'], + '{"mame":["alexkidd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'alfaskop-communication-processor-4101', + 'Alfaskop Communication Processor 4101', + 'Ericsson', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["alfaskop4101"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ericsson/alfaskop41xx.cpp"]}'::jsonb + ), + ( + 'alfaskop-display-unit-4110', + 'Alfaskop Display Unit 4110', + 'Ericsson', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["alfaskop4110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ericsson/alfaskop41xx.cpp"]}'::jsonb + ), + ( + 'alfaskop-flexible-disk-unit-4120', + 'Alfaskop Flexible Disk Unit 4120', + 'Ericsson', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["alfaskop4120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ericsson/alfaskop41xx.cpp"]}'::jsonb + ), + ( + 'ali-baba-and-40-thieves', + 'Ali Baba and 40 Thieves', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["alibaba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'alien-arena', + 'Alien Arena', + 'Duncan Brown', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["alienar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'alien-challenge', + 'Alien Challenge', + 'IGS', + 1994, + array['Alien Challenge (World)'], + array['Arcade'], + '{"mame":["aliencha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/lordgun.cpp"]}'::jsonb + ), + ( + 'alien-front', + 'Alien Front', + 'Sega', + 2001, + array['Alien Front (Rev T)'], + array['Arcade'], + '{"mame":["alienfnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'alien-invaders', + 'Alien Invaders', + 'Forbes?', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["alinvade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/alinvade.cpp"]}'::jsonb + ), + ( + 'alien-sector', + 'Alien Sector', + 'Namco', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["aliensec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/baraduke.cpp"]}'::jsonb + ), + ( + 'alien-storm-fd1094-317-0154', + 'Alien Storm (FD1094 317-0154)', + 'Sega', + 1990, + array['Alien Storm (World, 2 Players) (FD1094 317-0154)'], + array['Arcade'], + '{"mame":["astorm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'alien-storm-mega-tech', + 'Alien Storm (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_astrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'alien-syndrome', + 'Alien Syndrome', + 'Sega', + 1987, + array['Alien Syndrome (set 4, System 16B, unprotected)'], + array['Arcade'], + '{"mame":["aliensyn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'alien-syndrome-mega-tech-sms-based', + 'Alien Syndrome (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_asyn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'alien-vs-predator', + 'Alien vs. Predator', + 'Capcom', + 1994, + array['Alien vs. Predator (Europe 940520)'], + array['Arcade'], + '{"mame":["avsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'alien3-the-gun', + 'Alien3: The Gun', + 'Sega', + 1993, + array['Alien3: The Gun (World)'], + array['Arcade'], + '{"mame":["alien3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'aliens', + 'Aliens', + 'Konami', + 1990, + array['Aliens (World set 1)'], + array['Arcade'], + '{"mame":["aliens"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/aliens.cpp"]}'::jsonb + ), + ( + 'all-american-football', + 'All American Football', + 'Leland Corporation', + 1989, + array['All American Football (Leland, rev E)'], + array['Sports'], + '{"mame":["aafb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'all-purpose-electronic-x-ray-computer-as-described-in-1957', + 'All Purpose Electronic X-ray Computer (as described in 1957)', + 'Andrew Donald Booth', + 1955, + '{}'::text[], + array['Arcade'], + '{"mame":["apexc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["booth/apexc.cpp"]}'::jsonb + ), + ( + 'alley-master', + 'Alley Master', + 'Cinematronics', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["alleymas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'alligator-hunt', + 'Alligator Hunt', + 'Gaelco', + 1994, + array['Alligator Hunt (World, protected, checksum 2B34128B)'], + array['Arcade'], + '{"mame":["aligator"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'almond-pinky', + 'Almond Pinky', + 'Dynax', + 1988, + array['Almond Pinky (Japan)'], + array['Arcade'], + '{"mame":["mjapinky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'alone-shettle-crew', + 'Alone Shettle Crew', + 'New Digimatic', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["shettle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/shettle.cpp"]}'::jsonb + ), + ( + 'alpha-fighter-head-on', + 'Alpha Fighter / Head On', + 'Data East Corporation', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["alphaho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'alpha-mission-ii-aso-ii-last-guardian-ngm-007-ngh-007', + 'Alpha Mission II / ASO II - Last Guardian (NGM-007 ~ NGH-007)', + 'SNK', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["alpham2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'alpha-one-vision-electronics', + 'Alpha One (Vision Electronics)', + 'Vision Electronics', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["alpha1v"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m52.cpp"]}'::jsonb + ), + ( + 'alphatantel', + 'AlphaTantel', + 'Tantel', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["alphatan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tangerine/alphatan.cpp"]}'::jsonb + ), + ( + 'alphatronic-p2', + 'alphatronic P2', + 'Triumph-Adler', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["alphatp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ta/alphatpx.cpp"]}'::jsonb + ), + ( + 'alphatronic-p3', + 'alphatronic P3', + 'Triumph-Adler', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["alphatp3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ta/alphatpx.cpp"]}'::jsonb + ), + ( + 'alphatronic-pc-pal', + 'Alphatronic PC (PAL)', + 'Triumph-Adler', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["alphatro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ta/alphatro.cpp"]}'::jsonb + ), + ( + 'alphatronic-pc-16', + 'alphatronic PC-16', + 'Triumph-Adler', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["alphatpc16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ta/alphatpc16.cpp"]}'::jsonb + ), + ( + 'alpine-racer', + 'Alpine Racer', + 'Namco', + 1994, + array['Alpine Racer (World, AR2 Ver.D)'], + array['Arcade'], + '{"mame":["alpinerd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'alpine-racer-2', + 'Alpine Racer 2', + 'Namco', + 1996, + array['Alpine Racer 2 (World, ARS2 Ver.B)'], + array['Arcade'], + '{"mame":["alpinr2b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'alpine-ski', + 'Alpine Ski', + 'Taito Corporation', + 1982, + array['Alpine Ski (set 1)'], + array['Arcade'], + '{"mame":["alpine"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'alpine-surfer', + 'Alpine Surfer', + 'Namco', + 1996, + array['Alpine Surfer (World, AF2 Ver.A)'], + array['Arcade'], + '{"mame":["alpines"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'alta-tensione', + 'Alta Tensione', + '', + 1999, + array['Alta Tensione (ver. 2.01a)'], + array['Arcade'], + '{"mame":["altaten"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'altair', + 'Altair', + 'Cidelsa', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["altair"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cidelsa.cpp"]}'::jsonb + ), + ( + 'altair-680b', + 'Altair 680b', + 'MITS', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["mits680b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mits/mits680b.cpp"]}'::jsonb + ), + ( + 'altair-8800b', + 'Altair 8800b', + 'MITS', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["al8800b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mits/al8800b.cpp"]}'::jsonb + ), + ( + 'altair-8800bt', + 'Altair 8800bt', + 'MITS', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["al8800bt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mits/altair.cpp"]}'::jsonb + ), + ( + 'altair-ii', + 'Altair II', + 'Cidelsa', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["altair2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cidelsa.cpp"]}'::jsonb + ), + ( + 'altered-beast-8751-317-0078', + 'Altered Beast (8751 317-0078)', + 'Sega', + 1988, + array['Altered Beast (set 8) (8751 317-0078)'], + array['Arcade'], + '{"mame":["altbeast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'altered-beast-mega-tech', + 'Altered Beast (Mega-Tech)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_beast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'alto-i', + 'Alto I', + 'Xerox', + 1973, + '{}'::text[], + array['Arcade'], + '{"mame":["alto1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["xerox/alto1.cpp"]}'::jsonb + ), + ( + 'alto-ii', + 'Alto-II', + 'Xerox', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["alto2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["xerox/alto2.cpp"]}'::jsonb + ), + ( + 'altos-486', + 'Altos 486', + 'Altos Computer Systems', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["altos486"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["altos/altos486.cpp"]}'::jsonb + ), + ( + 'altos-5-15', + 'Altos 5-15', + 'Altos', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["altos5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["altos/altos5.cpp"]}'::jsonb + ), + ( + 'amateurcomputer-ac1-berlin', + 'Amateurcomputer AC1 Berlin', + 'Frank Heyder', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["ac1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/ac1.cpp"]}'::jsonb + ), + ( + 'amazing-maze', + 'Amazing Maze', + 'Midway', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["maze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'amazon-spirit-konami-endeavour-nsw', + 'Amazon Spirit (Konami Endeavour, NSW)', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["amazonsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'amazonia-ming-yang-electronic-tsk', + 'Amazonia (Ming-Yang Electronic / TSK)', + 'Ming-Yang Electronic / TSK', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["amaztsk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'amazonia-king-v104br', + 'Amazonia King (V104BR)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["amazonia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'amazonia-king-ii-v202br', + 'Amazonia King II (V202BR)', + 'IGS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["amazoni2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'ambush', + 'Ambush', + 'Tecfri', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ambush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/ambush.cpp"]}'::jsonb + ), + ( + 'amcoe-link-control-box', + 'Amcoe Link Control Box', + 'Amcoe', + null, + array['Amcoe Link Control Box (Version 2.2)'], + array['Arcade'], + '{"mame":["amclink"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'ameri-darts', + 'Ameri Darts', + 'Ameri', + 1989, + array['Ameri Darts (set 1)'], + array['Arcade'], + '{"mame":["amerdart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coolpool.cpp"]}'::jsonb + ), + ( + 'american-horseshoes', + 'American Horseshoes', + 'Taito America Corporation', + 1990, + array['American Horseshoes (US)'], + array['Arcade'], + '{"mame":["horshoes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'american-speedway', + 'American Speedway', + 'Enerdyne Technologies Inc.', + 1987, + array['American Speedway (set 1)'], + array['Arcade'], + '{"mame":["amspdwy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amspdwy.cpp"]}'::jsonb + ), + ( + 'americana-9131-01', + 'Americana (9131-01)', + 'Merit', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["americna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'amidar', + 'Amidar', + 'Konami', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["amidar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'amiga-1000-pal', + 'Amiga 1000 (PAL)', + 'Commodore', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["a1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-1200-pal', + 'Amiga 1200 (PAL)', + 'Commodore', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["a1200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-2000-pal', + 'Amiga 2000 (PAL)', + 'Commodore', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["a2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-3000-pal', + 'Amiga 3000 (PAL)', + 'Commodore', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["a3000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-4000-040-pal', + 'Amiga 4000/040 (PAL)', + 'Commodore', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["a4000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-4000t-pal', + 'Amiga 4000T (PAL)', + 'Commodore', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["a4000t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-500-pal', + 'Amiga 500 (PAL)', + 'Commodore', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["a500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-500-plus-pal', + 'Amiga 500 Plus (PAL)', + 'Commodore', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["a500p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-600-pal', + 'Amiga 600 (PAL)', + 'Commodore', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["a600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-cd32-pal', + 'Amiga CD32 (PAL)', + 'Commodore', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["cd32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'aminosan-satellite', + 'Aminosan (satellite)', + 'Sega', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["aminosan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'amps-car-phone', + 'AMPS Car Phone', + 'Motorola', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["ampscarp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/ampscarp.cpp"]}'::jsonb + ), + ( + 'amuse', + 'Amuse', + 'Greyhound Electronics', + 1982, + array['Amuse (Version 50.08 IBA)'], + array['Arcade'], + '{"mame":["amuse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'amust-executive-816', + 'Amust Executive 816', + 'Amust', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["amust"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/amust.cpp"]}'::jsonb + ), + ( + 'an1x-control-synthesizer', + 'AN1x Control Synthesizer', + 'Yamaha', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["an1x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/yman1x.cpp"]}'::jsonb + ), + ( + 'ancient-atlantis', + 'Ancient Atlantis', + 'Novotech', + null, + array['Ancient Atlantis (set 1)'], + array['Arcade'], + '{"mame":["ancienta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'andro-dunos-ngm-049-ngh-049', + 'Andro Dunos (NGM-049 ~ NGH-049)', + 'Visco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["androdun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'android', + 'Android', + 'Nasco', + 1987, + array['Android (prototype, later build)'], + array['Arcade'], + '{"mame":["androidp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nasco/himesiki.cpp"]}'::jsonb + ), + ( + 'andromeda-ss', + 'Andromeda SS', + 'Irem', + 1980, + array['Andromeda SS (Japan?)'], + array['Arcade'], + '{"mame":["andromed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m10.cpp"]}'::jsonb + ), + ( + 'angel-kids', + 'Angel Kids', + 'Sega / Nasco?', + 1988, + array['Angel Kids (Japan)'], + array['Arcade'], + '{"mame":["angelkds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/angelkds.cpp"]}'::jsonb + ), + ( + 'angler-dangler', + 'Angler Dangler', + 'Data East Corporation', + 1982, + array['Angler Dangler (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cadanglr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'angler-king', + 'Angler King', + 'Namco', + 1998, + array['Angler King (Japan, AG1 Ver. A)'], + array['Arcade'], + '{"mame":["aking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'animal-basket-hustle-tamaire-kyousou-24-jan-2005', + 'Animal Basket / Hustle Tamaire Kyousou (24 Jan 2005)', + 'MOSS / Sammy', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["anmlbskt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'animal-bonus', + 'Animal Bonus', + 'Amcoe', + 2003, + array['Animal Bonus (Version 1.8E Dual)'], + array['Arcade'], + '{"mame":["anibonus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'animal-bonus-nudge', + 'Animal Bonus Nudge', + 'Amcoe', + 2003, + array['Animal Bonus Nudge (Version 2.1 Dual)'], + array['Arcade'], + '{"mame":["abnudge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'animal-catch', + 'Animal Catch', + 'Sammy', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["animalc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'animal-house', + 'Animal House', + 'Suns Co Ltd.', + 1991, + array['Animal House (V1.0, set 1)'], + array['Arcade'], + '{"mame":["animalhs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'animal-kaiser-the-king-of-animals-ana1004-na-b', + 'Animal Kaiser - The King Of Animals (ANA1004-NA-B)', + 'Namco', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["animalk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'animal-kaiser-the-king-of-animals-evo-1-ana2004-na-a', + 'Animal Kaiser - The King of Animals (Evo 1, ANA2004-NA-A)', + 'Namco', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["animalke1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'animal-kaiser-the-king-of-animals-evo-2-ana2004-na-a', + 'Animal Kaiser - The King of Animals (Evo 2, ANA2004-NA-A)', + 'Namco', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["animalke2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'animal-kaiser-the-king-of-animals-evo-8-ana2004-na-a', + 'Animal Kaiser - The King of Animals (Evo 8, ANA2004-NA-A)', + 'Namco', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["animalke8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'animal-kaiser-the-king-of-animals-unknown-evo-ana2004-na-a', + 'Animal Kaiser - The King of Animals (unknown Evo, ANA2004-NA-A)', + 'Namco', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["animalkeu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'animal-treasure-hunt', + 'Animal Treasure Hunt', + 'Amcoe', + 2003, + array['Animal Treasure Hunt (Version 1.9R, set 1)'], + array['Arcade'], + '{"mame":["anithunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'animal-wonders', + 'Animal Wonders', + 'GPS', + null, + array['Animal Wonders (ver A900 66)'], + array['Arcade'], + '{"mame":["animalw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'anime-champ', + 'Anime Champ', + 'Konami', + 2000, + array['Anime Champ (GCA07 VER. JAA)'], + array['Arcade'], + '{"mame":["animechmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'another-world', + 'Another World', + 'Sunwise', + 1989, + array['Another World (Japan, V1.8)'], + array['Arcade'], + '{"mame":["anoworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunwise/anoworld.cpp"]}'::jsonb + ), + ( + 'anpanman-color-pc', + 'Anpanman Color PC', + 'Bandai', + 2009, + array['Anpanman Color PC (Japan)'], + array['Arcade'], + '{"mame":["anpncpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'anteater', + 'Anteater', + 'Tago Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["anteater"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'anti-aircraft', + 'Anti-Aircraft', + 'Atari', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["antiairc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'apache-3', + 'Apache 3', + 'Tatsumi', + 1988, + array['Apache 3 (rev F)'], + array['Arcade'], + '{"mame":["apache3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/apache3.cpp"]}'::jsonb + ), + ( + 'apb-all-points-bulletin', + 'APB - All Points Bulletin', + 'Atari Games', + 1987, + array['APB - All Points Bulletin (rev 7)'], + array['Arcade'], + '{"mame":["apb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy2.cpp"]}'::jsonb + ), + ( + 'apc', + 'APC', + 'NEC', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["apc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/apc.cpp"]}'::jsonb + ), + ( + 'apf-m-1000', + 'APF M-1000', + 'APF Electronics Inc.', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["apfm1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["apf/apf.cpp"]}'::jsonb + ), + ( + 'apollo-dn3500', + 'Apollo DN3500', + 'Apollo', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["dn3500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["apollo/apollo.cpp"]}'::jsonb + ), + ( + 'apparel-night', + 'Apparel Night', + 'Central Denshi', + 1986, + array['Apparel Night (Japan 860929)'], + array['Arcade'], + '{"mame":["apparel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'apple-10', + 'Apple 10', + 'Sandii''', + 1998, + array['Apple 10 (Ver 1.21)'], + array['Arcade'], + '{"mame":["apple10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/snookr10.cpp"]}'::jsonb + ), + ( + 'applix-1616', + 'Applix 1616', + 'Applix Pty Ltd', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["applix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/applix.cpp"]}'::jsonb + ), + ( + 'appoooh', + 'Appoooh', + 'Sanritsu / Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["appoooh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/appoooh.cpp"]}'::jsonb + ), + ( + 'apricot-f1', + 'Apricot F1', + 'ACT', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["f1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["act/apricotf.cpp"]}'::jsonb + ), + ( + 'apricot-pc-xi', + 'Apricot PC/Xi', + 'ACT', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["apricot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["act/apricot.cpp"]}'::jsonb + ), + ( + 'apricot-portable-fp', + 'Apricot Portable / FP', + 'ACT', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["fp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["act/apricotp.cpp"]}'::jsonb + ), + ( + 'apricot-xen', + 'Apricot XEN', + 'ACT', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["apxen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["act/apxen.cpp"]}'::jsonb + ), + ( + 'aqua-jack', + 'Aqua Jack', + 'Taito Corporation Japan', + 1990, + array['Aqua Jack (World)'], + array['Arcade'], + '{"mame":["aquajack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'aqua-jet', + 'Aqua Jet', + 'Namco', + 1996, + array['Aqua Jet (World, AJ2 Ver.B)'], + array['Arcade'], + '{"mame":["aquajet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'aqua-rush', + 'Aqua Rush', + 'Namco', + 1999, + array['Aqua Rush (Japan, AQ1/VER.A1)'], + array['Arcade'], + '{"mame":["aquarush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'aqua-stage', + 'Aqua Stage', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["aquastge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/coolridr.cpp"]}'::jsonb + ), + ( + 'aquarium', + 'Aquarium', + 'Excellent System', + 1996, + array['Aquarium (US)'], + array['Arcade'], + '{"mame":["aquarium"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/aquarium.cpp"]}'::jsonb + ), + ( + 'arabian', + 'Arabian', + 'Sun Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["arabian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/arabian.cpp"]}'::jsonb + ), + ( + 'arabian-fight', + 'Arabian Fight', + 'Sega', + 1991, + array['Arabian Fight (World)'], + array['Arcade'], + '{"mame":["arabfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'arabian-jewel-mda-c0090', + 'Arabian Jewel (MDA-C0090)', + 'Sega', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["arajewel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'arabian-magic', + 'Arabian Magic', + 'Taito Corporation Japan', + 1992, + array['Arabian Magic (Ver 1.0O 1992/07/06)'], + array['Arcade'], + '{"mame":["arabianm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'arbalester', + 'Arbalester', + 'Jordan I.S. / Seta', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["arbalest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'arcade-center-30-in-1-jl1800-01', + 'Arcade Center - 30-in-1 (JL1800_01)', + 'Lexibook', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["lexi30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'arcade-center-60-in-1-jl1810gr', + 'Arcade Center - 60-in-1 (JL1810GR)', + 'Lexibook', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["jl1810gr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'arcade-classics', + 'Arcade Classics', + 'Atari Games', + 1992, + array['Arcade Classics (prototype)'], + array['Arcade'], + '{"mame":["arcadecl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/arcadecl.cpp"]}'::jsonb + ), + ( + 'arcadia-nmk', + 'Arcadia (NMK)', + 'NMK', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["arcadian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'arcadia-2001', + 'Arcadia 2001', + 'Emerson', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["arcadia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["arcadia/arcadia.cpp"]}'::jsonb + ), + ( + 'arcana-heart', + 'Arcana Heart', + 'Examu', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["acheart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/nexus3d.cpp"]}'::jsonb + ), + ( + 'arcana-heart-full', + 'Arcana Heart Full', + 'Examu', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["acheartf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/nexus3d.cpp"]}'::jsonb + ), + ( + 'arch-rivals', + 'Arch Rivals', + 'Bally Midway', + 1989, + array['Arch Rivals (rev 4.0 6/29/89)'], + array['Arcade'], + '{"mame":["archrivl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr68.cpp"]}'::jsonb + ), + ( + 'arctic-thunder-v1-002', + 'Arctic Thunder (v1.002)', + 'Midway Games', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["arctthnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midqslvr.cpp"]}'::jsonb + ), + ( + 'area-51-r3000', + 'Area 51 (R3000)', + 'Atari Games', + 1996, + '{}'::text[], + array['Light gun'], + '{"mame":["area51"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'area-51-maximum-force-duo-v2-0', + 'Area 51 / Maximum Force Duo v2.0', + 'Atari Games', + 1998, + '{}'::text[], + array['Light gun'], + '{"mame":["area51mx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'area-51-site-4', + 'Area 51: Site 4', + 'Atari Games', + 1998, + array['Area 51: Site 4 (HD Rev 2.01, September 7, 1998)'], + array['Light gun'], + '{"mame":["a51site4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/mediagx.cpp"]}'::jsonb + ), + ( + 'argus', + 'Argus', + 'NMK (Jaleco license)', + 1986, + array['Argus (Gottlieb, prototype)'], + array['Arcade'], + '{"mame":["argus","argusg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/argus.cpp","gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'ark-area', + 'Ark Area', + 'UPL', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["arkarea"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/ninjakd2.cpp"]}'::jsonb + ), + ( + 'arkanoid', + 'Arkanoid', + 'Taito Corporation Japan', + 1986, + array['Arkanoid (World, older)'], + array['Arcade'], + '{"mame":["arkanoid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/arkanoid.cpp"]}'::jsonb + ), + ( + 'arkanoid-revenge-of-doh', + 'Arkanoid - Revenge of DOH', + 'Taito Corporation Japan', + 1987, + array['Arkanoid - Revenge of DOH (World)'], + array['Arcade'], + '{"mame":["arknoid2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'arkanoid-returns', + 'Arkanoid Returns', + 'Taito Corporation', + 1997, + array['Arkanoid Returns (Ver 2.02O 1997/02/10)'], + array['Arcade'], + '{"mame":["arkretrn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'arlington-horse-racing-v1-40-d', + 'Arlington Horse Racing (v1.40-D)', + 'Strata / Incredible Technologies', + 1991, + '{}'::text[], + array['Racing'], + '{"mame":["arlingtn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'arm-wrestling', + 'Arm Wrestling', + 'Nintendo', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["armwrest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/punchout.cpp"]}'::jsonb + ), + ( + 'armadillo-racing', + 'Armadillo Racing', + 'Namco', + 1997, + array['Armadillo Racing (World, AM2 Ver.A)'], + array['Racing'], + '{"mame":["adillor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'armed-f', + 'Armed F', + 'Nichibutsu', + 1988, + array['Armed F (Japan)'], + array['Arcade'], + '{"mame":["armedf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/armedf.cpp"]}'::jsonb + ), + ( + 'armed-police-batrider-fri-feb-13-1998', + 'Armed Police Batrider (Fri Feb 13 1998)', + 'Raizing / Eighting', + 1998, + array['Armed Police Batrider (Europe) (Fri Feb 13 1998)'], + array['Arcade'], + '{"mame":["batrider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/raizing_batrider.cpp"]}'::jsonb + ), + ( + 'armor-attack', + 'Armor Attack', + 'Cinematronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["armora"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'armored-car', + 'Armored Car', + 'Stern Electronics', + 1981, + array['Armored Car (set 1)'], + array['Arcade'], + '{"mame":["armorcar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'armored-warriors', + 'Armored Warriors', + 'Capcom', + 1994, + array['Armored Warriors (Europe 941024)'], + array['Arcade'], + '{"mame":["armwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'arnold-palmer-tournament-golf-mega-tech', + 'Arnold Palmer Tournament Golf (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Sports'], + '{"mame":["mt_tgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'around-the-world', + 'Around The World', + 'Amcoe', + 2007, + array['Around The World (Version 1.4R CGA)'], + array['Arcade'], + '{"mame":["atworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'arrow-flash-mega-tech', + 'Arrow Flash (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_arrow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'art-of-fighting-ryuuko-no-ken-ngm-044-ngh-044', + 'Art of Fighting / Ryuuko no Ken (NGM-044 ~ NGH-044)', + 'SNK', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["aof"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'art-of-fighting-2-ryuuko-no-ken-2-ngm-056', + 'Art of Fighting 2 / Ryuuko no Ken 2 (NGM-056)', + 'SNK', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["aof2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'art-of-fighting-3-the-path-of-the-warrior-art-of-fighting-ryuuko-no-ken-gaiden', + 'Art of Fighting 3 - The Path of the Warrior / Art of Fighting - Ryuuko no Ken Gaiden', + 'SNK', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["aof3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'as-1-controller', + 'AS-1 Controller', + 'Sega', + 1993, + array['AS-1 Controller (set 1)'], + array['Arcade'], + '{"mame":["as1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'ashura-blaster', + 'Ashura Blaster', + 'Taito Corporation Japan', + 1990, + array['Ashura Blaster (World)'], + array['Arcade'], + '{"mame":["ashura"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'asian-dynamite-dynamite-deka-ex', + 'Asian Dynamite / Dynamite Deka EX', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["asndynmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'aso-armored-scrum-object', + 'ASO - Armored Scrum Object', + 'SNK', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["aso"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'asr-10', + 'ASR-10', + 'Ensoniq', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["asr10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqasr.cpp"]}'::jsonb + ), + ( + 'asr-x', + 'ASR-X', + 'Ensoniq', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["asrx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqasr.cpp"]}'::jsonb + ), + ( + 'assault', + 'Assault', + 'Namco', + 1988, + array['Assault (Rev B)'], + array['Arcade'], + '{"mame":["assault"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'assist05', + 'ASSIST05', + 'Motorola', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["assist05"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/assist05.cpp"]}'::jsonb + ), + ( + 'asterix', + 'Asterix', + 'Konami', + 1992, + array['Asterix (ver EAD)'], + array['Arcade'], + '{"mame":["asterix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/asterix.cpp"]}'::jsonb + ), + ( + 'asteroids', + 'Asteroids', + 'Atari', + 1979, + array['Asteroids (rev 4)'], + array['Classic'], + '{"mame":["asteroid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/asteroid.cpp"]}'::jsonb + ), + ( + 'asteroids-deluxe', + 'Asteroids Deluxe', + 'Atari', + 1980, + array['Asteroids Deluxe (rev 3)'], + array['Classic'], + '{"mame":["astdelux"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/asteroid.cpp"]}'::jsonb + ), + ( + 'astra-superstars-j-980514-v1-002', + 'Astra SuperStars (J 980514 V1.002)', + 'Sunsoft', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["astrass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'astro-blaster', + 'Astro Blaster', + 'Sega', + 1981, + array['Astro Blaster (version 3)'], + array['Arcade'], + '{"mame":["astrob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80r.cpp"]}'::jsonb + ), + ( + 'astro-chase-max-a-flex', + 'Astro Chase (Max-A-Flex)', + 'Exidy / First Star Software', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mf_achas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/maxaflex.cpp"]}'::jsonb + ), + ( + 'astro-fantasia', + 'Astro Fantasia', + 'Data East Corporation', + 1981, + array['Astro Fantasia (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["castfant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'astro-fighter', + 'Astro Fighter', + 'Data East', + 1979, + array['Astro Fighter (set 1)'], + array['Arcade'], + '{"mame":["astrof"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/astrof.cpp"]}'::jsonb + ), + ( + 'astro-warrior-mega-tech-sms-based', + 'Astro Warrior (Mega-Tech, SMS based)', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_astro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'astro-wars', + 'Astro Wars', + 'Zaccaria / Zelco', + 1980, + array['Astro Wars (set 1)'], + array['Arcade'], + '{"mame":["astrowar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/galaxia.cpp"]}'::jsonb + ), + ( + 'astron-belt', + 'Astron Belt', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["astron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segald.cpp"]}'::jsonb + ), + ( + 'astropal', + 'Astropal', + 'Sidam?', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["astropal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'asuka-and-asuka', + 'Asuka & Asuka', + 'Taito Corporation', + 1988, + array['Asuka & Asuka (World)'], + array['Arcade'], + '{"mame":["asuka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'asura-blade-sword-of-dynasty', + 'Asura Blade - Sword of Dynasty', + 'Fuuki', + 1998, + array['Asura Blade - Sword of Dynasty (Japan)'], + array['Arcade'], + '{"mame":["asurabld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fuuki/fuukifg3.cpp"]}'::jsonb + ), + ( + 'asura-buster-eternal-warriors', + 'Asura Buster - Eternal Warriors', + 'Fuuki', + 2001, + array['Asura Buster - Eternal Warriors (USA)'], + array['Arcade'], + '{"mame":["asurabus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fuuki/fuukifg3.cpp"]}'::jsonb + ), + ( + 'asylum', + 'Asylum', + 'Leland Corporation', + 1991, + array['Asylum (prototype)'], + array['Arcade'], + '{"mame":["asylum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'atari-2600-ntsc', + 'Atari 2600 (NTSC)', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["a2600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/a2600.cpp"]}'::jsonb + ), + ( + 'atari-2600-point-of-purchase-display', + 'Atari 2600 Point of Purchase Display', + 'Atari', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["a2600_pop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/a2600.cpp"]}'::jsonb + ), + ( + 'atari-400-ntsc', + 'Atari 400 (NTSC)', + 'Atari', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["a400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atari400.cpp"]}'::jsonb + ), + ( + 'atari-5200', + 'Atari 5200', + 'Atari', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["a5200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atari400.cpp"]}'::jsonb + ), + ( + 'atari-7800-ntsc', + 'Atari 7800 (NTSC)', + 'Atari', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["a7800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/a7800.cpp"]}'::jsonb + ), + ( + 'atari-800-ntsc', + 'Atari 800 (NTSC)', + 'Atari', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["a800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atari400.cpp"]}'::jsonb + ), + ( + 'atari-800xl-ntsc', + 'Atari 800XL (NTSC)', + 'Atari', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["a800xl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atari400.cpp"]}'::jsonb + ), + ( + 'atari-baseball', + 'Atari Baseball', + 'Atari', + 1979, + array['Atari Baseball (set 1)'], + array['Sports'], + '{"mame":["abaseb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarifb.cpp"]}'::jsonb + ), + ( + 'atari-basketball', + 'Atari Basketball', + 'Atari', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["bsktball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bsktball.cpp"]}'::jsonb + ), + ( + 'atari-flashback-mini-7800', + 'Atari Flashback Mini 7800', + 'Atari / Nice Code', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["afbm7800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'atari-football', + 'Atari Football', + 'Atari', + 1978, + array['Atari Football (revision 2)'], + array['Sports'], + '{"mame":["atarifb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarifb.cpp"]}'::jsonb + ), + ( + 'atari-soccer', + 'Atari Soccer', + 'Atari', + 1980, + '{}'::text[], + array['Sports'], + '{"mame":["soccer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarifb.cpp"]}'::jsonb + ), + ( + 'atari-xe-game-system', + 'Atari XE Game System', + 'Atari', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["xegs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atari400.cpp"]}'::jsonb + ), + ( + 'ataxx', + 'Ataxx', + 'Leland Corporation', + 1990, + array['Ataxx (rev 5)'], + array['Arcade'], + '{"mame":["ataxx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'athena', + 'Athena', + 'SNK', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["athena"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'athena-no-hatena', + 'Athena no Hatena?', + 'Athena', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["atehate"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'atlantica-atronic', + 'Atlantica (Atronic)', + 'Atronic', + 2002, + array['Atlantica (Russia) (Atronic) (set 1)'], + array['Arcade'], + '{"mame":["atlantca"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'atm18-mini-chess-computer-english', + 'ATM18 Mini Chess Computer (English)', + 'Elektor', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["atm18mcc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektor/avrmax.cpp"]}'::jsonb + ), + ( + 'atomic-point', + 'Atomic Point', + 'Philko', + 1990, + array['Atomic Point (Korea)'], + array['Arcade'], + '{"mame":["atomicp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'atomic-robo-kid', + 'Atomic Robo-kid', + 'UPL', + 1988, + array['Atomic Robo-kid (World, Type-2)'], + array['Arcade'], + '{"mame":["robokid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/ninjakd2.cpp"]}'::jsonb + ), + ( + 'atomic-runner-chelnov', + 'Atomic Runner Chelnov', + 'Data East Corporation', + 1988, + array['Atomic Runner Chelnov (World)'], + array['Arcade'], + '{"mame":["chelnov"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/karnov.cpp"]}'::jsonb + ), + ( + 'atronic-setup-clear-chips', + 'Atronic SetUp/Clear Chips', + 'Atronic', + 1999, + array['Atronic SetUp/Clear Chips (Russia, set 1)'], + array['Arcade'], + '{"mame":["atronic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'attack', + 'Attack', + 'Exidy', + 1977, + array['Attack (set 1)'], + array['Arcade'], + '{"mame":["attckexd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidyttl.cpp"]}'::jsonb + ), + ( + 'attack-force-encrypted', + 'Attack Force (encrypted)', + 'Electronic Games Systems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["attackfc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'attack-pla-rail', + 'Attack Pla Rail', + 'Namco / Tomy', + 1998, + array['Attack Pla Rail (Japan, AP1/VER.A)'], + array['Arcade'], + '{"mame":["aplarail"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'attack-ufo', + 'Attack UFO', + 'Ryoto Electric Co.', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["attckufo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/attckufo.cpp"]}'::jsonb + ), + ( + 'atv-track', + 'ATV Track', + 'Gaelco', + 2002, + array['ATV Track (set 1)'], + array['Arcade'], + '{"mame":["atvtrack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/atvtrack.cpp"]}'::jsonb + ), + ( + 'au', + 'Au', + 'Tehkan', + 1983, + array['Au (location test)'], + array['Arcade'], + '{"mame":["au"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'aurail-unprotected', + 'Aurail (unprotected)', + 'Sega / Westone', + 1990, + array['Aurail (set 3, US) (unprotected)'], + array['Arcade'], + '{"mame":["aurail"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'ausbaufaehiger-mikrocomputer-mit-dem-u-880', + 'Ausbaufaehiger Mikrocomputer mit dem U 880', + 'Militaerverlag der DDR', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["amu880"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/huebler.cpp"]}'::jsonb + ), + ( + 'aussie-byte-ii', + 'Aussie Byte II', + 'SME Systems', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["aussieby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/aussiebyte.cpp"]}'::jsonb + ), + ( + 'auto-response-board', + 'Auto Response Board', + 'AVE Micro Systems', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["arb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/ave_arb.cpp"]}'::jsonb + ), + ( + 'av-hanafuda-hana-no-ageman', + 'AV Hanafuda Hana no Ageman', + 'Nichibutsu / AV Japan', + 1990, + array['AV Hanafuda Hana no Ageman (Japan 900716)'], + array['Arcade'], + '{"mame":["hnageman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'av-hanafuda-hana-no-christmas-eve', + 'AV Hanafuda Hana no Christmas Eve', + 'Nichibutsu / AV Japan', + 1990, + array['AV Hanafuda Hana no Christmas Eve (Japan 901204)'], + array['Arcade'], + '{"mame":["hnxmasev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'avalanche', + 'Avalanche', + 'Atari', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["avalnche"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/avalnche.cpp"]}'::jsonb + ), + ( + 'avenger', + 'Avenger', + 'Electra', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["avenger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/electra.cpp"]}'::jsonb + ), + ( + 'avengers', + 'Avengers', + 'Capcom', + 1987, + array['Avengers (US, rev. D)'], + array['Arcade'], + '{"mame":["avengers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lwings.cpp"]}'::jsonb + ), + ( + 'avengers-in-galactic-storm', + 'Avengers In Galactic Storm', + 'Data East Corporation', + 1995, + array['Avengers In Galactic Storm (US/Europe 1.0)'], + array['Arcade'], + '{"mame":["avengrgs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_mlc.cpp"]}'::jsonb + ), + ( + 'avenging-spirit', + 'Avenging Spirit', + 'Jaleco', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["avspirit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'aviion-4600', + 'AViiON 4600', + 'Data General', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["aviion_4600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dg/aviion88k.cpp"]}'::jsonb + ), + ( + 'avr-max-chess-computer-english', + 'AVR-Max Chess Computer (English)', + 'Elektor', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["avrmax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektor/avrmax.cpp"]}'::jsonb + ), + ( + 'ax-145', + 'AX-145', + 'Brother', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ax145"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/ax145.cpp"]}'::jsonb + ), + ( + 'ax80', + 'AX80', + 'Akai', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["ax80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/akaiax80.cpp"]}'::jsonb + ), + ( + 'aztarac', + 'Aztarac', + 'Centuri', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["aztarac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/aztarac.cpp"]}'::jsonb + ), + ( + 'azumanga-daioh-puzzle-bobble-gdl-0018', + 'Azumanga Daioh Puzzle Bobble (GDL-0018)', + 'MOSS (Taito license)', + 2002, + '{}'::text[], + array['Puzzle'], + '{"mame":["azumanga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'azurian-attack', + 'Azurian Attack', + 'Rait Electronics Ltd', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["azurian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'b-wings', + 'B-Wings', + 'Data East Corporation', + 1984, + array['B-Wings (Japan new Ver.)'], + array['Arcade'], + '{"mame":["bwings"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/bwing.cpp"]}'::jsonb + ), + ( + 'b-c-kid-bonk-s-adventure-arcade-version-kyukyoku-pc-genjin-special-arcade-version', + 'B.C. Kid / Bonk''s Adventure: Arcade Version / Kyukyoku!! PC Genjin: Special Arcade Version', + 'Kaneko (Hudson Soft / Red license)', + 1994, + array['B.C. Kid (Europe) / Bonk''s Adventure: Arcade Version (US, China, Korea) / Kyukyoku!! PC Genjin: Special Arcade Version (Japan)'], + array['Arcade'], + '{"mame":["bonkadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'b-c-story', + 'B.C. Story', + 'SemiCom / Tirano', + 1997, + array['B.C. Story (set 1)'], + array['Arcade'], + '{"mame":["bcstry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'b-rap-boys', + 'B.Rap Boys', + 'Kaneko', + 1992, + array['B.Rap Boys (World)'], + array['Arcade'], + '{"mame":["brapboys"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'b16', + 'B16', + 'Hitachi', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["b16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hitachi/b16.cpp"]}'::jsonb + ), + ( + 'b16-ex-ii', + 'B16 EX-II', + 'Hitachi', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["b16ex2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hitachi/b16.cpp"]}'::jsonb + ), + ( + 'babooshka-atronic', + 'Babooshka (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["baboshka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'baby-boom-challenge', + 'Baby Boom Challenge', + 'Status Games', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["bbchall"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'baby-phoenix-gv-system', + 'Baby Phoenix/GV System', + 'Konami', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["konamigv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'baby-suprem', + 'Baby Suprem', + 'Andra / Vifico', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["bsuprem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/babysuprem.cpp"]}'::jsonb + ), + ( + 'baccarat-special', + 'Baccarat Special', + 'World Station Co.,LTD', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["baccarsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/umipoker.cpp"]}'::jsonb + ), + ( + 'back-fire-tecmo', + 'Back Fire (Tecmo)', + 'Tecmo', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["backfirt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo.cpp"]}'::jsonb + ), + ( + 'back-street-soccer-krb-0031-pcb', + 'Back Street Soccer (KRB-0031 PCB)', + 'SunA (Unico license)', + 1996, + '{}'::text[], + array['Sports'], + '{"mame":["bssoccer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna16.cpp"]}'::jsonb + ), + ( + 'backfire', + 'Backfire!', + 'Data East Corporation', + 1995, + array['Backfire! (Data East, Japan, set 1)'], + array['Arcade'], + '{"mame":["backfire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/backfire.cpp"]}'::jsonb + ), + ( + 'backgammon', + 'Backgammon', + 'Merkur', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["backgamn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/manohman.cpp"]}'::jsonb + ), + ( + 'backgammon-challenger', + 'Backgammon Challenger', + 'Fidelity Electronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["backgamc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/cc7.cpp"]}'::jsonb + ), + ( + 'bad-dudes-vs-dragonninja', + 'Bad Dudes vs. Dragonninja', + 'Data East USA', + 1988, + array['Bad Dudes vs. Dragonninja (US, revision 1)'], + array['Arcade'], + '{"mame":["baddudes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'bad-lands', + 'Bad Lands', + 'Atari Games', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["badlands"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/badlands.cpp"]}'::jsonb + ), + ( + 'badlands', + 'Badlands', + 'Konami', + 1984, + array['Badlands (Konami, set 1)'], + array['Arcade'], + '{"mame":["kbadlands"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konblands.cpp"]}'::jsonb + ), + ( + 'bagman', + 'Bagman', + 'Valadon Automation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["bagman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["valadon/bagman.cpp"]}'::jsonb + ), + ( + 'bai-bian-dou-dizhu', + 'Bai Bian Dou Dizhu', + 'Sealy', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["bbddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_z80.cpp"]}'::jsonb + ), + ( + 'baibian-shuangkou', + 'Baibian Shuangkou', + 'TJF', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["baibians"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ddz.cpp"]}'::jsonb + ), + ( + 'baile-2005-v3-2-2005-01-12', + 'Baile 2005 (V3.2 2005-01-12)', + 'GMS', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["baile"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'baku-baku-animal-j-950407-v1-000', + 'Baku Baku Animal (J 950407 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["bakubaku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'bakutotsu-kijuutei', + 'Bakutotsu Kijuutei', + 'Namco', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["bakutotu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'bal-cube', + 'Bal Cube', + 'Metro', + 1996, + array['Bal Cube (Japan)'], + array['Arcade'], + '{"mame":["balcube"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'balance-try', + 'Balance Try', + 'Namco', + 1999, + array['Balance Try (Japan, ver 1.00)'], + array['Arcade'], + '{"mame":["blnctry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'ball-challenge', + 'Ball Challenge', + 'TVE', + 2002, + array['Ball Challenge (20020607 1.0 OVERSEA)'], + array['Arcade'], + '{"mame":["ballch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'ball-pom-line', + 'Ball Pom Line', + 'Namco', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["ballpom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'balloon-bomber', + 'Balloon Bomber', + 'Taito', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ballbomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'balloon-brothers', + 'Balloon Brothers', + 'East Technology', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ballbros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_x.cpp"]}'::jsonb + ), + ( + 'balloon-fight-playchoice-10', + 'Balloon Fight (PlayChoice-10)', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_bfght"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'bally-professional-arcade', + 'Bally Professional Arcade', + 'Bally Manufacturing', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["astrocde"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrohome.cpp"]}'::jsonb + ), + ( + 'baluba-louk-no-densetsu', + 'Baluba-louk no Densetsu', + 'Able Corp, Ltd.', + 1986, + array['Baluba-louk no Densetsu (Japan)'], + array['Arcade'], + '{"mame":["baluba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/senjyo.cpp"]}'::jsonb + ), + ( + 'banana-splash', + 'Banana Splash', + 'Novotech', + null, + array['Banana Splash (set 1)'], + array['Arcade'], + '{"mame":["bsplash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'bananas-go-bahamas', + 'Bananas Go Bahamas', + 'Novotech', + null, + array['Bananas Go Bahamas (set 1)'], + array['Arcade'], + '{"mame":["bananas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'banbam', + 'BanBam', + 'Sun Electronics', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["banbam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/markham.cpp"]}'::jsonb + ), + ( + 'banctec-eseries-panel', + 'BancTec ESeries Panel', + 'DALE Electronics', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["banctec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["banctec/banctec.cpp"]}'::jsonb + ), + ( + 'bandit', + 'Bandit', + 'Data East USA / Incredible Technologies', + 1989, + array['Bandit (US prototype)'], + array['Arcade'], + '{"mame":["bandit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'bang-bang-ball-v1-05', + 'Bang Bang Ball (v1.05)', + 'Banpresto / Kunihiko Tashiro+Goodhouse', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["bangball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'bang-bang-busters-2010-nci-release', + 'Bang Bang Busters (2010 NCI release)', + 'Visco', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["b2b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'bang-bead', + 'Bang Bead', + 'Visco', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["bangbead"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'bang', + 'Bang!', + 'Gaelco / Bit Managers', + 1998, + array['Bang! (version 2, checksum 140E)'], + array['Arcade'], + '{"mame":["bang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'bank-panic', + 'Bank Panic', + 'Sanritsu / Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bankp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/bankp.cpp"]}'::jsonb + ), + ( + 'bank-robbery', + 'Bank Robbery', + 'Entertainment Technology Corp.', + 1993, + array['Bank Robbery (Ver. 3.32)'], + array['Arcade'], + '{"mame":["bankrob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'bare-knuckle', + 'Bare Knuckle', + 'bootleg', + 1994, + array['Bare Knuckle (scrambled bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["barekch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'bare-knuckle-ii', + 'Bare Knuckle II', + 'bootleg', + 1994, + array['Bare Knuckle II (scrambled bootleg of Mega Drive version)', 'Bare Knuckle II (bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["barek2ch","barek2mb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'bare-knuckle-iii', + 'Bare Knuckle III', + 'bootleg / Sega', + 1994, + array['Bare Knuckle III (scrambled bootleg of Mega Drive version)', 'Bare Knuckle III (Conny bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["barek3mb","barek3mbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'bare-knuckle-iii-sunset-riders', + 'Bare Knuckle III / Sunset Riders', + 'bootleg / Sega', + 1994, + array['Bare Knuckle III / Sunset Riders (scrambled bootleg of Mega Drive versions)'], + array['Arcade'], + '{"mame":["bk3ssrmb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'barline', + 'Barline', + 'Nichibutsu', + 1988, + array['Barline (Japan?)'], + array['Arcade'], + '{"mame":["barline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'barricade', + 'Barricade', + 'Ramtek', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["barricad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/hitme.cpp"]}'::jsonb + ), + ( + 'barrier', + 'Barrier', + 'Cinematronics (Vectorbeam license)', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["barrier"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'barroom-baseball', + 'Barroom Baseball', + 'Atari', + 1983, + array['Barroom Baseball (prototype)'], + array['Sports'], + '{"mame":["barbball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bartop52.cpp"]}'::jsonb + ), + ( + 'baryon-future-assault', + 'Baryon - Future Assault', + 'SemiCom / Tirano', + 1997, + array['Baryon - Future Assault (set 1)'], + array['Arcade'], + '{"mame":["baryon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dreamwld.cpp"]}'::jsonb + ), + ( + 'baseball-playchoice-10', + 'Baseball (PlayChoice-10)', + 'Nintendo of America', + 1984, + '{}'::text[], + array['Sports'], + '{"mame":["pc_bball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'baseball-ramtek', + 'Baseball (Ramtek)', + 'Ramtek', + 1974, + '{}'::text[], + array['Sports'], + '{"mame":["bballrmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/ramtek.cpp"]}'::jsonb + ), + ( + 'baseball-stars-2', + 'Baseball Stars 2', + 'SNK', + 1992, + '{}'::text[], + array['Sports'], + '{"mame":["bstars2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'baseball-stars-professional-ngm-002', + 'Baseball Stars Professional (NGM-002)', + 'SNK', + 1990, + '{}'::text[], + array['Sports'], + '{"mame":["bstars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'baseball-stars-be-a-champ-playchoice-10', + 'Baseball Stars: Be a Champ! (PlayChoice-10)', + 'SNK (Nintendo of America license)', + 1989, + '{}'::text[], + array['Sports'], + '{"mame":["pc_bstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'baseball-the-season-ii', + 'Baseball: The Season II', + 'Cinematronics', + 1987, + '{}'::text[], + array['Sports'], + '{"mame":["basebal2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'bases-loaded', + 'Bases Loaded', + 'Jaleco (Nintendo of America license)', + 1990, + array['Bases Loaded (Prototype, PlayChoice-10)'], + array['Arcade'], + '{"mame":["pc_bload"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'basic-master-jr-mb-6885', + 'Basic Master Jr. (MB-6885)', + 'Hitachi', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["bmjr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hitachi/bmjr.cpp"]}'::jsonb + ), + ( + 'basic-master-level-3-mb-6890', + 'Basic Master Level 3 (MB-6890)', + 'Hitachi', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["bml3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hitachi/bml3.cpp"]}'::jsonb + ), + ( + 'bassstation-rack-analogue-synthesizer-module', + 'BassStation Rack Analogue Synthesizer Module', + 'Novation', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["bassstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novation/basssta.cpp"]}'::jsonb + ), + ( + 'batman', + 'Batman', + 'Atari Games', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["batman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/batman.cpp"]}'::jsonb + ), + ( + 'batman-forever-jue-960507-v1-000', + 'Batman Forever (JUE 960507 V1.000)', + 'Acclaim', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["batmanfr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'batsugun', + 'Batsugun', + 'Toaplan', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["batsugun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/batsugun.cpp"]}'::jsonb + ), + ( + 'battlantis', + 'Battlantis', + 'Konami', + 1987, + array['Battlantis (version G)'], + array['Arcade'], + '{"mame":["battlnts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/battlnts.cpp"]}'::jsonb + ), + ( + 'battle-bakraid-unlimited-version-tue-jun-8-1999', + 'Battle Bakraid - Unlimited Version (Tue Jun 8 1999)', + 'Eighting', + 1999, + array['Battle Bakraid - Unlimited Version (USA) (Tue Jun 8 1999)'], + array['Arcade'], + '{"mame":["bbakraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/raizing_batrider.cpp"]}'::jsonb + ), + ( + 'battle-chopper', + 'Battle Chopper', + 'Irem', + 1987, + array['Battle Chopper (World)'], + array['Arcade'], + '{"mame":["bchopper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'battle-circuit', + 'Battle Circuit', + 'Capcom', + 1997, + array['Battle Circuit (Europe 970319)'], + array['Arcade'], + '{"mame":["batcir"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'battle-cross', + 'Battle Cross', + 'Omori Electric Co., Ltd.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["battlex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omori/battlex.cpp"]}'::jsonb + ), + ( + 'battle-cruiser-m-12', + 'Battle Cruiser M-12', + 'Sigma Enterprises Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["bcruzm12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'battle-garegga-sat-feb-3-1996', + 'Battle Garegga (Sat Feb 3 1996)', + 'Raizing / Eighting', + 1996, + array['Battle Garegga (Europe / USA / Japan / Asia) (Sat Feb 3 1996)'], + array['Arcade'], + '{"mame":["bgaregga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/raizing.cpp"]}'::jsonb + ), + ( + 'battle-gear', + 'Battle Gear', + 'Taito', + 1999, + array['Battle Gear (VER.2.40A)'], + array['Arcade'], + '{"mame":["batlgear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'battle-gear-2', + 'Battle Gear 2', + 'Taito', + 2000, + array['Battle Gear 2 (VER.2.04J)'], + array['Arcade'], + '{"mame":["batlgr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'battle-gear-3', + 'Battle Gear 3', + 'Taito', + 2002, + array['Battle Gear 3 (Ver.2.01A)'], + array['Arcade'], + '{"mame":["batlgr3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'battle-k-road', + 'Battle K-Road', + 'Psikyo', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["btlkroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo.cpp"]}'::jsonb + ), + ( + 'battle-lane-vol-5', + 'Battle Lane! Vol. 5', + 'Technos Japan (Taito license)', + 1986, + array['Battle Lane! Vol. 5 (set 1)'], + array['Arcade'], + '{"mame":["battlane"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/battlane.cpp"]}'::jsonb + ), + ( + 'battle-of-atlantis', + 'Battle of Atlantis', + 'Comsoft', + 1981, + array['Battle of Atlantis (set 1)'], + array['Arcade'], + '{"mame":["atlantis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'battle-of-the-solar-system', + 'Battle of the Solar System', + 'Microprose Games Inc.', + 1992, + array['Battle of the Solar System (rev. 1.1a 7/23/92)'], + array['Arcade'], + '{"mame":["botss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/micro3d.cpp"]}'::jsonb + ), + ( + 'battle-rangers', + 'Battle Rangers', + 'Data East Corporation', + 1988, + array['Battle Rangers (World)'], + array['Arcade'], + '{"mame":["battlera"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/battlera.cpp"]}'::jsonb + ), + ( + 'battle-shark', + 'Battle Shark', + 'Taito Corporation Japan', + 1989, + array['Battle Shark (World)'], + array['Arcade'], + '{"mame":["bshark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'battle-tryst', + 'Battle Tryst', + 'Konami', + 1998, + array['Battle Tryst (ver JAC)'], + array['Arcade'], + '{"mame":["btltryst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamim2.cpp"]}'::jsonb + ), + ( + 'battlecry', + 'Battlecry', + 'Home Data', + 1991, + array['Battlecry (Version E)'], + array['Arcade'], + '{"mame":["battlcry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/homedata.cpp"]}'::jsonb + ), + ( + 'battlefront', + 'BattleFront', + 'TJF', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["btlfront"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ddz.cpp"]}'::jsonb + ), + ( + 'battletoads', + 'Battletoads', + 'Rare / Electronic Arts', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["btoads"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rare/btoads.cpp"]}'::jsonb + ), + ( + 'battlezone', + 'Battlezone', + 'Atari', + 1980, + array['Battlezone (rev 2)'], + array['Arcade'], + '{"mame":["bzone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bzone.cpp"]}'::jsonb + ), + ( + 'bay-route-fd1094-317-0116', + 'Bay Route (FD1094 317-0116)', + 'Sunsoft / Sega', + 1989, + array['Bay Route (set 3, World) (FD1094 317-0116)'], + array['Arcade'], + '{"mame":["bayroute"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'bazooka', + 'Bazooka', + 'Project Support Engineering', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["bazooka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pse.cpp"]}'::jsonb + ), + ( + 'bbc-bridge-companion', + 'BBC Bridge Companion', + 'Unicard', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["bbcbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unicard/bbcbc.cpp"]}'::jsonb + ), + ( + 'bcs-3-rev-2-4', + 'BCS 3 rev 2.4', + 'Eckhard Schiller', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bcs3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/bcs3.cpp"]}'::jsonb + ), + ( + 'beach-festival-world-championship-1997', + 'Beach Festival World Championship 1997', + 'Comad', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["wbbc97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pspikes.cpp"]}'::jsonb + ), + ( + 'beach-head-2000-install-05-27-03', + 'Beach Head 2000 Install - 05/27/03', + 'Global VR', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["bhead2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'beach-head-2000-install-09-16-01', + 'Beach Head 2000 Install - 09/16/01', + 'Global VR', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["bhead2ka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'beach-head-2002-install-05-27-03', + 'Beach Head 2002 Install - 05/27/03', + 'Global VR', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["bhead2k2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'beach-head-2003-desert-war-install-05-27-03', + 'Beach Head 2003 Desert War Install - 05/27/03', + 'Global VR', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["bhead2k3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'beach-patrol-atronic', + 'Beach Patrol (Atronic)', + 'Atronic', + 2002, + array['Beach Patrol (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["beachpt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'beach-spikers-gds-0014', + 'Beach Spikers (GDS-0014)', + 'CRI / Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["beachspi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'beam-invader', + 'Beam Invader', + 'Teknon Kogyo', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["beaminv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/beaminv.cpp"]}'::jsonb + ), + ( + 'bear-necessities-atronic', + 'Bear Necessities (Atronic)', + 'Atronic', + 2002, + array['Bear Necessities (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["bearnec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'beast-busters', + 'Beast Busters', + 'SNK', + 1989, + array['Beast Busters (World)'], + array['Arcade'], + '{"mame":["bbusters"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/bbusters.cpp"]}'::jsonb + ), + ( + 'beast-busters-second-nightmare', + 'Beast Busters: Second Nightmare', + 'SNK / ADK', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["bbust2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'beat-player-2000', + 'Beat Player 2000', + 'dgPIX Entertainment Inc.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["btplay2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'beat-the-champ-gv053-uaa01', + 'Beat the Champ (GV053 UAA01)', + 'Konami', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["btchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'beathead', + 'BeatHead', + 'Atari Games', + 1993, + array['BeatHead (prototype)'], + array['Arcade'], + '{"mame":["beathead"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/beathead.cpp"]}'::jsonb + ), + ( + 'beatmania', + 'beatmania', + 'Konami', + 1997, + array['beatmania (ver JA-B)'], + array['Rhythm'], + '{"mame":["bm1stmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-2nd-mix', + 'beatmania 2nd MIX', + 'Konami', + 1998, + array['beatmania 2nd MIX (ver JA-B)'], + array['Rhythm'], + '{"mame":["bm2ndmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-3rd-mix', + 'beatmania 3rd MIX', + 'Konami', + 1998, + array['beatmania 3rd MIX (ver JA-B)'], + array['Rhythm'], + '{"mame":["bm3rdmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-4th-mix', + 'beatmania 4th MIX', + 'Konami', + 1999, + array['beatmania 4th MIX (ver JA-A)'], + array['Rhythm'], + '{"mame":["bm4thmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-5th-mix', + 'beatmania 5th MIX', + 'Konami', + 1999, + array['beatmania 5th MIX (ver JA-A)'], + array['Rhythm'], + '{"mame":["bm5thmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-6th-mix', + 'beatmania 6th MIX', + 'Konami', + 2001, + array['beatmania 6th MIX (ver JA-A)'], + array['Rhythm'], + '{"mame":["bm6thmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-7th-mix', + 'beatmania 7th MIX', + 'Konami', + 2001, + array['beatmania 7th MIX (ver JA-B)'], + array['Rhythm'], + '{"mame":["bm7thmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-club-mix', + 'beatmania Club MIX', + 'Konami', + 2000, + array['beatmania Club MIX (ver JA-A)'], + array['Rhythm'], + '{"mame":["bmclubmx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-complete-mix', + 'beatmania complete MIX', + 'Konami', + 1999, + array['beatmania complete MIX (ver JA-C)'], + array['Rhythm'], + '{"mame":["bmcompmx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-complete-mix-2', + 'beatmania complete MIX 2', + 'Konami', + 2000, + array['beatmania complete MIX 2 (ver JA-A)'], + array['Rhythm'], + '{"mame":["bmcompm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-core-remix', + 'beatmania CORE REMIX', + 'Konami', + 2000, + array['beatmania CORE REMIX (ver JA-A)'], + array['Rhythm'], + '{"mame":["bmcorerm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-featuring-dreams-come-true', + 'beatmania featuring Dreams Come True', + 'Konami', + 2000, + array['beatmania featuring Dreams Come True (ver JA-A)'], + array['Rhythm'], + '{"mame":["bmdct"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-863-jab', + 'beatmania IIDX (863 JAB)', + 'Konami', + 1999, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-2nd-style-gc985-jaa', + 'beatmania IIDX 2nd style (GC985 JAA)', + 'Konami', + 1999, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-3rd-style-gc992-jac', + 'beatmania IIDX 3rd style (GC992 JAC)', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-4th-style-gca03-jaa', + 'beatmania IIDX 4th style (GCA03 JAA)', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-5th-style-gca17-jaa', + 'beatmania IIDX 5th style (GCA17 JAA)', + 'Konami', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-6th-style-gcb4u-jab', + 'beatmania IIDX 6th style (GCB4U JAB)', + 'Konami', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-7th-style-gcb44-jab', + 'beatmania IIDX 7th style (GCB44 JAB)', + 'Konami', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.002.sql b/supabase/seed-data/mame-game-catalog.generated.002.sql new file mode 100644 index 0000000..4630cee --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.002.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'beatmania-iidx-8th-style-gcc44-jaa', + 'beatmania IIDX 8th style (GCC44 JAA)', + 'Konami', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-substream-983-jaa', + 'beatmania IIDX Substream (983 JAA)', + 'Konami', + 1999, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidxs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-substream-with-ddr-2nd-club-version-2-984-a01-bm', + 'beatmania IIDX Substream with DDR 2nd Club Version 2 (984 A01 BM)', + 'Konami', + 1999, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidxc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-with-ddr-2nd-club-version-896-jab', + 'beatmania IIDX with DDR 2nd Club Version (896 JAB)', + 'Konami', + 1999, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidxc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iii', + 'Beatmania III', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["bm3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'beatmania-iii-append-6th-mix', + 'Beatmania III Append 6th Mix', + 'Konami', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["bm36th"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'beatmania-iii-append-7th-mix', + 'Beatmania III Append 7th Mix', + 'Konami', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["bm37th"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'beatmania-iii-append-core-remix', + 'Beatmania III Append Core Remix', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["bm3core"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'beatmania-iii-the-final', + 'Beatmania III The Final', + 'Konami', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["bm3final"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'beatmania-the-final', + 'beatmania THE FINAL', + 'Konami', + 2002, + array['beatmania THE FINAL (ver JA-A)'], + array['Rhythm'], + '{"mame":["bmfinal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beauty-block', + 'Beauty Block', + 'AMT', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["beautyb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system16.cpp"]}'::jsonb + ), + ( + 'bebox-dual603-66', + 'BeBox Dual603-66', + 'Be Inc', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["bebox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["be/bebox.cpp"]}'::jsonb + ), + ( + 'bee-bop', + 'Bee Bop', + 'Novotech', + null, + array['Bee Bop (set 1)'], + array['Arcade'], + '{"mame":["beebop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'bee-zerk', + 'Bee-Zerk', + 'VLT Inc.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["beezerk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vlc34010.cpp"]}'::jsonb + ), + ( + 'beetlemania', + 'Beetlemania', + 'Novotech', + null, + array['Beetlemania (set 1)'], + array['Arcade'], + '{"mame":["beetlem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'beetlemania-atronic', + 'Beetlemania (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["atrbtlma"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'beetles-unplugged-atronic', + 'Beetles Unplugged (Atronic)', + 'Atronic', + 2002, + array['Beetles Unplugged (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["beetleup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'beezer', + 'Beezer', + 'Pacific Polytechnical Corp. / Tong Electronic', + 1982, + array['Beezer (version 9.0)'], + array['Arcade'], + '{"mame":["beezer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/beezer.cpp"]}'::jsonb + ), + ( + 'bega-s-battle', + 'Bega''s Battle', + 'Data East', + 1983, + array['Bega''s Battle (Revision 3)'], + array['Arcade'], + '{"mame":["begas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_ld.cpp"]}'::jsonb + ), + ( + 'behind-enemy-lines', + 'Behind Enemy Lines', + 'Sega / EPL Productions', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["bel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'bel-slots-export-5-01', + 'Bel Slots Export (5.01)', + 'Impera', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["belslots"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'bell-star-plus', + 'Bell Star Plus', + 'Paloma Elektronik?', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["bellstrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'bell-star-vip2-v-25-02-02', + 'Bell-Star+ (Vip2 v.25.02.02)', + 'Paloma Elektronik?', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["bellstr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'bell-star-vip2-v-30-1-02', + 'Bell-Star+ (Vip2 v.30.1.02)', + 'Paloma Elektronik?', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["bellstr3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'bell-star-5-vip2-v-3-6-02', + 'Bell-Star+ 5 (Vip2 v.3.6.02)', + 'Paloma Elektronik?', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["bellstr1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'bells-and-whistles', + 'Bells & Whistles', + 'Konami', + 1991, + array['Bells & Whistles (World, version L)'], + array['Arcade'], + '{"mame":["blswhstl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'beluga', + 'Beluga', + 'Novag Industries / Intelligent Heuristic Programming', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["beluga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/primo.cpp"]}'::jsonb + ), + ( + 'ben-bero-beh', + 'Ben Bero Beh', + 'Taito', + 1984, + array['Ben Bero Beh (Japan)'], + array['Arcade'], + '{"mame":["benberob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/halleys.cpp"]}'::jsonb + ), + ( + 'bermuda-triangle', + 'Bermuda Triangle', + 'SNK', + 1987, + array['Bermuda Triangle (World?)'], + array['Arcade'], + '{"mame":["bermudat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'berzerk', + 'Berzerk', + 'Stern Electronics', + 1980, + array['Berzerk (revision RC31A)'], + array['Arcade'], + '{"mame":["berzerk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/berzerk.cpp"]}'::jsonb + ), + ( + 'best-bout-boxing', + 'Best Bout Boxing', + 'Jaleco', + 1994, + array['Best Bout Boxing (ver 1.3)'], + array['Arcade'], + '{"mame":["bbbxing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'best-of-best', + 'Best Of Best', + 'SunA', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["bestbest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna16.cpp"]}'::jsonb + ), + ( + 'bestri', + 'Bestri', + 'F2 System', + 1998, + array['Bestri (Korea, set 1)'], + array['Arcade'], + '{"mame":["bestri"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/crospang.cpp"]}'::jsonb + ), + ( + 'beta', + 'Beta', + 'Pitronics', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["beta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pitronics/beta.cpp"]}'::jsonb + ), + ( + 'beyond-kung-fu', + 'Beyond Kung-Fu', + 'Irem', + 1987, + array['Beyond Kung-Fu (location test)'], + array['Arcade'], + '{"mame":["bkungfu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62_bkungfu.cpp"]}'::jsonb + ), + ( + 'bic-a5105', + 'BIC A5105', + 'VEB Robotron', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["a5105"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/a5105.cpp"]}'::jsonb + ), + ( + 'big-10-1985-success', + 'Big 10 (1985, Success)', + 'Success', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["big10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/big10.cpp"]}'::jsonb + ), + ( + 'big-10-1986-system-make', + 'Big 10 (1986, System Make)', + 'System Make', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["big10a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/big10.cpp"]}'::jsonb + ), + ( + 'big-blue-atronic', + 'Big Blue (Atronic)', + 'Atronic', + 2002, + array['Big Blue (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["bigblue"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'big-board', + 'Big Board', + 'Digital Research Computers', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["bigboard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["xerox/xerox820.cpp"]}'::jsonb + ), + ( + 'big-board-ii', + 'Big Board II', + 'Digital Research Computers', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["bigbord2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["xerox/bigbord2.cpp"]}'::jsonb + ), + ( + 'big-buck-hunter-shooter-s-challenge-v1-60-01', + 'Big Buck Hunter - Shooter''s Challenge (v1.60.01)', + 'Incredible Technologies', + 2002, + '{}'::text[], + array['Shooter'], + '{"mame":["bbhsc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'big-buck-hunter-v1-00-14', + 'Big Buck Hunter (v1.00.14)', + 'Incredible Technologies', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["bbh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'big-buck-hunter-call-of-the-wild-v3-02-5', + 'Big Buck Hunter Call of the Wild (v3.02.5)', + 'Incredible Technologies', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["bbhcotw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'big-buck-hunter-ii-sportsman-s-paradise-v2-02-11', + 'Big Buck Hunter II - Sportsman''s Paradise (v2.02.11)', + 'Incredible Technologies', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["bbh2sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'big-bucks', + 'Big Bucks', + 'Dynasoft Inc.', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["bigbucks"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'big-cheese-atronic', + 'Big Cheese (Atronic)', + 'Atronic', + 2002, + array['Big Cheese (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["abigchs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'big-deal-belgien-5-04', + 'Big Deal Belgien (5.04)', + 'Impera', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["bigdeal0"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'big-event-golf', + 'Big Event Golf', + 'Taito America Corporation', + 1986, + array['Big Event Golf (US)'], + array['Sports'], + '{"mame":["bigevglf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/bigevglf.cpp"]}'::jsonb + ), + ( + 'big-fight-big-trouble-in-the-atlantic-ocean', + 'Big Fight - Big Trouble In The Atlantic Ocean', + 'Tatsumi', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["bigfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/cyclwarr.cpp"]}'::jsonb + ), + ( + 'big-karnak', + 'Big Karnak', + 'Gaelco', + 1991, + array['Big Karnak (ver. 1.0, checksum 1e38c94)'], + array['Arcade'], + '{"mame":["bigkarnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp"]}'::jsonb + ), + ( + 'big-run', + 'Big Run', + 'Jaleco', + 1989, + array['Big Run (11th Rallye version, Europe?)'], + array['Arcade'], + '{"mame":["bigrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'big-striker', + 'Big Striker', + 'Jaleco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["bigstrik"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'big-tippers', + 'Big Tippers', + 'WMS', + 2001, + array['Big Tippers (Russian)'], + array['Arcade'], + '{"mame":["btippers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'big-twin', + 'Big Twin', + 'Playmark', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["bigtwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/playmark.cpp"]}'::jsonb + ), + ( + 'bigfoot-bonkers', + 'Bigfoot Bonkers', + 'Meadows Games, Inc.', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["bbonk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/lazercmd.cpp"]}'::jsonb + ), + ( + 'bijokko-gakuen', + 'Bijokko Gakuen', + 'Nichibutsu', + 1988, + array['Bijokko Gakuen (Japan 880116)'], + array['Arcade'], + '{"mame":["bijokkog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'bijokko-yume-monogatari', + 'Bijokko Yume Monogatari', + 'Nichibutsu', + 1987, + array['Bijokko Yume Monogatari (Japan 870925)'], + array['Arcade'], + '{"mame":["bijokkoy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'bikinikko-okinawa-de-ippai-shichaimashita', + 'BiKiNikko - Okinawa de Ippai Shichaimashita', + 'Nichibutsu/eic', + 1999, + array['BiKiNikko - Okinawa de Ippai Shichaimashita (Japan)'], + array['Arcade'], + '{"mame":["bikiniko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'bikkuri-card', + 'Bikkuri Card', + 'Peni', + 1987, + array['Bikkuri Card (Japan)'], + array['Arcade'], + '{"mame":["bikkuric"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/timeplt.cpp"]}'::jsonb + ), + ( + 'bikkuri-pro-wrestling', + 'Bikkuri Pro Wrestling', + 'Nichibutsu', + 1988, + array['Bikkuri Pro Wrestling (Japan 881221, Ver 1.05)'], + array['Arcade'], + '{"mame":["bikkuri"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'billiard-academy-real-break', + 'Billiard Academy Real Break', + 'Nakanihon', + 1998, + array['Billiard Academy Real Break (Europe)'], + array['Arcade'], + '{"mame":["realbrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/realbrk.cpp"]}'::jsonb + ), + ( + 'bio-attack', + 'Bio Attack', + 'Taito Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["bioatack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'bio-f-r-e-a-k-s', + 'Bio F.R.E.A.K.S', + 'Midway Games', + 1997, + array['Bio F.R.E.A.K.S (prototype, boot ROM 0.1i)'], + array['Arcade'], + '{"mame":["biofreak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'bio-hazard-battle', + 'Bio-Hazard Battle', + 'bootleg / Sega', + 1995, + array['Bio-Hazard Battle (scrambled bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["biohzdmb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'bio-hazard-battle-mega-play', + 'Bio-hazard Battle (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_bio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'bio-ship-paladin', + 'Bio-ship Paladin', + 'UPL (American Sammy license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["bioship"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'biomechanical-toy', + 'Biomechanical Toy', + 'Gaelco / Zeus', + 1995, + array['Biomechanical Toy (ver. 1.0.1885, checksum 69f5e032)'], + array['Arcade'], + '{"mame":["biomtoy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp"]}'::jsonb + ), + ( + 'bionic-commando-euro', + 'Bionic Commando (Euro)', + 'Capcom', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["bionicc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/bionicc.cpp"]}'::jsonb + ), + ( + 'biplane', + 'Biplane', + 'Fun Games', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["biplane"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/fungames.cpp"]}'::jsonb + ), + ( + 'biplane-4', + 'Biplane 4', + 'Fun Games', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["biplane4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/fungames.cpp"]}'::jsonb + ), + ( + 'birdie-king', + 'Birdie King', + 'Taito Corporation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["bking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/bking.cpp"]}'::jsonb + ), + ( + 'birdie-king-2', + 'Birdie King 2', + 'Taito Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["bking2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/bking.cpp"]}'::jsonb + ), + ( + 'birdie-king-3', + 'Birdie King 3', + 'Taito Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bking3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/bking.cpp"]}'::jsonb + ), + ( + 'birdie-try', + 'Birdie Try', + 'Data East Corporation', + 1988, + array['Birdie Try (Japan, revision 2, revision 1 MCU)'], + array['Arcade'], + '{"mame":["birdtry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'birdiy', + 'Birdiy', + 'Mama Top', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["birdiy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'bishi-bashi-champ-mini-game-senshuken', + 'Bishi Bashi Champ Mini Game Senshuken', + 'Konami', + 1996, + array['Bishi Bashi Champ Mini Game Senshuken (ver JAA, 3 Players)'], + array['Arcade'], + '{"mame":["bishi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/bishi.cpp"]}'::jsonb + ), + ( + 'bishou-jan', + 'Bishou Jan', + 'Subsino', + 1999, + array['Bishou Jan (Japan, Ver. 203)'], + array['Arcade'], + '{"mame":["bishjan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'bishoujo-janshi-pretty-sailor-18-kin', + 'Bishoujo Janshi Pretty Sailor 18-kin', + 'Sphinx', + 1994, + array['Bishoujo Janshi Pretty Sailor 18-kin (Japan)'], + array['Arcade'], + '{"mame":["psailor1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj9195.cpp"]}'::jsonb + ), + ( + 'bishoujo-janshi-pretty-sailor-2', + 'Bishoujo Janshi Pretty Sailor 2', + 'Sphinx', + 1994, + array['Bishoujo Janshi Pretty Sailor 2 (Japan)'], + array['Arcade'], + '{"mame":["psailor2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj9195.cpp"]}'::jsonb + ), + ( + 'bitel-t3210', + 'Bitel T3210', + 'Siemens', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["t3210"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["siemens/bitel.cpp"]}'::jsonb + ), + ( + 'bittboy-mini-fc-300-in-1', + 'BittBoy Mini FC 300 in 1', + 'BittBoy', + 2017, + '{}'::text[], + array['Arcade'], + '{"mame":["bittboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'black-beard', + 'Black Beard', + 'Astro Corp.', + 2005, + array['Black Beard (Russia, set 1)'], + array['Arcade'], + '{"mame":["blackbd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'black-heart', + 'Black Heart', + 'UPL', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["blkheart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'black-hole', + 'Black Hole', + 'TDS & MINTS', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["blkhole"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'black-hole-efg-sanremo', + 'Black Hole (EFG Sanremo)', + 'EFG Sanremo', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["blackhol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/efg8080.cpp"]}'::jsonb + ), + ( + 'black-jack', + 'Black Jack', + 'Irem', + 1992, + array['Black Jack (Irem, satellite unit, rev. T)'], + array['Arcade'], + '{"mame":["bj92"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m78.cpp"]}'::jsonb + ), + ( + 'black-jack-olympic-games-v5-04-upgrade-kit-for-wild-card', + 'Black Jack (Olympic Games, v5.04, upgrade kit for Wild Card)', + 'Olympic Video Gaming PTY LTD', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["olym65bj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'black-panther', + 'Black Panther', + 'Konami', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["blkpnthr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'black-pearl-ukraine-v-45-02', + 'Black Pearl (Ukraine, V. 45.02)', + 'Extrema', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["blpearl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'black-rose-rapid-fire-grand-prix-konami-endeavour-queensland', + 'Black Rose Rapid Fire Grand Prix (Konami Endeavour, Queensland)', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["blkrose"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'black-touch', + 'Black Touch', + 'Yang Gi Co Ltd.', + null, + array['Black Touch (Korea)'], + array['Arcade'], + '{"mame":["blktouch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'black-touch-96', + 'Black Touch ''96', + 'D.G.R.M.', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["blackt96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dgrm/blackt96.cpp"]}'::jsonb + ), + ( + 'black-touch-ii', + 'Black Touch II', + '', + 1993, + array['Black Touch II (Korea)'], + array['Arcade'], + '{"mame":["blktch2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shanghai.cpp"]}'::jsonb + ), + ( + 'black-widow', + 'Black Widow', + 'Atari', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["bwidow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bwidow.cpp"]}'::jsonb + ), + ( + 'blade-master', + 'Blade Master', + 'Irem', + 1991, + array['Blade Master (World)'], + array['Arcade'], + '{"mame":["bmaster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'blades-of-steel', + 'Blades of Steel', + 'Konami', + 1987, + array['Blades of Steel (version T, Joystick)'], + array['Arcade'], + '{"mame":["bladestl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/bladestl.cpp"]}'::jsonb + ), + ( + 'blandia', + 'Blandia', + 'Allumer', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["blandia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'blast-off', + 'Blast Off', + 'Namco', + 1989, + array['Blast Off (Japan)'], + array['Arcade'], + '{"mame":["blastoff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'blastaball-arcadia-v-2-1', + 'Blastaball (Arcadia, V 2.1)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_blast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'blasted', + 'Blasted', + 'Bally Midway', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["blasted"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr68.cpp"]}'::jsonb + ), + ( + 'blaster', + 'Blaster', + 'Williams / Vid Kidz', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["blaster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'blasteroids', + 'Blasteroids', + 'Atari Games', + 1987, + array['Blasteroids (rev 4)'], + array['Arcade'], + '{"mame":["blstroid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/blstroid.cpp"]}'::jsonb + ), + ( + 'blasto', + 'Blasto', + 'Gremlin', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["blasto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/blockade.cpp"]}'::jsonb + ), + ( + 'blaze-on', + 'Blaze On', + 'A.I (Atlus license)', + 1992, + array['Blaze On (World)'], + array['Arcade'], + '{"mame":["blazeon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'blazer', + 'Blazer', + 'Namco', + 1987, + array['Blazer (Japan)'], + array['Arcade'], + '{"mame":["blazer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'blazing-star', + 'Blazing Star', + 'Yumekobo', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["blazstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'blazing-tornado', + 'Blazing Tornado', + 'Human Amusement', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["blzntrnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'blicks', + 'Blicks', + 'Sega', + 1990, + array['Blicks (Japan)'], + array['Arcade'], + '{"mame":["blicks"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasm1.cpp"]}'::jsonb + ), + ( + 'blits-loto-ukraine-v-30-16', + 'Blits Loto (Ukraine, V. 30.16)', + 'Extrema', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["bloto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'block-block', + 'Block Block', + 'Capcom', + 1991, + array['Block Block (World 911219 Joystick)'], + array['Arcade'], + '{"mame":["block"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'block-carnival-thunder-and-lightning-2', + 'Block Carnival / Thunder & Lightning 2', + 'Visco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["blockcar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'block-fever', + 'Block Fever', + 'Nintendo', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["blockfvr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/blockfvr.cpp"]}'::jsonb + ), + ( + 'block-gal-mc-8123b-317-0029', + 'Block Gal (MC-8123B, 317-0029)', + 'Sega / Vic Tokai', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["blockgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'block-hole', + 'Block Hole', + 'Konami', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["blockhl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/blockhl.cpp"]}'::jsonb + ), + ( + 'block-out', + 'Block Out', + 'Technos Japan / California Dreams', + 1989, + array['Block Out (set 1)'], + array['Arcade'], + '{"mame":["blockout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/blockout.cpp"]}'::jsonb + ), + ( + 'block-pong-pong', + 'Block Pong-Pong', + 'MOSS / Sammy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["blokpong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'blockade', + 'Blockade', + 'Gremlin', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["blockade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/blockade.cpp"]}'::jsonb + ), + ( + 'blocken', + 'Blocken', + 'Visco / KID', + 1994, + array['Blocken (Japan)'], + array['Arcade'], + '{"mame":["blocken"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shangha3.cpp"]}'::jsonb + ), + ( + 'blockout-tax', + 'Blockout (TAX)', + 'TAX / Game Revival', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["blocktax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blocktax.cpp"]}'::jsonb + ), + ( + 'blomby-car', + 'Blomby Car', + 'ABM & Gecas', + 1994, + array['Blomby Car (Version 1P0)'], + array['Arcade'], + '{"mame":["blmbycar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/blmbycar.cpp"]}'::jsonb + ), + ( + 'blood-bros', + 'Blood Bros.', + 'TAD Corporation', + 1990, + array['Blood Bros. (World?)'], + array['Arcade'], + '{"mame":["bloodbro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/bloodbro.cpp"]}'::jsonb + ), + ( + 'blood-storm-v2-22', + 'Blood Storm (v2.22)', + 'Strata / Incredible Technologies', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["bloodstm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'blood-warrior', + 'Blood Warrior', + 'Kaneko', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["bloodwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'bloody-roar-3', + 'Bloody Roar 3', + 'bootleg', + 2001, + array['Bloody Roar 3 (bootleg)'], + array['Arcade'], + '{"mame":["bldyr3b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'bloxeed-fd1094-317-0139', + 'Bloxeed (FD1094 317-0139)', + 'Sega / Elorg', + 1989, + array['Bloxeed (Japan) (FD1094 317-0139)'], + array['Arcade'], + '{"mame":["bloxeed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'blue-hawk', + 'Blue Hawk', + 'Dooyong', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["bluehawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'blue-print-midway', + 'Blue Print (Midway)', + 'Zilec Electronics / Bally Midway', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["blueprnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/blueprnt.cpp"]}'::jsonb + ), + ( + 'blue-shark-mds-hellas', + 'Blue Shark (MDS Hellas)', + 'MDS Hellas', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["blshark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'blue-shark-midway', + 'Blue Shark (Midway)', + 'Midway', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["blueshrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'blue-s-journey-raguy-alm-001-alh-001', + 'Blue''s Journey / Raguy (ALM-001 ~ ALH-001)', + 'Alpha Denshi Co.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["bjourney"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'bmx-stunts', + 'BMX Stunts', + 'Jetsoft', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["bmxstunts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'bnb-arcade', + 'BnB Arcade', + 'Eolith', + 2003, + array['BnB Arcade (V1.0005 World)'], + array['Arcade'], + '{"mame":["bballoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/ghosteo.cpp"]}'::jsonb + ), + ( + 'bo', + 'BO', + 'Philips', + 1987, + array['BO (Videosynthesizer Prototype)'], + array['Arcade'], + '{"mame":["pbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/philipsbo.cpp"]}'::jsonb + ), + ( + 'body-slam-8751-317-0015', + 'Body Slam (8751 317-0015)', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["bodyslam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'bogey-manor', + 'Bogey Manor', + 'Technos Japan', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["bogeyman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/bogeyman.cpp"]}'::jsonb + ), + ( + 'boggy-84', + 'Boggy ''84', + 'Kaneko', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["boggy84"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/fastfred.cpp"]}'::jsonb + ), + ( + 'bomb-bee', + 'Bomb Bee', + 'Namco', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["bombbee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'bomb-jack', + 'Bomb Jack', + 'Tehkan', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bombjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/bombjack.cpp"]}'::jsonb + ), + ( + 'bomb-kick', + 'Bomb Kick', + 'Yun Sung', + 1998, + array['Bomb Kick (set 1)'], + array['Arcade'], + '{"mame":["bombkick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsun16.cpp"]}'::jsonb + ), + ( + 'bomber-man-world-new-dyna-blaster-global-quest', + 'Bomber Man World / New Dyna Blaster - Global Quest', + 'Irem', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["bbmanw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m90.cpp"]}'::jsonb + ), + ( + 'bombjack-twin', + 'Bombjack Twin', + 'NMK', + 1993, + array['Bombjack Twin (set 1)'], + array['Arcade'], + '{"mame":["bjtwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'bombs-away', + 'Bombs Away', + 'Meadows', + 1976, + array['Bombs Away (prototype)'], + array['Arcade'], + '{"mame":["bombaway","bombsa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadwttl.cpp","jaleco/psychic5.cpp"]}'::jsonb + ), + ( + 'bonanza-bros', + 'Bonanza Bros', + 'Sega', + 1990, + array['Bonanza Bros (US, Floppy DS3-5000-07d? Based)'], + array['Arcade'], + '{"mame":["bnzabros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'bonanza-bros-mega-tech', + 'Bonanza Bros. (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_bbros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'bondwell-12', + 'Bondwell 12', + 'Bondwell Holding', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bw12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bondwell/bw12.cpp"]}'::jsonb + ), + ( + 'bondwell-model-2', + 'Bondwell Model 2', + 'Bondwell Holding', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["bw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bondwell/bw2.cpp"]}'::jsonb + ), + ( + 'bongo', + 'Bongo', + 'Jetsoft', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["bongo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'bonne-chance', + 'Bonne Chance!', + '', + null, + array['Bonne Chance! (Golden Poker prequel HW, set 1)', 'Bonne Chance! (Golden Poker prequel HW, set 2)'], + array['Arcade'], + '{"mame":["bchancep","bchanceq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'bonne-chance-french-english', + 'Bonne Chance! (French/English)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["bchance"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicfly.cpp"]}'::jsonb + ), + ( + 'bonus-card-german', + 'Bonus Card (German)', + 'Fun World', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["bonuscrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'bonus-chance', + 'Bonus Chance', + 'Wing Co., Ltd.', + 1990, + array['Bonus Chance (W-8, set 1)'], + array['Arcade'], + '{"mame":["bonusch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'bonus-spin-bonanza-v1-1g', + 'Bonus Spin Bonanza (V1.1G)', + 'Dyna', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["bsbonanza"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'bonze-adventure', + 'Bonze Adventure', + 'Taito Corporation Japan', + 1988, + array['Bonze Adventure (World, rev 1)'], + array['Arcade'], + '{"mame":["bonzeadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'boo-boo-donpatchi', + 'Boo Boo Donpatchi', + 'Amuzy Corporation', + 2005, + array['Boo Boo Donpatchi (Japan, ver 1.01)'], + array['Arcade'], + '{"mame":["boobood"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'booby-kids-magnet-system', + 'Booby Kids (Magnet System)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_boob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'boogie-wings', + 'Boogie Wings', + 'Data East Corporation', + 1992, + array['Boogie Wings (Europe v1.5, 92.12.07)'], + array['Arcade'], + '{"mame":["boogwing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/boogwing.cpp"]}'::jsonb + ), + ( + 'book-of-ra', + 'Book Of Ra', + 'Novotech', + null, + array['Book Of Ra (set 1)'], + array['Arcade'], + '{"mame":["bookra"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'book-theatre', + 'Book Theatre', + 'Nazionale Elettronica', + null, + array['Book Theatre (Ver 1.2)'], + array['Arcade'], + '{"mame":["bookthr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'boom', + 'Boom', + 'WMS', + 1998, + array['Boom (Russian)'], + array['Arcade'], + '{"mame":["wmsboom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'boomer-rang-r-genesis', + 'Boomer Rang''r / Genesis', + 'Data East Corporation', + 1983, + array['Boomer Rang''r / Genesis (set 1)'], + array['Arcade'], + '{"mame":["boomrang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/liberate.cpp"]}'::jsonb + ), + ( + 'boong-ga-boong-ga-spank-em', + 'Boong-Ga Boong-Ga (Spank''em!)', + 'Taff System', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["boonggab"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'boot-hill', + 'Boot Hill', + 'Dave Nutting Associates / Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["boothill"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'border-down-gdl-0023a', + 'Border Down (GDL-0023A)', + 'G.Rev', + 2003, + array['Border Down (Rev A) (GDL-0023A)'], + array['Arcade'], + '{"mame":["bdrdown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'borderline', + 'Borderline', + 'Sega', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["brdrline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'borench', + 'Borench', + 'Sega', + 1990, + array['Borench (set 1)'], + array['Arcade'], + '{"mame":["borench"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'boris', + 'Boris', + 'Applied Concepts', + 1978, + array['Boris (rev. 01)'], + array['Arcade'], + '{"mame":["boris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["appliedconcepts/boris.cpp"]}'::jsonb + ), + ( + 'boris-diplomat', + 'Boris Diplomat', + 'Applied Concepts', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["borisdpl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["appliedconcepts/borisdpl.cpp"]}'::jsonb + ), + ( + 'born-to-fight', + 'Born To Fight', + 'International Games', + null, + array['Born To Fight (set 1)'], + array['Arcade'], + '{"mame":["borntofi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/fantland.cpp"]}'::jsonb + ), + ( + 'bosconian-star-destroyer', + 'Bosconian - Star Destroyer', + 'Namco', + 1981, + array['Bosconian - Star Destroyer (version 5)'], + array['Arcade'], + '{"mame":["bosco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/galaga.cpp"]}'::jsonb + ), + ( + 'botanic-english-spanish', + 'Botanic (English / Spanish)', + 'Itisa', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["botanic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["valadon/bagman.cpp"]}'::jsonb + ), + ( + 'bottle-10', + 'Bottle 10', + 'C.M.C.', + 1996, + array['Bottle 10 (Italian, set 1)'], + array['Arcade'], + '{"mame":["bottle10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'bottom-of-the-ninth', + 'Bottom of the Ninth', + 'Konami', + 1989, + array['Bottom of the Ninth (version T)'], + array['Arcade'], + '{"mame":["bottom9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/bottom9.cpp"]}'::jsonb + ), + ( + 'boulder-dash', + 'Boulder Dash', + 'Data East Corporation', + 1985, + array['Boulder Dash (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cbdash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'boulder-dash-max-a-flex', + 'Boulder Dash (Max-A-Flex)', + 'Exidy / First Star Software', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mf_bdash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/maxaflex.cpp"]}'::jsonb + ), + ( + 'boulder-dash-boulder-dash-part-2', + 'Boulder Dash / Boulder Dash Part 2', + 'Data East Corporation (licensed from First Star)', + 1990, + array['Boulder Dash / Boulder Dash Part 2 (World)'], + array['Arcade'], + '{"mame":["bouldash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'bouncing-balls', + 'Bouncing Balls', + 'Comad', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["bballs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/tigeroad.cpp"]}'::jsonb + ), + ( + 'bounty-hunter-gc-tech-co-ltd', + 'Bounty Hunter (GC-Tech Co., LTD)', + 'GC-Tech Co., LTD', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["bntyhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bntyhunt.cpp"]}'::jsonb + ), + ( + 'bowl-o-rama', + 'Bowl-O-Rama', + 'P&P Marketing', + 1991, + array['Bowl-O-Rama (Rev 1.0)'], + array['Arcade'], + '{"mame":["bowlrama"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/capbowl.cpp"]}'::jsonb + ), + ( + 'bowling-alley', + 'Bowling Alley', + 'Midway', + 1978, + '{}'::text[], + array['Sports'], + '{"mame":["bowler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'bowling-gum', + 'Bowling Gum', + '', + null, + '{}'::text[], + array['Sports'], + '{"mame":["bowlgum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enraya.cpp"]}'::jsonb + ), + ( + 'bowling-road', + 'Bowling Road', + 'Nazionale Elettronica', + 2001, + array['Bowling Road (Ver 1.5)'], + array['Sports'], + '{"mame":["bowlroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'bowmen', + 'Bowmen', + 'Ten-Level', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["bowmen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/vigilant.cpp"]}'::jsonb + ), + ( + 'boxer', + 'Boxer', + 'Atari', + 1978, + array['Boxer (prototype)'], + array['Arcade'], + '{"mame":["boxer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/boxer.cpp"]}'::jsonb + ), + ( + 'boxing-bugs', + 'Boxing Bugs', + 'Cinematronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["boxingb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'boxing-mania-ashita-no-joe', + 'Boxing Mania: Ashita no Joe', + 'Konami', + 2001, + array['Boxing Mania: Ashita no Joe (ver JAA)'], + array['Arcade'], + '{"mame":["boxingm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'boxy-boy', + 'Boxy Boy', + 'Namco', + 1990, + array['Boxy Boy (World, SB2)'], + array['Arcade'], + '{"mame":["boxyboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'bra-il', + 'Bra$il', + 'High Video', + 2000, + array['Bra$il (Version 3)'], + array['Arcade'], + '{"mame":["brasil"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'bradley-trainer', + 'Bradley Trainer', + 'Atari', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["bradley"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bzone.cpp"]}'::jsonb + ), + ( + 'brailab-plus', + 'BraiLab Plus', + 'Jozsef and Endre Lukacs', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["braiplus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homelab/braiplus.cpp"]}'::jsonb + ), + ( + 'brain', + 'Brain', + 'Coreland / Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["brain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'brasil-86', + 'Brasil 86', + '', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["brasil86"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'brasil-87', + 'Brasil 87', + '', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["brasil87"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'brasil-89', + 'Brasil 89', + '', + 1989, + array['Brasil 89 (set 1)'], + array['Arcade'], + '{"mame":["brasil89"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'brasil-93', + 'Brasil 93', + '', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["brasil93"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'brave-firefighters', + 'Brave Firefighters', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["braveff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'break-thru', + 'Break Thru', + 'Data East Corporation', + 1986, + array['Break Thru (World)'], + array['Arcade'], + '{"mame":["brkthru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/brkthru.cpp"]}'::jsonb + ), + ( + 'breakers', + 'Breakers', + 'Visco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["breakers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'breakers-revenge', + 'Breakers Revenge', + 'Visco', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["breakrev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'breakout', + 'Breakout', + 'Atari', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["breakout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/pong.cpp"]}'::jsonb + ), + ( + 'brick-people-block-peepoo', + 'Brick People / Block PeePoo', + 'Sega', + 2009, + array['Brick People / Block PeePoo (Ver 1.002)'], + array['Arcade'], + '{"mame":["brickppl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'brick-zone-v6-0-joystick', + 'Brick Zone (v6.0, Joystick)', + 'SunA', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["brickzn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna8.cpp"]}'::jsonb + ), + ( + 'bridge-bidder', + 'Bridge Bidder', + 'Fidelity Electronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["bridgeb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/bridgeb.cpp"]}'::jsonb + ), + ( + 'bridge-challenger', + 'Bridge Challenger', + 'Fidelity Electronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["bridgec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/card.cpp"]}'::jsonb + ), + ( + 'bridge-challenger-iii', + 'Bridge Challenger III', + 'Fidelity Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["bridgec3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/card.cpp"]}'::jsonb + ), + ( + 'bristles-max-a-flex', + 'Bristles (Max-A-Flex)', + 'Exidy / First Star Software', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mf_brist"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/maxaflex.cpp"]}'::jsonb + ), + ( + 'brixian', + 'Brixian', + 'Cheil Computer System', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["brixian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/arkanoid.cpp"]}'::jsonb + ), + ( + 'brodjaga', + 'Brodjaga', + 'bootleg', + null, + array['Brodjaga (Arcade bootleg of ZX Spectrum ''Inspector Gadget and the Circus of Fear'')'], + array['Arcade'], + '{"mame":["brod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/photon2.cpp"]}'::jsonb + ), + ( + 'brute-force', + 'Brute Force', + 'Leland Corporation', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["brutforc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'bu-bu-car-english', + 'Bu Bu Car (English)', + 'IGS', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["bubucar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm2.cpp"]}'::jsonb + ), + ( + 'bubble-2000', + 'Bubble 2000', + 'Afega (Tuning license)', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["bubl2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'bubble-bobble', + 'Bubble Bobble', + 'Taito Corporation', + 1986, + array['Bubble Bobble (Japan, Ver 0.1)'], + array['Platformer', 'Puzzle'], + '{"mame":["bublbobl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/bublbobl.cpp"]}'::jsonb + ), + ( + 'bubble-bobble-ii', + 'Bubble Bobble II', + 'Taito Corporation Japan', + 1994, + array['Bubble Bobble II (Ver 2.6O 1994/12/16)'], + array['Platformer', 'Puzzle'], + '{"mame":["bublbob2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'bubble-memories-the-story-of-bubble-bobble-iii', + 'Bubble Memories: The Story Of Bubble Bobble III', + 'Taito Corporation Japan', + 1995, + array['Bubble Memories: The Story Of Bubble Bobble III (Ver 2.4O 1996/02/15)'], + array['Platformer', 'Puzzle'], + '{"mame":["bubblem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'bubble-torneo', + 'Bubble Torneo', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["btorneo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'bubble-trouble-golly-ghost-2', + 'Bubble Trouble - Golly! Ghost! 2', + 'Namco', + 1992, + array['Bubble Trouble - Golly! Ghost! 2 (World, Rev B)'], + array['Arcade'], + '{"mame":["bubbletr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'bubblen-roulette', + 'Bubblen Roulette', + 'Taito Corporation', + 1997, + array['Bubblen Roulette (Japan, main ver. 1.8, video ver. 1.3)'], + array['Arcade'], + '{"mame":["bubbroul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/sbmjb.cpp"]}'::jsonb + ), + ( + 'bubbles', + 'Bubbles', + 'Williams', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["bubbles"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'buccaneers', + 'Buccaneers', + 'Duintronic', + 1989, + array['Buccaneers (set 1)'], + array['Arcade'], + '{"mame":["buccanrs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/vigilant.cpp"]}'::jsonb + ), + ( + 'buck-rogers-planet-of-zoom', + 'Buck Rogers: Planet of Zoom', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["buckrog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/turbo.cpp"]}'::jsonb + ), + ( + 'bucky-o-hare', + 'Bucky O''Hare', + 'Konami', + 1992, + array['Bucky O''Hare (ver EAB)'], + array['Arcade'], + '{"mame":["bucky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/moo.cpp"]}'::jsonb + ), + ( + 'buena-suerte', + 'Buena Suerte', + '', + 1990, + array['Buena Suerte (Spanish, set 1)'], + array['Arcade'], + '{"mame":["bsuerte"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'buena-suerte-94', + 'Buena Suerte ''94', + 'Entretenimientos GEMINIS', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["bs94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/re900.cpp"]}'::jsonb + ), + ( + 'buggy-boy-speed-buggy', + 'Buggy Boy/Speed Buggy', + 'Tatsumi', + 1985, + array['Buggy Boy/Speed Buggy (cockpit, rev. D)'], + array['Arcade'], + '{"mame":["buggyboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/tx1.cpp"]}'::jsonb + ), + ( + 'buggy-challenge', + 'Buggy Challenge', + 'Taito Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["buggychl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/buggychl.cpp"]}'::jsonb + ), + ( + 'bugs-fever', + 'Bugs Fever', + 'Amcoe', + 2006, + array['Bugs Fever (Version 1.7R CGA)'], + array['Arcade'], + '{"mame":["bugfever"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'bull-fighter', + 'Bull Fighter', + 'Alpha Denshi Co.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bullfgtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/equites.cpp"]}'::jsonb + ), + ( + 'bullet', + 'Bullet', + 'Wave Mate', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wmbullet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wavemate/bullet.cpp"]}'::jsonb + ), + ( + 'bullet-fd1094-317-0041', + 'Bullet (FD1094 317-0041)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["bullet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'bullet-mark', + 'Bullet Mark', + 'Sega', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["bmark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segattl.cpp"]}'::jsonb + ), + ( + 'bullfight-315-5065', + 'Bullfight (315-5065)', + 'Coreland / Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bullfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'bulls-eye-darts', + 'Bulls Eye Darts', + 'Shinkai Inc. (Magic Electronics Inc. license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["bullsdrt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/centiped.cpp"]}'::jsonb + ), + ( + 'bungee-monkey', + 'Bungee Monkey', + 'Novotech', + null, + array['Bungee Monkey (set 1)'], + array['Arcade'], + '{"mame":["bungeem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'bungo-mini-5sx', + 'Bungo mini 5SX', + 'NEC', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mini5sx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/bungo.cpp"]}'::jsonb + ), + ( + 'burger-kids', + 'Burger Kids', + 'Sunwise', + 1995, + array['Burger Kids (Japan)'], + array['Arcade'], + '{"mame":["burgkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/sunwise.cpp"]}'::jsonb + ), + ( + 'burger-time', + 'Burger Time', + 'Data East Corporation', + 1982, + array['Burger Time (Data East set 1)', 'Burger Time (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["btime","cbtime"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp","dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'burglar-x', + 'Burglar X', + 'Unico', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["burglarx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/unico.cpp"]}'::jsonb + ), + ( + 'buriki-one-world-grapple-tournament-99-in-tokyo', + 'Buriki One: World Grapple Tournament ''99 in Tokyo', + 'SNK', + 1999, + array['Buriki One: World Grapple Tournament ''99 in Tokyo (rev.B)'], + array['Arcade'], + '{"mame":["buriki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'burnin-rubber', + 'Burnin'' Rubber', + 'Data East', + 1982, + array['Burnin'' Rubber (DECO Cassette) (US) (set 1)'], + array['Arcade'], + '{"mame":["brubber","cburnrub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp","dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'burning-fight-ngm-018-ngh-018', + 'Burning Fight (NGM-018 ~ NGH-018)', + 'SNK', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["burningf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'burning-force', + 'Burning Force )', + 'Namco', + 1989, + array['Burning Force (Japan, new version (Rev C))'], + array['Arcade'], + '{"mame":["burnforc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'burning-rival', + 'Burning Rival', + 'Sega', + 1992, + array['Burning Rival (World)'], + array['Arcade'], + '{"mame":["brival"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'burning-sanrinsya-burning-tricycle', + 'Burning Sanrinsya - Burning Tricycle', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["b3rinsya"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'buster', + 'Buster', + 'Marian Electronics Ltd.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["buster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/buster.cpp"]}'::jsonb + ), + ( + 'butasan-pig-s-and-bomber-s', + 'Butasan - Pig''s & Bomber''s', + 'NMK (Jaleco license)', + 1987, + array['Butasan - Pig''s & Bomber''s (Japan, English)'], + array['Arcade'], + '{"mame":["butasan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/argus.cpp"]}'::jsonb + ), + ( + 'butterfly-video-game', + 'Butterfly Video Game', + 'Bordun International', + 1995, + array['Butterfly Video Game (version A00)'], + array['Arcade'], + '{"mame":["butrfly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'buttobi-striker', + 'Buttobi Striker', + 'Konami', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["buttobi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'bygone', + 'Bygone', + 'Taito Corporation', + 1985, + array['Bygone (prototype)'], + array['Arcade'], + '{"mame":["bygone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/lkage.cpp"]}'::jsonb + ), + ( + 'c-10', + 'C-10', + 'Cromemco', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["c10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cromemco/c10.cpp"]}'::jsonb + ), + ( + 'c-80', + 'C-80', + 'Joachim Czepa', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["c80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/c80.cpp"]}'::jsonb + ), + ( + 'cabal', + 'Cabal', + 'TAD Corporation', + 1988, + array['Cabal (World, Joystick)'], + array['Arcade'], + '{"mame":["cabal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/cabal.cpp"]}'::jsonb + ), + ( + 'cabaret-show', + 'Cabaret Show', + 'AMT Co. Ltd.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["cabaret"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/cabaret.cpp"]}'::jsonb + ), + ( + 'cachat', + 'Cachat', + 'Taito Corporation', + 1993, + array['Cachat (Japan)'], + array['Arcade'], + '{"mame":["cachat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'cadash', + 'Cadash', + 'Taito Corporation Japan', + 1989, + array['Cadash (World)'], + array['Arcade'], + '{"mame":["cadash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'cadillacs-and-dinosaurs', + 'Cadillacs and Dinosaurs', + 'Capcom', + 1993, + array['Cadillacs and Dinosaurs (World 930201)'], + array['Arcade'], + '{"mame":["dino"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'cai-jin-shen-long', + 'Cai Jin Shen Long', + 'IGS', + 1999, + array['Cai Jin Shen Long (link version, host)', 'Cai Jin Shen Long (link version, extension, S111CN)'], + array['Arcade'], + '{"mame":["cjslh","cjsll"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027_link.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-10-7c-big-game', + 'Cal Omega - Game 10.7c (Big Game)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg107"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-12-7-keno', + 'Cal Omega - Game 12.7 (Keno)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg127"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-12-8-arcade-game', + 'Cal Omega - Game 12.8 (Arcade Game)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg128"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-13-4-nudge', + 'Cal Omega - Game 13.4 (Nudge)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg134"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-14-5-pixels', + 'Cal Omega - Game 14.5 (Pixels)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg145"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-15-9-wild-double-up', + 'Cal Omega - Game 15.9 (Wild Double-Up)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg159"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-16-4-keno', + 'Cal Omega - Game 16.4 (Keno)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg164"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-16-8-keno', + 'Cal Omega - Game 16.8 (Keno)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg168"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-17-0', + 'Cal Omega - Game 17.0', + 'Cal Omega Inc.', + 1983, + array['Cal Omega - Game 17.0 (Amusement Poker)'], + array['Arcade'], + '{"mame":["comg170"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-17-6-nudge', + 'Cal Omega - Game 17.6 (Nudge)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg176"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-18-1-nudge', + 'Cal Omega - Game 18.1 (Nudge)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg181"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-18-3-pixels', + 'Cal Omega - Game 18.3 (Pixels)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg183"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-18-4-pixels', + 'Cal Omega - Game 18.4 (Pixels)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg184"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-18-5-pixels', + 'Cal Omega - Game 18.5 (Pixels)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg185"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-18-6-pixels', + 'Cal Omega - Game 18.6 (Pixels)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg186"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-18-7', + 'Cal Omega - Game 18.7', + 'Cal Omega Inc.', + 1983, + array['Cal Omega - Game 18.7 (Amusement Poker)'], + array['Arcade'], + '{"mame":["comg187"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-20-8-winner-s-choice', + 'Cal Omega - Game 20.8 (Winner''s Choice)', + 'Cal Omega Inc.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["comg208"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-22-7', + 'Cal Omega - Game 22.7', + 'Cal Omega Inc.', + 1984, + array['Cal Omega - Game 22.7 (Amusement Poker, d/d)'], + array['Arcade'], + '{"mame":["comg227"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-23-6-hotline', + 'Cal Omega - Game 23.6 (Hotline)', + 'Cal Omega Inc.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["comg236"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-24-6-hotline', + 'Cal Omega - Game 24.6 (Hotline)', + 'Cal Omega Inc.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["comg246"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-27-2', + 'Cal Omega - Game 27.2', + 'Cal Omega Inc.', + 1985, + array['Cal Omega - Game 27.2 (Keno, amusement)'], + array['Arcade'], + '{"mame":["comg272a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-27-2-keno-gaming', + 'Cal Omega - Game 27.2 (Keno, gaming)', + 'Cal Omega Inc.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["comg272b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-8-0-arcade-black-jack', + 'Cal Omega - Game 8.0 (Arcade Black Jack)', + 'Cal Omega Inc.', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["comg080"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-9-4-keno', + 'Cal Omega - Game 9.4 (Keno)', + 'Cal Omega Inc.', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["comg094"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-system-903-diag-prom', + 'Cal Omega - System 903 Diag.PROM', + 'Cal Omega Inc.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["comg903d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-system-905-diag-prom', + 'Cal Omega - System 905 Diag.PROM', + 'Cal Omega Inc.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["comg905d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'calcune', + 'Calcune', + 'Yuvo', + 1996, + array['Calcune (Japan, prototype)'], + array['Arcade'], + '{"mame":["calcune"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/calcune.cpp"]}'::jsonb + ), + ( + 'caliber-50', + 'Caliber 50', + 'Seta', + 1989, + array['Caliber 50 (Ver. 1.01)'], + array['Arcade'], + '{"mame":["calibr50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'california-chase', + 'California Chase', + 'The Game Room', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["calchase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/calchase.cpp"]}'::jsonb + ), + ( + 'california-games-mega-tech', + 'California Games (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_calga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'california-speed', + 'California Speed', + 'Atari Games', + 1998, + array['California Speed (Version 2.1a Apr 17 1998, GUTS 1.25 Apr 17 1998 / MAIN Apr 17 1998)'], + array['Arcade'], + '{"mame":["calspeed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'calipso', + 'Calipso', + 'Tago Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["calipso"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'calorie-kun-vs-moguranian', + 'Calorie Kun vs Moguranian', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["calorie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/bombjack.cpp"]}'::jsonb + ), + ( + 'cameltry', + 'Cameltry', + 'Taito Corporation Japan', + 1989, + array['Cameltry (World, YM2610)'], + array['Arcade'], + '{"mame":["cameltry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'candy-candy', + 'Candy Candy', + 'Eolith', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["candy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'candy-puzzle-v1-0', + 'Candy Puzzle (v1.0)', + 'CD Express', + 1995, + '{}'::text[], + array['Puzzle'], + '{"mame":["cndypuzl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'cane', + 'Cane', + 'Model Racing', + null, + array['Cane (prototype)'], + array['Arcade'], + '{"mame":["cane"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'cannon-ball-pac-man-hardware', + 'Cannon Ball (Pac-Man Hardware)', + 'Novomatic', + 1985, + '{}'::text[], + array['Classic'], + '{"mame":["cannonbp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'cannon-ball-yun-sung-horizontal', + 'Cannon Ball (Yun Sung, horizontal)', + 'Yun Sung / Soft Vision', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["cannball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsung8.cpp"]}'::jsonb + ), + ( + 'cannon-spike-gun-spike', + 'Cannon Spike / Gun Spike', + 'Psikyo / Capcom', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["cspike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'cannonball', + 'Cannonball', + 'Atari', + 1976, + array['Cannonball (Atari, prototype)'], + array['Arcade'], + '{"mame":["cball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cball.cpp"]}'::jsonb + ), + ( + 'canvas-croquis', + 'Canvas Croquis', + 'SNK', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["canvas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/mainsnk.cpp"]}'::jsonb + ), + ( + 'canyon-bomber', + 'Canyon Bomber', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["canyon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/canyon.cpp"]}'::jsonb + ), + ( + 'capcom-baseball', + 'Capcom Baseball', + 'Capcom', + 1989, + array['Capcom Baseball (Japan)'], + array['Sports'], + '{"mame":["cbasebal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cbasebal.cpp"]}'::jsonb + ), + ( + 'capcom-bowling', + 'Capcom Bowling', + 'Incredible Technologies / Capcom', + 1988, + array['Capcom Bowling (set 1)'], + array['Sports'], + '{"mame":["capbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/capbowl.cpp"]}'::jsonb + ), + ( + 'capcom-fighting-jam', + 'Capcom Fighting Jam', + 'Capcom / Namco', + 2004, + array['Capcom Fighting Jam (JAM1 Ver. A)'], + array['Arcade'], + '{"mame":["fghtjam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'capcom-sports-club', + 'Capcom Sports Club', + 'Capcom', + 1997, + array['Capcom Sports Club (Europe 971017)'], + array['Arcade'], + '{"mame":["csclub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'capcom-vs-snk-2-mark-of-the-millennium-2001-gdl-0008', + 'Capcom Vs. SNK 2: Mark Of The Millennium 2001 (GDL-0008)', + 'Capcom / SNK', + 2001, + array['Capcom Vs. SNK 2: Mark Of The Millennium 2001 (USA) (GDL-0008)'], + array['Fighting'], + '{"mame":["cvs2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'capcom-vs-snk-millennium-fight-2000', + 'Capcom Vs. SNK: Millennium Fight 2000', + 'Capcom / SNK', + 2000, + array['Capcom Vs. SNK: Millennium Fight 2000 (Rev C)'], + array['Fighting'], + '{"mame":["capsnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'capcom-vs-snk-millennium-fight-2000-pro-gdl-0004', + 'Capcom Vs. SNK: Millennium Fight 2000 Pro (GDL-0004)', + 'Capcom / SNK', + 2001, + array['Capcom Vs. SNK: Millennium Fight 2000 Pro (Japan) (GDL-0004)'], + array['Fighting'], + '{"mame":["cvsgd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'capcom-world', + 'Capcom World', + 'Capcom', + 1989, + array['Capcom World (Japan)'], + array['Arcade'], + '{"mame":["cworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'capitan-uncino', + 'Capitan Uncino', + 'Nazionale Elettronica', + 2000, + array['Capitan Uncino (Nazionale Elettronica, Ver 1.2)', 'Capitan Uncino (High Video, version 2)'], + array['Arcade'], + '{"mame":["capunc","cuncino"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp","misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'capitani-coraggiosi', + 'Capitani Coraggiosi', + 'Nazionale Elettronica', + 2001, + array['Capitani Coraggiosi (Ver 1.3)'], + array['Arcade'], + '{"mame":["capcor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'captain-america-and-the-avengers', + 'Captain America and The Avengers', + 'Data East Corporation', + 1991, + array['Captain America and The Avengers (Asia Rev 1.4)'], + array['Arcade'], + '{"mame":["captaven"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco32.cpp"]}'::jsonb + ), + ( + 'captain-commando', + 'Captain Commando', + 'Capcom', + 1991, + array['Captain Commando (World 911202)'], + array['Arcade'], + '{"mame":["captcomm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'captain-flag', + 'Captain Flag', + 'Jaleco', + 1993, + array['Captain Flag (Japan)'], + array['Arcade'], + '{"mame":["captflag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'captain-shark', + 'Captain Shark', + 'Astro Corp. / American Alpha', + 2006, + array['Captain Shark (Ver. CS.01.6, Apr 21 2006)'], + array['Arcade'], + '{"mame":["cptshark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'captain-silver', + 'Captain Silver', + 'Data East Corporation', + 1987, + array['Captain Silver (World)'], + array['Arcade'], + '{"mame":["csilver"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'captain-sky-hawk-playchoice-10', + 'Captain Sky Hawk (PlayChoice-10)', + 'Rare (Nintendo of America license)', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_cshwk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'captain-tomaday', + 'Captain Tomaday', + 'Visco', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["ctomaday"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'car-beena', + 'Car Beena', + 'Sega Toys / Alpine Electronics, Inc.', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["carbeena"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_beena.cpp"]}'::jsonb + ), + ( + 'car-hunt-deep-scan-france', + 'Car Hunt / Deep Scan (France)', + 'Sega', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["carhntds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'car-jamboree', + 'Car Jamboree', + 'Omori Electric Co., Ltd.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["carjmbre"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omori/carjmbre.cpp"]}'::jsonb + ), + ( + 'car-polo', + 'Car Polo', + 'Exidy', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["carpolo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/carpolo.cpp"]}'::jsonb + ), + ( + 'card-line', + 'Card Line', + 'Veltmeijer', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cardline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cardline.cpp"]}'::jsonb + ), + ( + 'caribbean-boule-m1-satellite-board', + 'Caribbean Boule (M1 Satellite board)', + 'Sega', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["carboule"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasm1.cpp"]}'::jsonb + ), + ( + 'carket-ball', + 'Carket Ball', + 'SemiCom', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["carket"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'carnaval-jugando-con-fuego', + 'Carnaval - Jugando con Fuego', + 'E-mu Systems', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["carnaval"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'carnevil-v1-0-3', + 'CarnEvil (v1.0.3)', + 'Midway Games', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["carnevil"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'carnival', + 'Carnival', + 'Astro Corp.', + 2009, + array['Carnival (Astro Corp., US.004.D)', 'Carnival (upright, AY8912 music)'], + array['Arcade'], + '{"mame":["carnivac","carnival"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp","sega/vicdual.cpp"]}'::jsonb + ), + ( + 'carnival-king-v1-00-11', + 'Carnival King (v1.00.11)', + 'Incredible Technologies', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["carnking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'carrera', + 'Carrera', + 'BS Electronics', + null, + array['Carrera (Version 6.7)'], + array['Arcade'], + '{"mame":["carrera"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/carrera.cpp"]}'::jsonb + ), + ( + 'carrier-air-wing', + 'Carrier Air Wing', + 'Capcom', + 1990, + array['Carrier Air Wing (World 901012)'], + array['Arcade'], + '{"mame":["cawing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'cart-fury-championship-racing', + 'CART Fury Championship Racing', + 'Midway Games', + 2000, + array['CART Fury Championship Racing (ver 1.00)'], + array['Racing'], + '{"mame":["cartfury"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'carta-magica', + 'Carta Magica', + '', + null, + array['Carta Magica (Ver 1.8)'], + array['Arcade'], + '{"mame":["cmagica"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'casanova', + 'Casanova', + 'Promat', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["casanova"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["promat/3x3puzzl.cpp"]}'::jsonb + ), + ( + 'cash-crop', + 'Cash Crop', + 'WMS', + 2000, + array['Cash Crop (Russian)'], + array['Arcade'], + '{"mame":["cashcrop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'cash-train-v1-10', + 'Cash Train (v1.10)', + 'Kupidon', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["cashtrn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cupidon.cpp"]}'::jsonb + ), + ( + 'casio-rom-pack-software-list-holder', + 'Casio ROM Pack Software List holder', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["casiorom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/casio_rompack.cpp"]}'::jsonb + ), + ( + 'casiotone-8000', + 'Casiotone 8000', + 'Casio', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ct8000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ct8000.cpp"]}'::jsonb + ), + ( + 'casiotone-fk-1', + 'Casiotone FK-1', + 'Casio', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ctfk1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ct8000.cpp"]}'::jsonb + ), + ( + 'casiotone-mb-1', + 'Casiotone MB-1', + 'Casio', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ctmb1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ct8000.cpp"]}'::jsonb + ), + ( + 'cast-away', + 'Cast Away', + 'Tranex Australia Pty Ltd.', + 1987, + array['Cast Away (dual 6809 GI Australasia PCB)'], + array['Arcade'], + '{"mame":["castawayt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gi6809.cpp"]}'::jsonb + ), + ( + 'castaway-atronic', + 'Castaway (Atronic)', + 'Atronic', + 2002, + array['Castaway (Russia) (Atronic) (set 1)'], + array['Arcade'], + '{"mame":["castaway"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'castle-of-dracula', + 'Castle Of Dracula', + 'Yun Sung (Escape license)', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["cdracula"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'castlevania-playchoice-10', + 'Castlevania (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_cvnia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'cat', + 'Cat', + 'Canon', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["cat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["canon/cat.cpp"]}'::jsonb + ), + ( + 'cat-and-mouse-type-02-program', + 'Cat and Mouse (type 02 program)', + 'Zaccaria', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["catnmous"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/laserbat.cpp"]}'::jsonb + ), + ( + 'catacomb', + 'Catacomb', + 'MTM Games', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["catacomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'catapult', + 'Catapult', + 'Epos Corporation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["catapult"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'catch', + 'Catch', + 'Atari', + 1977, + array['Catch (prototype)'], + array['Arcade'], + '{"mame":["catchp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/avalnche.cpp"]}'::jsonb + ), + ( + 'catherine-wheel', + 'Catherine Wheel', + 'Gamebar', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cwheel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cwheel.cpp"]}'::jsonb + ), + ( + 'cavelon', + 'Cavelon', + 'Jetsoft', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["cavelon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'caveman-ninja', + 'Caveman Ninja', + 'Data East Corporation', + 1991, + array['Caveman Ninja (World ver 4)'], + array['Arcade'], + '{"mame":["cninja"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cninja.cpp"]}'::jsonb + ), + ( + 'ccs-model-2810-cpu-card', + 'CCS Model 2810 CPU card', + 'California Computer Systems', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ccs2810"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ccs/ccs2810.cpp"]}'::jsonb + ), + ( + 'cd-i-mono-i-pal', + 'CD-i (Mono-I) (PAL)', + 'Philips', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["cdimono1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'cd-i-mono-ii-ntsc', + 'CD-i (Mono-II) (NTSC)', + 'Philips', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["cdimono2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'cd-i-490', + 'CD-i 490', + 'Philips', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["cdi490a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'cd-i-910-17p-mini-mmc-pal', + 'CD-i 910-17P Mini-MMC (PAL)', + 'Philips', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["cdi910"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'cd-rom-drive-updater-700a04', + 'CD-ROM Drive Updater (700A04)', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["cr589fwa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'cd-rom-drive-updater-2-0-700b04', + 'CD-ROM Drive Updater 2.0 (700B04)', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["cr589fw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'cd3000i', + 'CD3000i', + 'Akai', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["cd3000i"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/s3000.cpp"]}'::jsonb + ), + ( + 'cd3000xl', + 'CD3000XL', + 'Akai', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["cd3000xl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/s3000.cpp"]}'::jsonb + ), + ( + 'cdtv-pal', + 'CDTV (PAL)', + 'Commodore', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["cdtv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'cdx', + 'CDX', + 'Sega', + 1994, + array['CDX (USA, NTSC)'], + array['Arcade'], + '{"mame":["cdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'celint-2000-superfono-santander-edition', + 'Celint 2000 (Superfono Santander edition)', + 'Olivetti', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["celint2kss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olivetti/celint2k.cpp"]}'::jsonb + ), + ( + 'cellage', + 'Cellage', + 'Yujin / Namco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["cellage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'celviano-ap-10', + 'Celviano AP-10', + 'Casio', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["ap10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ctk551.cpp"]}'::jsonb + ), + ( + 'centipede', + 'Centipede', + 'Atari', + 1980, + array['Centipede (revision 4)'], + array['Classic'], + '{"mame":["centiped"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/centiped.cpp"]}'::jsonb + ), + ( + 'centipede-millipede-missile-command', + 'Centipede / Millipede / Missile Command', + 'Cosmodog / Team Play (licensed from Infogrames via Midway Games West)', + 2001, + array['Centipede / Millipede / Missile Command (rev 1.03)'], + array['Classic'], + '{"mame":["cmmb103"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cmmb.cpp"]}'::jsonb + ), + ( + 'centipede-millipede-missile-command-let-s-go-bowling', + 'Centipede / Millipede / Missile Command / Let''s Go Bowling', + 'Cosmodog / Team Play (licensed from Infogrames via Midway Games West)', + 2002, + array['Centipede / Millipede / Missile Command / Let''s Go Bowling (rev 1.62)'], + array['Sports', 'Classic'], + '{"mame":["cmmb162"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cmmb.cpp"]}'::jsonb + ), + ( + 'cerberus', + 'Cerberus', + 'Cinematronics', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["cerberus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'ceres-1', + 'Ceres-1', + 'Eidgenössische Technische Hochschule Zürich', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["ceres1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ceres/ceres.cpp"]}'::jsonb + ), + ( + 'cfx-9850g', + 'CFX-9850G', + 'Casio', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["cfx9850"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/cfx9850.cpp"]}'::jsonb + ), + ( + 'cgc-7900', + 'CGC 7900', + 'Chromatics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["cgc7900"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chromatics/cgc7900.cpp"]}'::jsonb + ), + ( + 'chack-n-pop', + 'Chack''n Pop', + 'Taito Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["chaknpop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/chaknpop.cpp"]}'::jsonb + ), + ( + 'chain-reaction', + 'Chain Reaction', + 'Data East Corporation', + 1995, + array['Chain Reaction (World, Version 2.2, 1995.09.25)'], + array['Arcade'], + '{"mame":["chainrec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/simpl156.cpp"]}'::jsonb + ), + ( + 'chaku-melo-collection', + 'Chaku Melo Collection', + 'Capcom', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["chakumel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/chakumelo.cpp"]}'::jsonb + ), + ( + 'challenge', + 'Challenge', + 'Krypton / Timorite', + 1996, + array['Challenge (1996 version)'], + array['Arcade'], + '{"mame":["kchal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/legend.cpp"]}'::jsonb + ), + ( + 'challenge-gear', + 'Challenge Gear', + 'Benesse Corporation', + 2002, + array['Challenge Gear (Japan)'], + array['Arcade'], + '{"mame":["chalgear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["benesse/challenge_gear.cpp"]}'::jsonb + ), + ( + 'challenge-girl', + 'Challenge Girl', + 'bootleg', + null, + array['Challenge Girl (Falcon bootleg)'], + array['Arcade'], + '{"mame":["chalgirl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'challenge-golf-j-990326-v1-000', + 'Challenge Golf (J 990326 V1.000)', + 'Sega', + 1999, + '{}'::text[], + array['Sports'], + '{"mame":["chalgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'challenger', + 'Challenger', + 'Centuri', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["challeng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/killcom.cpp"]}'::jsonb + ), + ( + 'chameleon', + 'Chameleon', + 'Jaleco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["chameleo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/lasso.cpp"]}'::jsonb + ), + ( + 'chameleon-24', + 'Chameleon 24', + 'bootleg', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["cham24"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/cham24.cpp"]}'::jsonb + ), + ( + 'chameleon-rx-1', + 'Chameleon RX-1', + 'Digital Sunnil (Covielsa license)', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["chamrx1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/chamrx1.cpp"]}'::jsonb + ), + ( + 'champion-2711', + 'Champion 2711', + 'Unisonic', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["unichamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unisonic/unichamp.cpp"]}'::jsonb + ), + ( + 'champion-3001-regular', + 'Champion 3001 Regular', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ch3001r"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'champion-base-ball', + 'Champion Base Ball', + 'Alpha Denshi Co. (Sega license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["champbas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/champbas.cpp"]}'::jsonb + ), + ( + 'champion-base-ball-part-2', + 'Champion Base Ball Part-2', + 'Alpha Denshi Co. (Sega license)', + 1983, + array['Champion Base Ball Part-2 (set 1)'], + array['Arcade'], + '{"mame":["champbb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/champbas.cpp"]}'::jsonb + ), + ( + 'champion-boxing', + 'Champion Boxing', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["chboxing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000a.cpp"]}'::jsonb + ), + ( + 'champion-italian-pk', + 'Champion Italian PK', + 'bootleg (SGS)', + null, + array['Champion Italian PK (bootleg, blue board)'], + array['Arcade'], + '{"mame":["cpokerpk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspoker.cpp"]}'::jsonb + ), + ( + 'champion-pool-v1-0', + 'Champion Pool (v1.0)', + 'Nova Desitec', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["chmppool"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'champion-pro-wrestling', + 'Champion Pro Wrestling', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["chwrestl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000a.cpp"]}'::jsonb + ), + ( + 'champion-sensory-chess-challenger', + 'Champion Sensory Chess Challenger', + 'Fidelity Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["csc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/csc.cpp"]}'::jsonb + ), + ( + 'champion-skill-with-ability', + 'Champion Skill (with Ability)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["csk227it"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspoker.cpp"]}'::jsonb + ), + ( + 'champion-super-3-v0-35', + 'Champion Super 3 (V0.35)', + '', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["chsuper3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/chsuper.cpp"]}'::jsonb + ), + ( + 'champion-wrestler', + 'Champion Wrestler', + 'Taito Corporation Japan', + 1989, + array['Champion Wrestler (World)'], + array['Arcade'], + '{"mame":["champwr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'championship-bowling', + 'Championship Bowling', + 'Seta / Romstar Inc.', + 1989, + '{}'::text[], + array['Sports'], + '{"mame":["champbwl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/champbwl.cpp"]}'::jsonb + ), + ( + 'championship-sprint', + 'Championship Sprint', + 'Atari Games', + 1986, + array['Championship Sprint (rev 3)'], + array['Racing'], + '{"mame":["csprint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy2.cpp"]}'::jsonb + ), + ( + 'chanbara', + 'Chanbara', + 'Data East Corporation', + 1985, + array['Chanbara (Japan)'], + array['Arcade'], + '{"mame":["chanbara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/chanbara.cpp"]}'::jsonb + ), + ( + 'chanbara-kids', + 'Chanbara Kids', + 'Amuzy Corporation', + 2007, + array['Chanbara Kids (Japan)'], + array['Arcade'], + '{"mame":["cbkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'chance-kun', + 'Chance Kun', + 'Peni', + 1988, + array['Chance Kun (Japan)'], + array['Arcade'], + '{"mame":["chkun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/timeplt.cpp"]}'::jsonb + ), + ( + 'chance-thirty-two', + 'Chance Thirty Two', + 'PAL System Co, Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["chance32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/chance32.cpp"]}'::jsonb + ), + ( + 'change-air-blade', + 'Change Air Blade', + 'Sammy', + 1999, + array['Change Air Blade (Japan)'], + array['Arcade'], + '{"mame":["cairblad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'change-lanes', + 'Change Lanes', + 'Taito America Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["changela"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/changela.cpp"]}'::jsonb + ), + ( + 'changes', + 'Changes', + 'Orca', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["changes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'channel-f', + 'Channel F', + 'Fairchild', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["channelf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fairchild/channelf.cpp"]}'::jsonb + ), + ( + 'channel-f-ii', + 'Channel F II', + 'Fairchild', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["channlf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fairchild/channelf.cpp"]}'::jsonb + ), + ( + 'chao-ji-da-heng-2-v311cn', + 'Chao Ji Da Heng 2 (V311CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cjdh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'chaoji-bie-qi-v205cn', + 'Chaoji Bie Qi (V205CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cjbq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'chaoji-da-lianzhuang', + 'Chaoji Da Lianzhuang', + 'GMS', + 1999, + array['Chaoji Da Lianzhuang (Version 1.1)'], + array['Arcade'], + '{"mame":["cjdlz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'chaoji-da-manguan-ii', + 'Chaoji Da Manguan II', + 'IGS', + 1997, + array['Chaoji Da Manguan II (China, V765C)'], + array['Arcade'], + '{"mame":["sdmg2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'chaoji-daheng-6th', + 'Chaoji Daheng 6th', + 'IGS', + 2001, + array['Chaoji Daheng 6th (set 1)'], + array['Arcade'], + '{"mame":["cjdh6th"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-dou-dizhu-v219cn', + 'Chaoji Dou Dizhu (V219CN)', + 'IGS', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["cjddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-dou-dizhu-v219cn-chaoji-dou-dizhu-jianan-ban-v302cn', + 'Chaoji Dou Dizhu (V219CN) / Chaoji Dou Dizhu Jianan Ban (V302CN)', + 'bootleg (WDF)', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["cjddzs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-dou-dizhu-jiaqiang-ban-s300cn', + 'Chaoji Dou Dizhu Jiaqiang Ban (S300CN)', + 'IGS', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["cjddzp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-dou-dizhu-jiaqiang-ban-s300cn-unknown-second-set', + 'Chaoji Dou Dizhu Jiaqiang Ban (S300CN) / unknown second set', + 'bootleg (WDF)', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cjddzps"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-dou-dizhu-liang-fu-pai-v109cn', + 'Chaoji Dou Dizhu Liang Fu Pai (V109CN)', + 'IGS', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["cjddzlf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-fengdou', + 'Chaoji Fengdou', + 'TJF', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["crzclass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ddz.cpp"]}'::jsonb + ), + ( + 'chaoji-gan-dengyan-v110cn', + 'Chaoji Gan Dengyan (V110CN)', + 'IGS', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["cjgdy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'chaoji-jielong-v100cn', + 'Chaoji Jielong (V100CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cjjl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'chaoji-mingxing', + 'Chaoji Mingxing', + 'TJF', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cjmx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ddz.cpp"]}'::jsonb + ), + ( + 'chaoji-tuolaji-jiaqiang-ban-v206cn', + 'Chaoji Tuolaji Jiaqiang Ban (V206CN)', + 'IGS', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["cjtljp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-zhishi-da-fuweng-1', + 'Chaoji Zhishi Da Fuweng 1', + 'TimeTop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["6578cjz1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'chaoji-zhishi-da-fuweng-2', + 'Chaoji Zhishi Da Fuweng 2', + 'TimeTop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["6578cjz2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'chaos-2', + 'Chaos 2', + 'David Greaves', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["chaos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/chaos.cpp"]}'::jsonb + ), + ( + 'chaos-breaker-v2-02j', + 'Chaos Breaker (v2.02J)', + 'Taito Corporation', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["chaosbrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'chaos-field-gdl-0025', + 'Chaos Field (GDL-0025)', + 'Able', + 2004, + array['Chaos Field (Japan) (GDL-0025)'], + array['Arcade'], + '{"mame":["cfield"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'charlie-ninja', + 'Charlie Ninja', + 'Mitchell', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["charlien"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/simpl156.cpp"]}'::jsonb + ), + ( + 'chase-bombers', + 'Chase Bombers', + 'Taito Corporation Japan', + 1994, + array['Chase Bombers (World)'], + array['Arcade'], + '{"mame":["cbombers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/undrfire.cpp"]}'::jsonb + ), + ( + 'chase-h-q', + 'Chase H.Q.', + 'Taito Corporation Japan', + 1988, + array['Chase H.Q. (World)'], + array['Arcade'], + '{"mame":["chasehq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'chase-h-q-2-v2-0-6-jp', + 'Chase H.Q. 2 (v2.0.6.JP)', + 'Taito Corporation', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["chasehq2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'check-man', + 'Check Man', + 'Zilec-Zenitone', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["checkman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'checker-challenger-model-acr-4-levels', + 'Checker Challenger (model ACR, 4 levels)', + 'Fidelity Electronics', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["checkc4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/cc10.cpp"]}'::jsonb + ), + ( + 'checker-challenger-model-cr-2-levels', + 'Checker Challenger (model CR, 2 levels)', + 'Fidelity Electronics', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["checkc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/checkc2.cpp"]}'::jsonb + ), + ( + 'checkmate', + 'Checkmate', + 'Dave Nutting Associates / Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["checkmat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'cheeky-mouse', + 'Cheeky Mouse', + 'Universal', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["cheekyms"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cheekyms.cpp"]}'::jsonb + ), + ( + 'cheese-chase', + 'Cheese Chase', + 'Art & Magic', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["cheesech"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/artmagic.cpp"]}'::jsonb + ), + ( + 'chequered-flag', + 'Chequered Flag', + 'Konami', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["chqflag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/chqflag.cpp"]}'::jsonb + ), + ( + 'cherry-10', + 'Cherry 10', + 'bootleg', + null, + array['Cherry 10 (bootleg with PIC16F84)'], + array['Arcade'], + '{"mame":["chry10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-bonus-dyna-v1-01-20fev', + 'Cherry Bonus (Dyna v1.01 20fev)', + 'Dyna', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["cbonus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-bonus-2001-v1-1i', + 'Cherry Bonus 2001 (V1.1I)', + 'Dyna', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["cb2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'cherry-bonus-ii-v2-00-06-01', + 'Cherry Bonus II (V2.00 06/01)', + 'Dyna', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["cb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-bonus-iii', + 'Cherry Bonus III', + 'Dyna', + null, + array['Cherry Bonus III (ver.1.40, set 1)'], + array['Arcade'], + '{"mame":["ncb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-bonus-iv-v5-0', + 'Cherry Bonus IV (V5.0)', + 'Dyna', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["cb4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'cherry-bonus-v-five-v1-4', + 'Cherry Bonus V Five (V1.4)', + 'Dyna', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["cb5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'cherry-chance', + 'Cherry Chance', + 'Taito Corporation', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["cchance"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/cchance.cpp"]}'::jsonb + ), + ( + 'cherry-gold-i', + 'Cherry Gold I', + 'bootleg', + null, + array['Cherry Gold I (set 1)'], + array['Arcade'], + '{"mame":["chrygld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master', + 'Cherry Master', + 'Dyna', + 1992, + array['Cherry Master (ver.4, set 1)'], + array['Arcade'], + '{"mame":["cmv4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-91', + 'Cherry Master ''91', + 'Dyna', + 1991, + array['Cherry Master ''91 (ver.1.30)'], + array['Arcade'], + '{"mame":["cmast91"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-92-v1-2d', + 'Cherry Master ''92 (V1.2D)', + 'Dyna', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["cmast92"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-97', + 'Cherry Master ''97', + 'Dyna', + 1996, + array['Cherry Master ''97 (V1.7, set 1)'], + array['Arcade'], + '{"mame":["cmast97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-99-ql-1-v9b-00', + 'Cherry Master ''99 (QL-1 V9B.00)', + 'Dyna', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["cmast99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-ed-96-corsica-cm-v8-23', + 'Cherry Master (ED-96, Corsica CM v8.23)', + 'Corsica', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cmv823"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-ed-98-pick-a-party', + 'Cherry Master (ED-98, Pick-A-Party)', + 'Pick-A-Party Brazil', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cmpap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-i', + 'Cherry Master I', + 'Dyna', + 1991, + array['Cherry Master I (ver.1.01, set 1)'], + array['Arcade'], + '{"mame":["cmaster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-wheel', + 'Cherry Wheel', + 'Assogiochi Assago', + null, + array['Cherry Wheel (Version 1.7)'], + array['Arcade'], + '{"mame":["chewheel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mil4000.cpp"]}'::jsonb + ), + ( + 'chess-2001', + 'Chess 2001', + 'Newcrest Technology / CXG Systems / Intelligent Software', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["ch2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/chess2001.cpp"]}'::jsonb + ), + ( + 'chess-challenge-ii', + 'Chess Challenge II', + 'IGS', + 2002, + array['Chess Challenge II (ver. 1445A)'], + array['Arcade'], + '{"mame":["chessc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chess-challenger', + 'Chess Challenger', + 'Fidelity Electronics', + 1977, + array['Chess Challenger (upgraded version, 3 levels)'], + array['Arcade'], + '{"mame":["cc1","cc3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/cc1.cpp"]}'::jsonb + ), + ( + 'chess-challenger-10', + 'Chess Challenger "10"', + 'Fidelity Electronics', + 1978, + array['Chess Challenger "10" (model CCX, rev. B)'], + array['Arcade'], + '{"mame":["cc10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/cc10.cpp"]}'::jsonb + ), + ( + 'chess-challenger-7', + 'Chess Challenger "7"', + 'Fidelity Electronics', + 1980, + array['Chess Challenger "7" (set 1)'], + array['Arcade'], + '{"mame":["cc7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/cc7.cpp"]}'::jsonb + ), + ( + 'chess-challenger-model-ucc10-10-levels', + 'Chess Challenger (model UCC10, 10 levels)', + 'Fidelity Electronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["cc10c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/cc1.cpp"]}'::jsonb + ), + ( + 'chess-master-model-g-5003-501', + 'Chess-Master (model G-5003-501)', + 'VEB Mikroelektronik "Karl Marx" Erfurt', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["chessmst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/chessmst.cpp"]}'::jsonb + ), + ( + 'chess-master-diamond', + 'Chess-Master Diamond', + 'VEB Mikroelektronik "Karl Marx" Erfurt', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["chessmstdm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/chessmstdm.cpp"]}'::jsonb + ), + ( + 'chesssystem-r30-the-king-2-50', + 'ChessSystem R30 (The King 2.50)', + 'Tasc', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["tascr30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/tasc.cpp"]}'::jsonb + ), + ( + 'chesster-challenger-v1-3', + 'Chesster Challenger (v1.3)', + 'Fidelity Electronics International', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["chesster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/chesster.cpp"]}'::jsonb + ), + ( + 'cheyenne', + 'Cheyenne', + 'Exidy', + 1984, + array['Cheyenne (version 1.0)'], + array['Arcade'], + '{"mame":["cheyenne"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'chibi-maruko-chan-minna-de-sugoroku-asobi-no-maki', + 'Chibi Maruko-chan ~Minna de Sugoroku Asobi~ no Maki', + 'Capcom', + 2005, + array['Chibi Maruko-chan ~Minna de Sugoroku Asobi~ no Maki (Ver.1.00B, 2005/06/22)'], + array['Arcade'], + '{"mame":["mmaruchan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'chic-gum-video', + 'Chic Gum Video', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["chicgum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enraya.cpp"]}'::jsonb + ), + ( + 'chicken-atronic', + 'Chicken (Atronic)', + 'Atronic', + 2002, + array['Chicken (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["chicken"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'chicken-draw-2131-04-u5-1', + 'Chicken Draw (2131-04, U5-1)', + 'Merit', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["chkndraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'chicken-farm', + 'Chicken Farm', + 'LAI Games', + 1999, + array['Chicken Farm (Version 2.0)'], + array['Arcade'], + '{"mame":["cfarm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/lethalj.cpp"]}'::jsonb + ), + ( + 'chicken-shift-11-23-84', + 'Chicken Shift (11/23/84)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["cshift"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'chickendales-atronic', + 'Chickendales (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["chicdale"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'chihiro-change-region-gd-usa-611-0028a', + 'Chihiro Change Region GD USA (611-0028A)', + 'Sega', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["cregchg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'chihiro-firmware-update-for-compact-flash-box-4-01-gdx-0024a', + 'Chihiro Firmware Update For Compact Flash Box (4.01) (GDX-0024A)', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["ccfboxa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'chiller', + 'Chiller', + 'Exidy', + 1986, + array['Chiller (version 3.0)'], + array['Arcade'], + '{"mame":["chiller"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'chilli-con-cash', + 'Chilli Con Cash', + 'Novotech', + null, + array['Chilli Con Cash (set 1)'], + array['Arcade'], + '{"mame":["chillicc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'chimera-beast', + 'Chimera Beast', + 'Jaleco', + 1993, + array['Chimera Beast (Japan, prototype, set 1)'], + array['Arcade'], + '{"mame":["chimerab"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'china-gate', + 'China Gate', + 'Technos Japan (Taito / Romstar license)', + 1988, + array['China Gate (US)'], + array['Arcade'], + '{"mame":["chinagat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/chinagat.cpp"]}'::jsonb + ), + ( + 'china-town', + 'China Town', + '', + 1998, + array['China Town (Ver 1B, Dino4 HW)', 'China Town (Japan)'], + array['Arcade'], + '{"mame":["chinatow","chinatwn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp","dataeast/supbtime.cpp"]}'::jsonb + ), + ( + 'chinese-chess', + 'Chinese Chess', + 'Novag Industries', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["cnchess"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/cnchess.cpp"]}'::jsonb + ), + ( + 'chinese-hero', + 'Chinese Hero', + 'Taiyo System', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["chinhero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/shangkid.cpp"]}'::jsonb + ), + ( + 'chip-n-dale-rescue-rangers-playchoice-10', + 'Chip''n Dale: Rescue Rangers (PlayChoice-10)', + 'Capcom USA (Nintendo of America license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_rrngr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'choky-choky', + 'Choky! Choky!', + 'SemiCom', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["chokchok"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'choplifter-8751-315-5151', + 'Choplifter (8751 315-5151)', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["choplift"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'chopper-i', + 'Chopper I', + 'SNK', + 1988, + array['Chopper I (US Ver 2)'], + array['Arcade'], + '{"mame":["chopper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'choro-q-hyper-racing-5-j-981230-v1-000', + 'Choro Q Hyper Racing 5 (J 981230 V1.000)', + 'Sega / Takara', + 1998, + '{}'::text[], + array['Racing'], + '{"mame":["choroqhr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'chou-zetsurinjin-berabowman', + 'Chou Zetsurinjin Berabowman', + 'Namco', + 1988, + array['Chou Zetsurinjin Berabowman (Japan, Rev C)'], + array['Arcade'], + '{"mame":["berabohm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'choutetsu-brikin-ger-iron-clad', + 'Choutetsu Brikin''ger / Iron Clad', + 'Saurus', + 1996, + array['Choutetsu Brikin''ger / Iron Clad (prototype)'], + array['Arcade'], + '{"mame":["ironclad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'chuckecheese-s-match-game', + 'ChuckECheese''s Match Game', + 'Coastal Amusements', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["cecmatch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dcheese.cpp"]}'::jsonb + ), + ( + 'chuka-taisen-p0-028-a-pcb', + 'Chuka Taisen (P0-028-A PCB)', + 'Taito Corporation Japan', + 1988, + array['Chuka Taisen (World) (P0-028-A PCB)'], + array['Arcade'], + '{"mame":["chukatai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'chusenoh', + 'Chusenoh', + 'Konami', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["chusenoh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'chuugokuryuu-2001-dragon-world-2001', + 'Chuugokuryuu 2001 [Dragon World 2001]', + 'IGS', + 2001, + array['Chuugokuryuu 2001 [Dragon World 2001] (V100 02/21/01 16:05:16, Japan)'], + array['Arcade'], + '{"mame":["dw2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'ciclone', + 'Ciclone', + 'High Video', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["ciclone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'circus-acrobat-tv', + 'Circus / Acrobat TV', + 'Exidy / Taito', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["circus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/circus.cpp"]}'::jsonb + ), + ( + 'circus-charlie', + 'Circus Charlie', + 'Konami', + 1984, + array['Circus Charlie (level select, set 1)'], + array['Arcade'], + '{"mame":["circusc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/circusc.cpp"]}'::jsonb + ), + ( + 'cisco-heat', + 'Cisco Heat', + 'Jaleco', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["cischeat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'cisco-fisco-400', + 'Cisco/Fisco 400', + 'Taito', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["fisco400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 'city-bomber', + 'City Bomber', + 'Konami', + 1987, + array['City Bomber (World)'], + array['Arcade'], + '{"mame":["citybomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'city-connection', + 'City Connection', + 'Jaleco', + 1985, + array['City Connection (set 1)'], + array['Arcade'], + '{"mame":["citycon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/citycon.cpp"]}'::jsonb + ), + ( + 'city-love', + 'City Love', + 'Nichibutsu', + 1986, + array['City Love (Japan 860908)'], + array['Arcade'], + '{"mame":["citylove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.003.sql b/supabase/seed-data/mame-game-catalog.generated.003.sql new file mode 100644 index 0000000..fbdebbf --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.003.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'city-patrolman', + 'City Patrolman', + 'TimeTop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cpatrolm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'ckidzo', + 'Ckidzo', + 'Meadows', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["ckidzo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadwttl.cpp"]}'::jsonb + ), + ( + 'clash-road', + 'Clash-Road', + 'Woodplace Inc.', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["clshroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/clshroad.cpp"]}'::jsonb + ), + ( + 'classic-edition', + 'Classic Edition', + 'Amcoe', + 2004, + array['Classic Edition (Version 1.6E)'], + array['Classic'], + '{"mame":["classice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'classic-max-pocket-mx-10-12-in-1', + 'Classic Max Pocket Mx-10 - 12 in 1', + 'Jungle Soft', + 2007, + array['Classic Max Pocket Mx-10 - 12 in 1 (vertical)'], + array['Classic'], + '{"mame":["cmpmx10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'classic-max-pocket-pcmx11-12-in-1-colour-games-console-horizontal-france', + 'Classic Max Pocket PCMX11 - 12 in 1 Colour Games Console (horizontal, France)', + 'Jungle Soft (Premier Portfolio International license)', + 2007, + '{}'::text[], + array['Classic'], + '{"mame":["cmpmx11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'classic-pci-lp-entrada', + 'Classic/PCI LP "Entrada"', + 'Intel', + 1994, + array['Classic/PCI LP "Entrada" (Intel I420EX Aries chipset)'], + array['Classic'], + '{"mame":["entrada"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/i420ex.cpp"]}'::jsonb + ), + ( + 'clay-pigeon', + 'Clay Pigeon', + 'Exidy', + 1986, + array['Clay Pigeon (version 2.0)'], + array['Arcade'], + '{"mame":["claypign"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'clay-shoot', + 'Clay Shoot', + 'Allied Leisure', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["clayshoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/clayshoo.cpp"]}'::jsonb + ), + ( + 'claybuster', + 'Claybuster', + 'Model Racing', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["claybust"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'clean-sweep', + 'Clean Sweep', + 'Ramtek', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["cleanswp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/ramtek.cpp"]}'::jsonb + ), + ( + 'cleopatra-fortune', + 'Cleopatra Fortune', + 'Taito Corporation', + 1996, + array['Cleopatra Fortune (Ver 2.1J 1996/09/05)'], + array['Arcade'], + '{"mame":["cleopatr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'cleopatra-fortune-plus-gdl-0012', + 'Cleopatra Fortune Plus (GDL-0012)', + 'Altron / Taito', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["cleoftp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'cliff-hanger', + 'Cliff Hanger', + 'Stern Electronics', + 1983, + array['Cliff Hanger (set 1)'], + array['Arcade'], + '{"mame":["cliffhgr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/cliffhgr.cpp"]}'::jsonb + ), + ( + 'cloak-and-dagger', + 'Cloak & Dagger', + 'Atari', + 1983, + array['Cloak & Dagger (rev 5)'], + array['Arcade'], + '{"mame":["cloak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cloak.cpp"]}'::jsonb + ), + ( + 'cloud-9', + 'Cloud 9', + 'Atari', + 1983, + array['Cloud 9 (prototype)'], + array['Arcade'], + '{"mame":["cloud9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cloud9.cpp"]}'::jsonb + ), + ( + 'clown-atronic', + 'Clown (Atronic)', + 'Atronic', + 2002, + array['Clown (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["aclown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'clowns', + 'Clowns', + 'Midway', + 1978, + array['Clowns (rev. 2)'], + array['Arcade'], + '{"mame":["clowns"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'club-card', + 'Club Card', + 'Impera / Mega Tech', + null, + array['Club Card (ver. 1.1 English)'], + array['Arcade'], + '{"mame":["clubcard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'club-kart-for-cycraft-gds-0029a', + 'Club Kart for Cycraft (GDS-0029A)', + 'Sega', + 2003, + array['Club Kart for Cycraft (Rev A) (GDS-0029A)'], + array['Arcade'], + '{"mame":["clubkcyc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'club-kart-prize', + 'Club Kart Prize', + 'Sega', + 2003, + array['Club Kart Prize (Export, Japan, Rev A)'], + array['Arcade'], + '{"mame":["clubkprz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'club-kart-prize-version-b', + 'Club Kart Prize Version B', + 'Sega', + 2004, + array['Club Kart Prize Version B (Export, Japan)'], + array['Arcade'], + '{"mame":["clubkpzb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'club-kart-european-session', + 'Club Kart: European Session', + 'Sega', + 2003, + array['Club Kart: European Session (2003, Rev A)', 'Club Kart: European Session (Rev D)'], + array['Arcade'], + '{"mame":["clubk2k3","clubkrt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'club-ultraman-daichi-boeisen', + 'Club Ultraman - Daichi Boeisen', + 'Banpresto', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["dnjsenso"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/banprestomsz80.cpp"]}'::jsonb + ), + ( + 'cluster-buster', + 'Cluster Buster', + 'Data East Corporation', + 1983, + array['Cluster Buster (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cgraplop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'clutch-hitter-fd1094-317-0176', + 'Clutch Hitter (FD1094 317-0176)', + 'Sega', + 1991, + array['Clutch Hitter (US) (FD1094 317-0176)'], + array['Arcade'], + '{"mame":["cltchitr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'cmi-iix', + 'CMI IIx', + 'Fairlight', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["cmi2x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fairlight/cmi.cpp"]}'::jsonb + ), + ( + 'cobra-command', + 'Cobra Command', + 'Data East', + 1984, + array['Cobra Command (Data East LD, set 1)', 'Cobra-Command (World/US revision 5)'], + array['Arcade'], + '{"mame":["cobra","cobracom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_ld.cpp","dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'cobra-gunship', + 'Cobra Gunship', + 'Meadows', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["cgunship"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadwttl.cpp"]}'::jsonb + ), + ( + 'cobra-the-arcade', + 'Cobra: The Arcade', + 'Namco', + 2005, + array['Cobra: The Arcade (CBR1 Ver. B)'], + array['Arcade'], + '{"mame":["cobrata"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'coco-loco', + 'Coco Loco', + 'Petaco S.A.', + 1981, + array['Coco Loco (set 1)'], + array['Arcade'], + '{"mame":["cocoloco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cocoloco.cpp"]}'::jsonb + ), + ( + 'code-magik-super-7-stealth-game', + 'Code Magik / Super 7 (stealth game)', + 'Voyageur de L''Espace Inc.', + null, + array['Code Magik (Ver 5.5) / Super 7 (stealth game)'], + array['Arcade'], + '{"mame":["codemagik"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/lependu.cpp"]}'::jsonb + ), + ( + 'code-one-dispatch-ver-1-21', + 'Code One Dispatch Ver 1.21', + 'Konami', + 2000, + array['Code One Dispatch Ver 1.21 (ver UAD)'], + array['Arcade'], + '{"mame":["code1d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'coinmaster-keno-y2k-spanish-2000-12-14', + 'Coinmaster Keno (Y2K, Spanish, 2000-12-14)', + 'Coinmaster-Gaming, Ltd.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["cmkenosp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmvga.cpp"]}'::jsonb + ), + ( + 'coinmaster-roulette-p497-v75-y2k-spanish', + 'Coinmaster Roulette P497 V75 (Y2K, Spanish)', + 'Coinmaster-Gaming, Ltd.', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["cmrltv75"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmvga.cpp"]}'::jsonb + ), + ( + 'colony-7', + 'Colony 7', + 'Taito', + 1981, + array['Colony 7 (set 1)'], + array['Arcade'], + '{"mame":["colony7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'color-digital-diary-csf-5550', + 'Color Digital Diary (CSF-5550)', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["csf5550"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'color-match', + 'Color Match', + 'Nova Desitec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["clrmatch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novadesitec/novadesitec_fr002.cpp"]}'::jsonb + ), + ( + 'color-picky-talk-super-denshi-techou', + 'Color Picky Talk - Super Denshi Techou', + 'Casio', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["jd364"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'colorama-p521-english', + 'Colorama (P521, English)', + 'Coinmaster-Gaming, Ltd.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["colorama"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmvga.cpp"]}'::jsonb + ), + ( + 'colour-genie-eg2000', + 'Colour Genie EG2000', + 'EACA', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["cgenie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eaca/cgenie.cpp"]}'::jsonb + ), + ( + 'columbus', + 'Columbus', + 'Novotech', + null, + array['Columbus (set 1)'], + array['Arcade'], + '{"mame":["columbus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'columns', + 'Columns', + 'Sega', + 1990, + array['Columns (World)'], + array['Puzzle'], + '{"mame":["columns"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'columns-97-jet-961209-v1-000', + 'Columns ''97 (JET 961209 V1.000)', + 'Sega', + 1996, + '{}'::text[], + array['Puzzle'], + '{"mame":["colmns97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'columns-mega-tech', + 'Columns (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Puzzle'], + '{"mame":["mt_cols"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'columns-ii-the-voyage-through-time', + 'Columns II: The Voyage Through Time', + 'Sega', + 1990, + array['Columns II: The Voyage Through Time (World)'], + array['Puzzle'], + '{"mame":["columns2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'columns-iii-mega-play', + 'Columns III (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Puzzle'], + '{"mame":["mp_col3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'combat', + 'Combat', + 'Exidy', + 1985, + array['Combat (version 3.0)'], + array['Arcade'], + '{"mame":["combat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'combat-hawk', + 'Combat Hawk', + 'Sanritsu / Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["combh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/bankp.cpp"]}'::jsonb + ), + ( + 'combat-school-joystick', + 'Combat School (joystick)', + 'Konami', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["combatsc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/combatsc.cpp"]}'::jsonb + ), + ( + 'come-back-toto', + 'Come Back Toto', + 'SoftClub', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["toto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'come-on-baby', + 'Come On Baby', + 'ExPotato', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["comebaby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/comebaby.cpp"]}'::jsonb + ), + ( + 'command-war-super-special-battle-and-war-game', + 'Command War - Super Special Battle & War Game', + 'Taito Corporation', + 1992, + array['Command War - Super Special Battle & War Game (Ver 0.0J, prototype)'], + array['Arcade'], + '{"mame":["commandw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'commando', + 'Commando', + 'Capcom', + 1985, + array['Commando (World)'], + array['Arcade'], + '{"mame":["commando"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/commando.cpp"]}'::jsonb + ), + ( + 'commando-sega', + 'Commando (Sega)', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["commsega"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rallyx.cpp"]}'::jsonb + ), + ( + 'comotion', + 'CoMotion', + 'Gremlin', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["comotion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/blockade.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-200-in-1-jl2355', + 'Compact Cyber Arcade - 200 in 1 (JL2355)', + 'Lexibook', + 2013, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-250-in-1-jl2377', + 'Compact Cyber Arcade - 250 in 1 (JL2377)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["jl2377"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-250-in-1-jl2375', + 'Compact Cyber Arcade - 250-in-1 (JL2375)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmc250"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-barbie-jl2365bb', + 'Compact Cyber Arcade - Barbie (JL2365BB)', + 'Lexibook', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcyba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-batman-jl2367bat', + 'Compact Cyber Arcade - Batman (JL2367BAT)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcybt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-cars-jl2360dc-1-120-in-1', + 'Compact Cyber Arcade - Cars (JL2360DC-1, 120-in-1)', + 'Lexibook', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcyco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-cars-jl2365dc', + 'Compact Cyber Arcade - Cars (JL2365DC)', + 'Lexibook', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcycr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-disney-princess-120-in-1', + 'Compact Cyber Arcade - Disney Princess (120-in-1)', + 'Lexibook', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcydp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-disney-princess-jl2367dp-150-in-1', + 'Compact Cyber Arcade - Disney Princess (JL2367DP, 150-in-1)', + 'Lexibook', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcydpn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-finding-dory', + 'Compact Cyber Arcade - Finding Dory', + 'Lexibook', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcyfd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-frozen-jl2365fz', + 'Compact Cyber Arcade - Frozen (JL2365FZ)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcyfz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-lilo-and-stitch-jl2367d', + 'Compact Cyber Arcade - Lilo & Stitch (JL2367D)', + 'Lexibook', + 2021, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcyls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-paw-patrol-jl2367pa', + 'Compact Cyber Arcade - Paw Patrol (JL2367PA)', + 'Lexibook', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcypp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-pj-masks-jl2365pjm', + 'Compact Cyber Arcade - PJ Masks (JL2365PJM)', + 'Lexibook', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcypj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-spider-man-120-in-1', + 'Compact Cyber Arcade - Spider-Man (120-in-1)', + 'Lexibook', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcysp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-spider-man-jl2367sp-150-in-1', + 'Compact Cyber Arcade - Spider-Man (JL2367SP, 150-in-1)', + 'Lexibook', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcyspn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-star-wars-rebels-jl2365sw', + 'Compact Cyber Arcade - Star Wars Rebels (JL2365SW)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcysw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-tv-120-in-1-jl2370', + 'Compact Cyber Arcade TV - 120 in 1 (JL2370)', + 'Lexibook', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["lxccatv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-vision-tv-boy', + 'Compact Vision TV Boy', + 'Gakken', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ctvboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ctvboy.cpp"]}'::jsonb + ), + ( + 'compass-1101', + 'Compass 1101', + 'GRiD Computers', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["grid1101"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gridcomp/gridcomp.cpp"]}'::jsonb + ), + ( + 'compass-ii-1121', + 'Compass II 1121', + 'GRiD Computers', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["grid1121"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gridcomp/gridcomp.cpp"]}'::jsonb + ), + ( + 'competition-golf-final-round', + 'Competition Golf Final Round', + 'Data East Corporation', + 1986, + array['Competition Golf Final Round (World?, revision 3)'], + array['Sports'], + '{"mame":["compgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/compgolf.cpp"]}'::jsonb + ), + ( + 'compis', + 'Compis', + 'Telenova', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["compis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["telenova/compis.cpp"]}'::jsonb + ), + ( + 'compju-ter', + 'CompJU+TEr', + 'Jugend+Technik', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["jtc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/jtc.cpp"]}'::jsonb + ), + ( + 'complex-x', + 'Complex X', + 'Taito America Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["complexx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'compuchess', + 'CompuChess', + 'DataCash Systems / Staid', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["cmpchess"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/compuchess.cpp"]}'::jsonb + ), + ( + 'compuchess-the-second-edition', + 'CompuChess: The Second Edition', + 'DataCash Systems / Staid', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["cmpchess2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/compuchess.cpp"]}'::jsonb + ), + ( + 'compucolor-ii', + 'Compucolor II', + 'Intelligent Systems Corporation', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["compclr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["isc/compucolor.cpp"]}'::jsonb + ), + ( + 'computachess-ii', + 'Computachess II', + 'White and Allcock / CXG Systems / Intelligent Software', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["cpchess2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/computachess2.cpp"]}'::jsonb + ), + ( + 'computer-chess-conic-model-7011', + 'Computer Chess (Conic, model 7011)', + 'Conic', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["cncchess"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/compuchess.cpp"]}'::jsonb + ), + ( + 'computer-chess-conic-model-7012', + 'Computer Chess (Conic, model 7012)', + 'Conic', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["cncchess2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conic_cchess2.cpp"]}'::jsonb + ), + ( + 'computer-chess-conic-model-7013', + 'Computer Chess (Conic, model 7013)', + 'Conic', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["cncchess3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conic_cchess3.cpp"]}'::jsonb + ), + ( + 'computer-mah-jong-yakuman', + 'Computer Mah-jong Yakuman', + 'Nintendo', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["compmahj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/compmahj.cpp"]}'::jsonb + ), + ( + 'computer-othello', + 'Computer Othello', + 'Nintendo', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["cothello"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/cothello.cpp"]}'::jsonb + ), + ( + 'comquest-plus-german', + 'ComQuest Plus (German)', + 'Data Concepts', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["comquest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["teamconcepts/comquest.cpp"]}'::jsonb + ), + ( + 'comx-35-pal', + 'COMX 35 (PAL)', + 'Comx World Operations Ltd', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comx35p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["comx/comx35.cpp"]}'::jsonb + ), + ( + 'concept', + 'Concept', + 'Corvus Systems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["concept"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["concept/concept.cpp"]}'::jsonb + ), + ( + 'conchess', + 'Conchess', + 'Consumenta Computer / Waltham Electronics', + 1982, + array['Conchess (standard, set 1)'], + array['Arcade'], + '{"mame":["conc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conchess.cpp"]}'::jsonb + ), + ( + 'conchess-plymate-amsterdam', + 'Conchess Plymate Amsterdam', + 'Systemhuset / Princhess AB', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["concams"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conchess.cpp"]}'::jsonb + ), + ( + 'conchess-plymate-glasgow-plus', + 'Conchess Plymate Glasgow Plus', + 'Systemhuset / Princhess AB', + 1984, + array['Conchess Plymate Glasgow Plus (set 1)'], + array['Arcade'], + '{"mame":["concglap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conchess.cpp"]}'::jsonb + ), + ( + 'conchess-plymate-victoria', + 'Conchess Plymate Victoria', + 'Systemhuset / Princhess AB', + 1990, + array['Conchess Plymate Victoria (prototype)'], + array['Arcade'], + '{"mame":["concvicp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conchess.cpp"]}'::jsonb + ), + ( + 'conchess-princhess-glasgow', + 'Conchess Princhess Glasgow', + 'Systemhuset / Princhess AB', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["concgla"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conchess.cpp"]}'::jsonb + ), + ( + 'confidential-mission-gds-0001', + 'Confidential Mission (GDS-0001)', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["confmiss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'congo-bongo', + 'Congo Bongo', + 'Sega', + 1983, + array['Congo Bongo (Rev C, 2 board stack)'], + array['Arcade'], + '{"mame":["congo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/zaxxon.cpp"]}'::jsonb + ), + ( + 'conqueror', + 'Conqueror', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["conquer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'conquest', + 'Conquest', + 'Williams / Vid Kidz', + 1982, + array['Conquest (prototype)'], + array['Arcade'], + '{"mame":["conquest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'console-colour-disney-s-planes-jl2800pl', + 'Console Colour - Disney''s Planes (JL2800PL)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxccplan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'console-colour-minnie-mouse-jl2800mn', + 'Console Colour - Minnie Mouse (JL2800MN)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxccminn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'constellation', + 'Constellation', + 'Novag Industries / Intelligent Heuristic Programming', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["const"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/const.cpp"]}'::jsonb + ), + ( + 'constellation-expert', + 'Constellation Expert', + 'Novag Industries / Intelligent Heuristic Programming', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["cexpert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/cexpert.cpp"]}'::jsonb + ), + ( + 'constellation-forte', + 'Constellation Forte', + 'Novag Industries / Intelligent Heuristic Programming', + 1986, + array['Constellation Forte (version A)'], + array['Arcade'], + '{"mame":["cfortea"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/cforte.cpp"]}'::jsonb + ), + ( + 'constellation-junior', + 'Constellation Junior', + 'Novag Industries / Intelligent Heuristic Programming', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["constjr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/constjr.cpp"]}'::jsonb + ), + ( + 'continental-circus', + 'Continental Circus', + 'Taito Corporation Japan', + 1987, + array['Continental Circus (World)'], + array['Arcade'], + '{"mame":["contcirc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'contra', + 'Contra', + 'Konami', + 1987, + array['Contra (US / Asia, set 1)', 'Contra (Conny bootleg of Mega Drive version)'], + array['Shooter', 'Platformer'], + '{"mame":["contra","contrambc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/contra.cpp","sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'contra-playchoice-10', + 'Contra (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1988, + '{}'::text[], + array['Shooter', 'Platformer'], + '{"mame":["pc_cntra"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'contra-3-the-alien-wars-nintendo-super-system', + 'Contra 3: The Alien Wars (Nintendo Super System)', + 'Konami', + 1992, + '{}'::text[], + array['Shooter', 'Platformer'], + '{"mame":["nss_con3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'cookie-and-bibi', + 'Cookie & Bibi', + 'SemiCom', + 1995, + array['Cookie & Bibi (set 1)'], + array['Arcade'], + '{"mame":["cookbib"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'cookie-and-bibi-2', + 'Cookie & Bibi 2', + 'SemiCom', + 1996, + array['Cookie & Bibi 2 (English, set 1)'], + array['Arcade'], + '{"mame":["cookbib2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'cookie-and-bibi-3', + 'Cookie & Bibi 3', + 'SemiCom', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["cookbib3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'cool-104', + 'Cool 104', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["cool104"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab88.cpp"]}'::jsonb + ), + ( + 'cool-minigame-collection', + 'Cool Minigame Collection', + 'SemiCom', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["coolmini"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'cool-pool', + 'Cool Pool', + 'Catalina', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["coolpool"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coolpool.cpp"]}'::jsonb + ), + ( + 'cool-riders', + 'Cool Riders', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["coolridr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/coolridr.cpp"]}'::jsonb + ), + ( + 'coolboy-rs-18-280-in-1', + 'Coolboy RS-18 (280 in 1)', + 'CoolBoy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_cb280"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'coolboy-rs-8-168-in-1', + 'CoolBoy RS-8 168 in 1', + 'CoolBoy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cbrs8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'cop-01', + 'Cop 01', + 'Nichibutsu', + 1985, + array['Cop 01 (set 1)'], + array['Arcade'], + '{"mame":["cop01"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cop01.cpp"]}'::jsonb + ), + ( + 'cops', + 'Cops', + 'Atari Games', + 1994, + array['Cops (USA)'], + array['Arcade'], + '{"mame":["cops"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cops.cpp"]}'::jsonb + ), + ( + 'cops-n-robbers', + 'Cops''n Robbers', + 'Atari', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["copsnrob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/copsnrob.cpp"]}'::jsonb + ), + ( + 'cosmac-microkit', + 'COSMAC Microkit', + 'RCA', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["microkit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rca/microkit.cpp"]}'::jsonb + ), + ( + 'cosmac-vip-vp-711', + 'Cosmac VIP (VP-711)', + 'RCA', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["vip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rca/vip.cpp"]}'::jsonb + ), + ( + 'cosmic-alien', + 'Cosmic Alien', + 'Universal', + 1979, + array['Cosmic Alien (version II, set 1)'], + array['Arcade'], + '{"mame":["cosmica"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmic.cpp"]}'::jsonb + ), + ( + 'cosmic-avenger', + 'Cosmic Avenger', + 'Universal', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["cavenger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/ladybug.cpp"]}'::jsonb + ), + ( + 'cosmic-chasm', + 'Cosmic Chasm', + 'Cinematronics / GCE', + 1983, + array['Cosmic Chasm (set 1)'], + array['Arcade'], + '{"mame":["cchasm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cchasm.cpp"]}'::jsonb + ), + ( + 'cosmic-cop', + 'Cosmic Cop', + 'Irem', + 1991, + array['Cosmic Cop (World)'], + array['Arcade'], + '{"mame":["cosmccop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'cosmic-guerilla', + 'Cosmic Guerilla', + 'Universal', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["cosmicg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmicg.cpp"]}'::jsonb + ), + ( + 'cosmic-smash', + 'Cosmic Smash', + 'Sega', + 2000, + array['Cosmic Smash (Rev A)'], + array['Arcade'], + '{"mame":["csmash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'cosmo', + 'Cosmo', + 'TDS & MINTS', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["cosmo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'cosmo-gang-the-puzzle', + 'Cosmo Gang the Puzzle', + 'Namco', + 1992, + array['Cosmo Gang the Puzzle (US)'], + array['Puzzle'], + '{"mame":["cgangpzl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'cosmo-gang-the-video', + 'Cosmo Gang the Video', + 'Namco', + 1991, + array['Cosmo Gang the Video (US)'], + array['Arcade'], + '{"mame":["cosmogng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'cosmo-police-galivan-12-26-1985', + 'Cosmo Police Galivan (12/26/1985)', + 'Nichibutsu', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["galivan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/galivan.cpp"]}'::jsonb + ), + ( + 'cosmos', + 'Cosmos', + 'Century Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["cosmos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'cosplay-tengoku-7-super-kogal-ranking', + 'Cosplay Tengoku 7 - Super Kogal Ranking', + 'Nichibutsu/eic', + 1999, + array['Cosplay Tengoku 7 - Super Kogal Ranking (Japan)'], + array['Arcade'], + '{"mame":["csplayh7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'cotton-fd1094-317-0181a', + 'Cotton (FD1094 317-0181a)', + 'Success / Sega', + 1991, + array['Cotton (set 4, World) (FD1094 317-0181a)'], + array['Arcade'], + '{"mame":["cotton"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'cotton-2-juet-970902-v1-000', + 'Cotton 2 (JUET 970902 V1.000)', + 'Success', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["cotton2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'cotton-boomerang-juet-980709-v1-000', + 'Cotton Boomerang (JUET 980709 V1.000)', + 'Success', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["cottonbm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'counter-run-ns6201-a-1988-3', + 'Counter Run (NS6201-A 1988.3)', + 'Nihon System (Sega license)', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["countrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freekick.cpp"]}'::jsonb + ), + ( + 'counter-steer', + 'Counter Steer', + 'Data East Corporation', + 1985, + array['Counter Steer (Japan)'], + array['Arcade'], + '{"mame":["cntsteer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cntsteer.cpp"]}'::jsonb + ), + ( + 'country-club', + 'Country Club', + 'SNK', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["countryc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'country-club-classic-v1-10-03-apr-1997', + 'Country Club Classic (v1.10 03-apr-1997)', + 'Creative Electronics And Software', + 1997, + '{}'::text[], + array['Classic'], + '{"mame":["ccclass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/cesclass.cpp"]}'::jsonb + ), + ( + 'country-girl', + 'Country Girl', + 'Royal Denshi', + 1984, + array['Country Girl (Japan set 1)'], + array['Arcade'], + '{"mame":["cntrygrl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/jangou.cpp"]}'::jsonb + ), + ( + 'cow-tipping-shake-cattle-and-roll', + 'Cow Tipping - Shake Cattle & Roll', + 'Game Refuge / Team Play', + 2004, + array['Cow Tipping - Shake Cattle & Roll (set 1)'], + array['Arcade'], + '{"mame":["cowtipp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cowtipping.cpp"]}'::jsonb + ), + ( + 'cps-2000', + 'CPS-2000', + 'Casio', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["cps2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/cps2000.cpp"]}'::jsonb + ), + ( + 'cps1-multi-game', + 'CPS1 Multi Game', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cps1mult"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'cps3-multi-game-bootleg-for-hd6417095-type-sh2-v4', + 'CPS3 Multi-game bootleg for HD6417095 type SH2 (V4)', + 'bootleg', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["cps3boot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'crack-down', + 'Crack Down', + 'Sega', + 1989, + array['Crack Down (World, Floppy Based, FD1094 317-0058-04c)'], + array['Arcade'], + '{"mame":["crkdown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'crack-down-mega-tech', + 'Crack Down (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_crack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'crackin-dj', + 'Crackin'' DJ', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["crackndj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'crackin-dj-part-2', + 'Crackin'' DJ Part 2', + 'Sega', + 2001, + array['Crackin'' DJ Part 2 (Japan)'], + array['Arcade'], + '{"mame":["crakndj2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'crackshot', + 'Crackshot', + 'Exidy', + 1985, + array['Crackshot (version 2.0)'], + array['Arcade'], + '{"mame":["cracksht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'craft', + 'Craft', + 'Linus Åkesson', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["craft"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/lft_craft.cpp"]}'::jsonb + ), + ( + 'crash', + 'Crash', + 'Exidy', + 1979, + array['Crash (set 1)'], + array['Arcade'], + '{"mame":["crash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/circus.cpp"]}'::jsonb + ), + ( + 'crash-n-score-stock-car', + 'Crash ''n Score/Stock Car', + 'Atari', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["crashnsc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'crater-raider', + 'Crater Raider', + 'Bally Midway', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["crater"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'crayon-shinchan-orato-asobo', + 'Crayon Shinchan Orato Asobo', + 'Taito Corporation', + 1993, + array['Crayon Shinchan Orato Asobo (Japan)'], + array['Arcade'], + '{"mame":["qcrayon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'crazy-balloon', + 'Crazy Balloon', + 'Taito Corporation', + 1980, + array['Crazy Balloon (set 1)'], + array['Arcade'], + '{"mame":["crbaloon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/crbaloon.cpp"]}'::jsonb + ), + ( + 'crazy-balls-nat', + 'Crazy Balls (NAT)', + 'Electronic Games Systems / NAT', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["crazybal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crazybal.cpp"]}'::jsonb + ), + ( + 'crazy-bell-v1-2d', + 'Crazy Bell (V1.2D)', + 'Dyna', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["crzybell"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'crazy-bonus-2002', + 'Crazy Bonus 2002', + 'bootleg (Crazy Co.)', + 1997, + array['Crazy Bonus 2002 (Ver. 1, Sang-Ho HW, set 1)', 'Crazy Bonus 2002 (Ver. 1, dual game)'], + array['Arcade'], + '{"mame":["crazybon","crazybonb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'crazy-bugs', + 'Crazy Bugs', + 'IGS', + 2009, + array['Crazy Bugs (V204US)'], + array['Arcade'], + '{"mame":["crzybugs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'crazy-bugs-ii', + 'Crazy Bugs II', + 'IGS', + null, + array['Crazy Bugs II (V102US)'], + array['Arcade'], + '{"mame":["crzybug2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'crazy-circus', + 'Crazy Circus', + 'Astro Corp.', + 2007, + array['Crazy Circus (Ver. US.01.7)'], + array['Arcade'], + '{"mame":["crzcircus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'crazy-climber', + 'Crazy Climber', + 'Nichibutsu', + 1980, + array['Crazy Climber (US set 1)'], + array['Arcade'], + '{"mame":["cclimber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'crazy-climber-2', + 'Crazy Climber 2', + 'Nichibutsu', + 1988, + array['Crazy Climber 2 (Japan)'], + array['Arcade'], + '{"mame":["cclimbr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/armedf.cpp"]}'::jsonb + ), + ( + 'crazy-cross', + 'Crazy Cross', + 'Konami', + 1994, + array['Crazy Cross (ver EAA)'], + array['Arcade'], + '{"mame":["crzcross"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'crazy-dou-di-zhu', + 'Crazy Dou Di Zhu', + 'Sealy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["crzyddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_m16c.cpp"]}'::jsonb + ), + ( + 'crazy-fight', + 'Crazy Fight', + 'Subsino', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["crazyfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'crazy-fruits-blue-atronic', + 'Crazy Fruits Blue (Atronic)', + 'Atronic', + 2002, + array['Crazy Fruits Blue (Russia) (Atronic) (set 1)'], + array['Arcade'], + '{"mame":["cfblue"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'crazy-fruits-green-atronic', + 'Crazy Fruits Green (Atronic)', + 'Atronic', + 2002, + array['Crazy Fruits Green (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["cfgreen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'crazy-kong', + 'Crazy Kong', + 'Kyoei / Falcon', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["ckong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'crazy-kong-part-ii', + 'Crazy Kong Part II', + 'Falcon', + 1981, + array['Crazy Kong Part II (set 1)'], + array['Arcade'], + '{"mame":["ckongpt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'crazy-monkey', + 'Crazy Monkey', + 'Igrosoft', + 2003, + array['Crazy Monkey (100311 World)'], + array['Arcade'], + '{"mame":["czmon_13"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'crazy-monkey-2', + 'Crazy Monkey 2', + 'Igrosoft', + 2010, + array['Crazy Monkey 2 (100310 World)'], + array['Arcade'], + '{"mame":["crzmon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'crazy-rally', + 'Crazy Rally', + 'Tecfri', + 1985, + array['Crazy Rally (set 1)'], + array['Arcade'], + '{"mame":["crzrally"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/holeland.cpp"]}'::jsonb + ), + ( + 'crazy-taxi', + 'Crazy Taxi', + 'Sega', + 1999, + '{}'::text[], + array['Racing'], + '{"mame":["crzytaxi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'crazy-taxi-high-roller-gdx-0002b', + 'Crazy Taxi High Roller (GDX-0002B)', + 'Sega / Hitmaker', + 2003, + array['Crazy Taxi High Roller (Rev B) (GDX-0002B)'], + array['Racing'], + '{"mame":["crtaxihr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'crazy-war', + 'Crazy War', + 'Eolith', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["crazywar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/vegaeo.cpp"]}'::jsonb + ), + ( + 'crazzy-clownz', + 'Crazzy Clownz', + 'LAI Games', + 1999, + array['Crazzy Clownz (Version 1.0)'], + array['Arcade'], + '{"mame":["cclownz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/lethalj.cpp"]}'::jsonb + ), + ( + 'creatures-of-the-sea', + 'Creatures of the Sea', + 'ECM', + 2005, + array['Creatures of the Sea (20050328 USA 6.3)'], + array['Arcade'], + '{"mame":["cots"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'crime-city', + 'Crime City', + 'Taito Corporation Japan', + 1989, + array['Crime City (World)'], + array['Arcade'], + '{"mame":["crimec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'crime-fighters', + 'Crime Fighters', + 'Konami', + 1989, + array['Crime Fighters (World 2 players)'], + array['Arcade'], + '{"mame":["crimfght"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/crimfght.cpp"]}'::jsonb + ), + ( + 'crime-patrol-v1-51', + 'Crime Patrol (v1.51)', + 'American Laser Games', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["crimepat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'crime-patrol-2-drug-wars-v1-3', + 'Crime Patrol 2: Drug Wars (v1.3)', + 'American Laser Games', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["crimep2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'crisis-zone', + 'Crisis Zone', + 'Namco', + 1999, + array['Crisis Zone (World, CSZO4 Ver. B)'], + array['Arcade'], + '{"mame":["crszone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'critter-crusher-ea-951204-v1-000', + 'Critter Crusher (EA 951204 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["critcrsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'croaky-karaoke-16-in-1', + 'Croaky Karaoke 16-in-1', + '', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["croaky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'croquis', + 'Croquis', + 'Deniam', + 1996, + array['Croquis (Korea)'], + array['Arcade'], + '{"mame":["croquis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/deniam.cpp"]}'::jsonb + ), + ( + 'cross-pang', + 'Cross Pang', + 'F2 System', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["crospang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/crospang.cpp"]}'::jsonb + ), + ( + 'cross-puzzle', + 'Cross Puzzle', + '', + null, + '{}'::text[], + array['Puzzle'], + '{"mame":["crospuzl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crospuzl.cpp"]}'::jsonb + ), + ( + 'crossbow', + 'Crossbow', + 'Exidy', + 1983, + array['Crossbow (version 2.0)'], + array['Arcade'], + '{"mame":["crossbow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'crossed-swords-alm-002-alh-002', + 'Crossed Swords (ALM-002 ~ ALH-002)', + 'Alpha Denshi Co.', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["crsword"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'crossed-swords-2', + 'Crossed Swords 2', + 'bootleg (Razoola)', + 1996, + array['Crossed Swords 2 (bootleg of CD version)'], + array['Arcade'], + '{"mame":["crswd2bl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'croupier-playmark-roulette-v-20-05', + 'Croupier (Playmark Roulette v.20.05)', + 'Playmark', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["croupier"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'crowns-golf-834-5419-04', + 'Crowns Golf (834-5419-04)', + 'Nasco Japan', + 1984, + '{}'::text[], + array['Sports'], + '{"mame":["crgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nasco/crgolf.cpp"]}'::jsonb + ), + ( + 'crowns-golf-in-hawaii', + 'Crowns Golf in Hawaii', + 'Nasco Japan', + 1985, + '{}'::text[], + array['Sports'], + '{"mame":["crgolfhi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nasco/crgolf.cpp"]}'::jsonb + ), + ( + 'crude-buster', + 'Crude Buster', + 'Data East Corporation', + 1990, + array['Crude Buster (World FX version)'], + array['Arcade'], + '{"mame":["cbuster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cbuster.cpp"]}'::jsonb + ), + ( + 'cruis-n-exotica', + 'Cruis''n Exotica', + 'Midway', + 1999, + array['Cruis''n Exotica (version 2.4)'], + array['Racing'], + '{"mame":["crusnexo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midzeus.cpp"]}'::jsonb + ), + ( + 'cruis-n-usa-v4-5', + 'Cruis''n USA (v4.5)', + 'Midway', + 1994, + '{}'::text[], + array['Racing'], + '{"mame":["crusnusa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midvunit.cpp"]}'::jsonb + ), + ( + 'cruis-n-world-v2-5', + 'Cruis''n World (v2.5)', + 'Midway', + 1996, + '{}'::text[], + array['Racing'], + '{"mame":["crusnwld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midvunit.cpp"]}'::jsonb + ), + ( + 'cruisin-5-cruise-back', + 'Cruisin 5: Cruise Back', + 'Abyss', + 2023, + '{}'::text[], + array['Arcade'], + '{"mame":["cruisin5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/arkanoid.cpp"]}'::jsonb + ), + ( + 'crush-roller', + 'Crush Roller', + 'Alpha Denshi Co. / Kural Samno Electric, Ltd.', + 1981, + array['Crush Roller (set 1)'], + array['Arcade'], + '{"mame":["crush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'crusher-makochan', + 'Crusher Makochan', + 'Takumi', + 1999, + array['Crusher Makochan (Japan)'], + array['Arcade'], + '{"mame":["crusherm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'crypt-killer-gq420-uaa', + 'Crypt Killer (GQ420 UAA)', + 'Konami', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["cryptklr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigq.cpp"]}'::jsonb + ), + ( + 'crystal-castles', + 'Crystal Castles', + 'Atari', + 1983, + array['Crystal Castles (version 4)'], + array['Arcade'], + '{"mame":["ccastles"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/ccastles.cpp"]}'::jsonb + ), + ( + 'crystal-colours-cmc-hardware', + 'Crystal Colours (CMC hardware)', + 'J.C.D. srl', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["crystal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'crystal-gal', + 'Crystal Gal', + 'Nichibutsu', + 1986, + array['Crystal Gal (Japan 860512)'], + array['Arcade'], + '{"mame":["crystalg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'crystal-gal-2', + 'Crystal Gal 2', + 'Nichibutsu', + 1986, + array['Crystal Gal 2 (Japan 860620)'], + array['Arcade'], + '{"mame":["crystal2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'crystals-colours', + 'Crystals Colours', + 'JCD', + 1998, + array['Crystals Colours (Ver 1.02)'], + array['Arcade'], + '{"mame":["crystalc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/snookr10.cpp"]}'::jsonb + ), + ( + 'ctk-2100', + 'CTK-2100', + 'Casio', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["ctk2100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ctk2000.cpp"]}'::jsonb + ), + ( + 'ctk-530', + 'CTK-530', + 'Casio', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["ctk530"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ctk551.cpp"]}'::jsonb + ), + ( + 'ctk-551', + 'CTK-551', + 'Casio', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["ctk551"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ctk551.cpp"]}'::jsonb + ), + ( + 'ctk-601', + 'CTK-601', + 'Casio', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["ctk601"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ctk551.cpp"]}'::jsonb + ), + ( + 'cuatro-en-linea', + 'Cuatro en Linea', + 'Compumatic / CIC Play', + 1991, + array['Cuatro en Linea (rev. A-07)'], + array['Arcade'], + '{"mame":["4enlinea"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enlinea.cpp"]}'::jsonb + ), + ( + 'cube-quest-01-04-84', + 'Cube Quest (01/04/84)', + 'Simutrek', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["cubeqst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cubeqst.cpp"]}'::jsonb + ), + ( + 'cubx', + 'CUBX', + 'ASUS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["asuscubx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ez2d.cpp"]}'::jsonb + ), + ( + 'cuby-bop', + 'Cuby Bop', + 'Hot-B Co., Ltd.', + null, + array['Cuby Bop (location test)'], + array['Arcade'], + '{"mame":["cubybop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'cue-brick', + 'Cue Brick', + 'Konami', + 1989, + array['Cue Brick (World, version D)'], + array['Arcade'], + '{"mame":["cuebrick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt.cpp"]}'::jsonb + ), + ( + 'cuore-1', + 'Cuore 1', + 'C.M.C.', + 1996, + array['Cuore 1 (Italian, set 1)'], + array['Arcade'], + '{"mame":["cuoreuno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'curve-ball', + 'Curve Ball', + 'Mylstar', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["curvebal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'cut-the-rope', + 'Cut The Rope', + 'ICE', + 2016, + '{}'::text[], + array['Arcade'], + '{"mame":["cutrope"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/cutrope.cpp"]}'::jsonb + ), + ( + 'cute-fighter', + 'Cute Fighter', + 'SemiCom', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["cutefght"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dreamwld.cpp"]}'::jsonb + ), + ( + 'cutie-q', + 'Cutie Q', + 'Namco', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["cutieq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'cuty-line', + 'Cuty Line', + 'Dyna', + 1991, + array['Cuty Line (LC-88, ver.1.01)'], + array['Arcade'], + '{"mame":["cutyline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cuty-line-limited', + 'Cuty Line Limited', + 'Dyna / TAB Austria', + 1991, + array['Cuty Line Limited (ver.1.30)'], + array['Arcade'], + '{"mame":["cll"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cybattler', + 'Cybattler', + 'Jaleco', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["cybattlr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'cyber-arcade-pocket-disney-princess-jl1895dp', + 'Cyber Arcade Pocket - Disney Princess (JL1895DP)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcypkdp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'cyber-arcade-pocket-frozen-jl1895fz', + 'Cyber Arcade Pocket - Frozen (JL1895FZ)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcypkfz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'cyber-arcade-pocket-paw-patrol-jl1895pa', + 'Cyber Arcade Pocket - Paw Patrol (JL1895PA)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcypkpp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'cyber-arcade-pocket-spider-man-jl1895sp-2', + 'Cyber Arcade Pocket - Spider-Man (JL1895SP-2)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcypksp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'cyber-arcade-pocket-jl1895', + 'Cyber Arcade Pocket (JL1895)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'cyber-commando', + 'Cyber Commando', + 'Namco', + 1994, + array['Cyber Commando (Japan, CY1)'], + array['Arcade'], + '{"mame":["cybrcomm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'cyber-console-center-200-in-1-jl2050', + 'Cyber Console Center 200-in-1 (JL2050)', + 'LexiBook / JungleTac / NiceCode', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jl2050"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'cyber-cycles', + 'Cyber Cycles', + 'Namco', + 1995, + array['Cyber Cycles (World, CB2 Ver.C)'], + array['Arcade'], + '{"mame":["cybrcycc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'cyber-police-eswat-fd1094-317-0130', + 'Cyber Police ESWAT (FD1094 317-0130)', + 'Sega', + 1989, + array['Cyber Police ESWAT (set 4, World) (FD1094 317-0130)'], + array['Arcade'], + '{"mame":["eswat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'cyber-police-eswat-enhanced-special-weapons-and-tactics-mega-tech', + 'Cyber Police ESWAT: Enhanced Special Weapons and Tactics (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_eswat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'cyber-sled', + 'Cyber Sled', + 'Namco', + 1993, + array['Cyber Sled (CY2, World)'], + array['Arcade'], + '{"mame":["cybsled"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21_c67.cpp"]}'::jsonb + ), + ( + 'cyber-tank-v1-4', + 'Cyber Tank (v1.4)', + 'Coreland', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["cybertnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cybertnk.cpp"]}'::jsonb + ), + ( + 'cyber-troopers-virtual-on-twin-export', + 'Cyber Troopers Virtual-On - Twin (Export)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["von"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'cyber-troopers-virtual-on-4-force', + 'Cyber Troopers Virtual-On 4: Force', + 'Sega / Hitmaker', + 2001, + array['Cyber Troopers Virtual-On 4: Force (Rev E)'], + array['Arcade'], + '{"mame":["von4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'cyber-troopers-virtual-on-oratorio-tangram', + 'Cyber Troopers Virtual-On: Oratorio Tangram', + 'Sega', + 1998, + array['Cyber Troopers Virtual-On: Oratorio Tangram (Revision B)'], + array['Arcade'], + '{"mame":["von2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'cyber-troopers-virtual-on-oratorio-tangram-m-s-b-s-ver-5-66-2000-edition', + 'Cyber Troopers Virtual-On: Oratorio Tangram M.S.B.S. ver 5.66 2000 Edition', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["vonot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'cyber-lip-ngm-010', + 'Cyber-Lip (NGM-010)', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["cyberlip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'cyberball', + 'Cyberball', + 'Atari Games', + 1988, + array['Cyberball (rev 4)'], + array['Arcade'], + '{"mame":["cyberbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cyberbal.cpp"]}'::jsonb + ), + ( + 'cyberbots-fullmetal-madness', + 'Cyberbots: Fullmetal Madness', + 'Capcom', + 1995, + array['Cyberbots: Fullmetal Madness (Europe 950424)'], + array['Arcade'], + '{"mame":["cybots"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'cyberstorm', + 'Cyberstorm', + 'Atari Games', + 1993, + array['Cyberstorm (prototype)'], + array['Arcade'], + '{"mame":["cybstorm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cybstorm.cpp"]}'::jsonb + ), + ( + 'cybiko-classic-v1', + 'Cybiko Classic (V1)', + 'Cybiko Inc', + 2000, + '{}'::text[], + array['Classic'], + '{"mame":["cybikov1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cybiko/cybiko.cpp"]}'::jsonb + ), + ( + 'cycle-maabou', + 'Cycle Maabou', + 'Taito Corporation', + 1984, + array['Cycle Maabou (Japan)'], + array['Arcade'], + '{"mame":["cyclemb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/cyclemb.cpp"]}'::jsonb + ), + ( + 'cycle-shooting', + 'Cycle Shooting', + 'Taito', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["cyclshtg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/nycaptor.cpp"]}'::jsonb + ), + ( + 'cycle-warriors', + 'Cycle Warriors', + 'Tatsumi', + 1991, + array['Cycle Warriors (rev C)'], + array['Arcade'], + '{"mame":["cyclwarr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/cyclwarr.cpp"]}'::jsonb + ), + ( + 'cyvern-the-dragon-weapons', + 'Cyvern - The Dragon Weapons', + 'Kaneko', + 1998, + array['Cyvern - The Dragon Weapons (US)'], + array['Arcade'], + '{"mame":["cyvern"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'cz-1', + 'CZ-1', + 'Casio', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["cz1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/cz1.cpp"]}'::jsonb + ), + ( + 'cz-101', + 'CZ-101', + 'Casio', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["cz101"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/cz101.cpp"]}'::jsonb + ), + ( + 'cz-230s', + 'CZ-230S', + 'Casio', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["cz230s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/cz230s.cpp"]}'::jsonb + ), + ( + 'czernyj-korabl', + 'Czernyj Korabl', + 'bootleg', + null, + array['Czernyj Korabl (Arcade bootleg of ZX Spectrum ''Blackbeard'')'], + array['Arcade'], + '{"mame":["black"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/photon2.cpp"]}'::jsonb + ), + ( + 'd-cat16-mega-drive-handheld', + 'D-CAT16 (Mega Drive handheld)', + 'Firecore', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dcat16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_firecore.cpp"]}'::jsonb + ), + ( + 'd-con', + 'D-Con', + 'Success', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["dcon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/dcon.cpp"]}'::jsonb + ), + ( + 'd-day', + 'D-Day', + 'Jaleco', + 1984, + array['D-Day (Jaleco, set 1)'], + array['Arcade'], + '{"mame":["ddayjlc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/dday.cpp"]}'::jsonb + ), + ( + 'd-day-olympia', + 'D-Day (Olympia)', + 'Olympia', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["dday"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympia/dday.cpp"]}'::jsonb + ), + ( + 'd-d-crew-fd1094-317-0190', + 'D. D. Crew (FD1094 317-0190)', + 'Sega', + 1991, + array['D. D. Crew (World, 3 Players) (FD1094 317-0190)'], + array['Arcade'], + '{"mame":["ddcrew"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'd9-500-in-1-handheld-game-console', + 'D9 500 in 1 Handheld Game Console', + '', + 2021, + '{}'::text[], + array['Arcade'], + '{"mame":["d9_500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'da-bai-sha', + 'Da Bai Sha', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dbsha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'da-bai-sha-h-b', + 'Da Bai Sha (H.B.)', + 'H.B.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dbshahb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/bmcpokr.cpp"]}'::jsonb + ), + ( + 'da-fu-weng-iii-v130li', + 'Da Fu Weng III (V130LI)', + 'IGS', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["dafuwng3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'da-huangguan', + 'Da Huangguan', + 'IGS', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["dahuangg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'dacholer', + 'Dacholer', + 'Nichibutsu', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dacholer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/dacholer.cpp"]}'::jsonb + ), + ( + 'dahua-xiyou-v201cn', + 'Dahua Xiyou (V201CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dahuaxy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'dai-3-wakusei', + 'Dai 3 Wakusei', + 'Sun Electronics', + 1979, + array['Dai 3 Wakusei (Japan)'], + array['Arcade'], + '{"mame":["dai3wksi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/dai3wksi.cpp"]}'::jsonb + ), + ( + 'dai-personal-computer', + 'DAI Personal Computer', + 'Data Applications International', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["dai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dai/dai.cpp"]}'::jsonb + ), + ( + 'dai-dai-kakumei', + 'Dai-Dai-Kakumei', + 'SystemBit', + 2004, + array['Dai-Dai-Kakumei (Japan)'], + array['Arcade'], + '{"mame":["dai2kaku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/realbrk.cpp"]}'::jsonb + ), + ( + 'daifugo', + 'Daifugo', + 'Seta Kikaku / Sega (Esco Trading Co license)', + 1983, + array['Daifugo (Japan)'], + array['Arcade'], + '{"mame":["daifugo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/speedatk.cpp"]}'::jsonb + ), + ( + 'daikaiju-no-gyakushu', + 'Daikaiju no Gyakushu', + 'Taito', + 1986, + array['Daikaiju no Gyakushu (rev 1)'], + array['Arcade'], + '{"mame":["daikaiju"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/lsasquad.cpp"]}'::jsonb + ), + ( + 'daioh', + 'Daioh', + 'Athena', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["daioh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'daisu-kiss', + 'Daisu-Kiss', + 'Konami', + 1996, + array['Daisu-Kiss (ver JAA)'], + array['Arcade'], + '{"mame":["daiskiss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'daisyarin', + 'Daisyarin', + 'Best System', + 1989, + array['Daisyarin (Japan)'], + array['Arcade'], + '{"mame":["daisyari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'daitoride', + 'Daitoride', + 'Metro', + 1995, + array['Daitoride (Japan)'], + array['Arcade'], + '{"mame":["daitorid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'dakkochan-house-mc-8123b-317-5014', + 'DakkoChan House (MC-8123B, 317-5014)', + 'White Board', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["dakkochn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'dam-dam-boy-on-dedicated-pcb', + 'Dam Dam Boy (on dedicated PCB)', + 'Konami', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["ddboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'dambusters', + 'Dambusters', + 'South West Research', + 1981, + array['Dambusters (US, set 1)'], + array['Arcade'], + '{"mame":["dambustr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/dambustr.cpp"]}'::jsonb + ), + ( + 'dame-sensory-challenger', + 'Dame Sensory Challenger', + 'Fidelity Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["damesc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/dames.cpp"]}'::jsonb + ), + ( + 'dan-ku-ga', + 'Dan-Ku-Ga', + 'Taito Corporation', + 1994, + array['Dan-Ku-Ga (Ver 0.0J 1994/12/13, prototype)'], + array['Arcade'], + '{"mame":["dankuga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'dance-2000-hot-2000-jin-bao-tv-dancing-carpet-sy-2000-04', + 'Dance 2000 / Hot 2000 (Jin Bao TV Dancing Carpet, SY-2000-04)', + 'Shenzhen Soyin Electric Appliance Ind. Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dnce2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'dance-86-4-funky-radio-station-e01-j-a-a-2005040400', + 'DANCE 86.4 FUNKY RADIO STATION (E01:J:A:A:2005040400)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["dance864"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-2nd-mix', + 'Dance Dance Revolution 2nd Mix', + 'Konami', + 1999, + array['Dance Dance Revolution 2nd Mix (GN895 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddr2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-3rd-mix-ver-korea2', + 'Dance Dance Revolution 3rd Mix - Ver.Korea2', + 'Konami', + 2000, + array['Dance Dance Revolution 3rd Mix - Ver.Korea2 (GN887 VER. KBA)'], + array['Rhythm'], + '{"mame":["ddr3mk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-3rd-mix-plus', + 'Dance Dance Revolution 3rd Mix Plus', + 'Konami', + 2000, + array['Dance Dance Revolution 3rd Mix Plus (G*A22 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddr3mp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-4th-mix', + 'Dance Dance Revolution 4th Mix', + 'Konami', + 2000, + array['Dance Dance Revolution 4th Mix (G*A33 VER. AAA)'], + array['Rhythm'], + '{"mame":["ddr4m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-4th-mix-plus', + 'Dance Dance Revolution 4th Mix Plus', + 'Konami', + 2000, + array['Dance Dance Revolution 4th Mix Plus (G*A34 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddr4mp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-4th-mix-plus-solo', + 'Dance Dance Revolution 4th Mix Plus Solo', + 'Konami', + 2000, + array['Dance Dance Revolution 4th Mix Plus Solo (G*A34 VER. JBA)'], + array['Rhythm'], + '{"mame":["ddr4mps"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-4th-mix-solo', + 'Dance Dance Revolution 4th Mix Solo', + 'Konami', + 2000, + array['Dance Dance Revolution 4th Mix Solo (G*A33 VER. ABA)'], + array['Rhythm'], + '{"mame":["ddr4ms"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-5th-mix', + 'Dance Dance Revolution 5th Mix', + 'Konami', + 2001, + array['Dance Dance Revolution 5th Mix (G*A27 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddr5m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-disney-mix', + 'Dance Dance Revolution Disney Mix', + 'Majesco (licensed from Konami, Disney)', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrdismx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-extreme', + 'Dance Dance Revolution Extreme', + 'Konami', + 2002, + array['Dance Dance Revolution Extreme (G*C36 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddrextrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-karaoke-mix', + 'Dance Dance Revolution Karaoke Mix', + 'Konami', + 1999, + array['Dance Dance Revolution Karaoke Mix (GQ921 VER. JBB)'], + array['Rhythm'], + '{"mame":["ddrkara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-karaoke-mix-2', + 'Dance Dance Revolution Karaoke Mix 2', + 'Konami', + 2000, + array['Dance Dance Revolution Karaoke Mix 2 (GQ947 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddrkara2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-kids-gqan4-jaa', + 'Dance Dance Revolution Kids (GQAN4 JAA)', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigs.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-solo-2000', + 'Dance Dance Revolution Solo 2000', + 'Konami', + 1999, + array['Dance Dance Revolution Solo 2000 (GC905 VER. AAA)'], + array['Rhythm'], + '{"mame":["ddrs2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-solo-bass-mix', + 'Dance Dance Revolution Solo Bass Mix', + 'Konami', + 1999, + array['Dance Dance Revolution Solo Bass Mix (GQ894 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddrsbm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-strawberry-shortcake', + 'Dance Dance Revolution Strawberry Shortcake', + 'Majesco (licensed from Konami)', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrstraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-supernova-fdh-a-a-a-2006071300', + 'Dance Dance Revolution SuperNOVA (FDH:A:A:A:2006071300)', + 'Konami', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrsna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-supernova-fdh-j-a-a-2006090600', + 'Dance Dance Revolution SuperNOVA (FDH:J:A:A:2006090600)', + 'Konami', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrsnj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-supernova-fdh-u-a-a-2006072400', + 'Dance Dance Revolution SuperNOVA (FDH:U:A:A:2006072400)', + 'Konami', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrsnu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-supernova-2-gdj-a-a-a-2007100800', + 'Dance Dance Revolution SuperNOVA 2 (GDJ:A:A:A:2007100800)', + 'Konami', + 2007, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrsn2a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-supernova-2-gdj-j-a-a-2007100800', + 'Dance Dance Revolution SuperNOVA 2 (GDJ:J:A:A:2007100800)', + 'Konami', + 2007, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrsn2j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-supernova-2-gdj-u-a-a-2007100800', + 'Dance Dance Revolution SuperNOVA 2 (GDJ:U:A:A:2007100800)', + 'Konami', + 2007, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrsn2u"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-usa', + 'Dance Dance Revolution USA', + 'Konami', + 2000, + array['Dance Dance Revolution USA (G*A44 VER. UAA)'], + array['Rhythm'], + '{"mame":["ddrusa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-freaks', + 'Dance Freaks', + 'Konami', + 2000, + array['Dance Freaks (G*874 VER. KAA)'], + array['Arcade'], + '{"mame":["dncfrks"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-maniax-2nd-mix', + 'Dance Maniax 2nd Mix', + 'Konami', + 2000, + array['Dance Maniax 2nd Mix (G*A39 VER. JAA)'], + array['Arcade'], + '{"mame":["dmx2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-maniax-2nd-mix-append-j-paradise', + 'Dance Maniax 2nd Mix Append J-Paradise', + 'Konami', + 2001, + array['Dance Maniax 2nd Mix Append J-Paradise (G*A38 VER. JAA)'], + array['Arcade'], + '{"mame":["dmx2majp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'danchi-de-hanafuda-j-990607-v1-400', + 'Danchi de Hanafuda (J 990607 V1.400)', + 'Altron (Tecmo license)', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["danchih"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'dancing-expert', + 'Dancing Expert', + 'Daidaixing', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dancexpt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'dancing-eyes', + 'Dancing Eyes', + 'Namco', + 1996, + array['Dancing Eyes (World, DC2/VER.B)'], + array['Arcade'], + '{"mame":["danceyes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'dancing-fever-gold-j-000821-v2-001', + 'Dancing Fever Gold (J 000821 V2.001)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["dfeverg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'dancing-spirit-atronic', + 'Dancing Spirit (Atronic)', + 'Atronic', + 2002, + array['Dancing Spirit (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["dncsprt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'dancing-stage-internet-ranking-ver', + 'Dancing Stage - Internet Ranking Ver', + 'Konami', + 1999, + array['Dancing Stage - Internet Ranking Ver (GC845 VER. EBA)'], + array['Arcade'], + '{"mame":["dstage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dancing-stage-euro-mix', + 'Dancing Stage Euro Mix', + 'Konami', + 2000, + array['Dancing Stage Euro Mix (G*936 VER. EAA)'], + array['Arcade'], + '{"mame":["dsem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dancing-stage-euro-mix-2', + 'Dancing Stage Euro Mix 2', + 'Konami', + 2002, + array['Dancing Stage Euro Mix 2 (G*C23 VER. EAA)'], + array['Arcade'], + '{"mame":["dsem2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dancing-stage-featuring-disney-s-rave-gca37jaa', + 'Dancing Stage Featuring Disney''s Rave (GCA37JAA)', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["dsfdr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dancing-stage-featuring-dreams-come-true', + 'Dancing Stage featuring Dreams Come True', + 'Konami', + 1999, + array['Dancing Stage featuring Dreams Come True (GC910 VER. JCA)'], + array['Arcade'], + '{"mame":["dsfdct"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dancing-stage-featuring-true-kiss-destination', + 'Dancing Stage featuring TRUE KiSS DESTiNATiON', + 'Konami', + 1999, + array['Dancing Stage featuring TRUE KiSS DESTiNATiON (G*884 VER. JAA)'], + array['Arcade'], + '{"mame":["dsftkd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dancing-stage-supernova-fdh-e-a-a-2006072500', + 'Dancing Stage SuperNOVA (FDH:E:A:A:2006072500)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["dstagesn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'danger-express', + 'Danger Express', + 'Atari Games', + 1992, + array['Danger Express (prototype)'], + array['Arcade'], + '{"mame":["dangerex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarig42.cpp"]}'::jsonb + ), + ( + 'danger-zone', + 'Danger Zone', + 'Cinematronics', + 1986, + array['Danger Zone (rev 2)'], + array['Arcade'], + '{"mame":["dangerz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'dangerous-curves', + 'Dangerous Curves', + 'Taito', + 1995, + array['Dangerous Curves (Ver 2.9 O)'], + array['Arcade'], + '{"mame":["dangcurv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitojc.cpp"]}'::jsonb + ), + ( + 'dangerous-dungeons', + 'Dangerous Dungeons', + 'The Game Room', + 1992, + array['Dangerous Dungeons (set 1)'], + array['Arcade'], + '{"mame":["ddungeon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'dangerous-seed', + 'Dangerous Seed', + 'Namco', + 1989, + array['Dangerous Seed (Japan)'], + array['Arcade'], + '{"mame":["dangseed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'danny-sullivan-s-indy-heat', + 'Danny Sullivan''s Indy Heat', + 'Leland Corporation', + 1991, + array['Danny Sullivan''s Indy Heat (rev 1)'], + array['Arcade'], + '{"mame":["indyheat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'danz-kara-bs-888', + 'DanZ Kara (BS-888)', + 'Game Star', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["danzkara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'daphor-32', + 'Daphor 32', + 'Dasit S.p.A.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["daphor32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/daphor32.cpp"]}'::jsonb + ), + ( + 'darius', + 'Darius', + 'Taito Corporation Japan', + 1986, + array['Darius (World, rev 2)'], + array['Shooter'], + '{"mame":["darius"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/darius.cpp"]}'::jsonb + ), + ( + 'darius-gaiden-silver-hawk', + 'Darius Gaiden - Silver Hawk', + 'Taito Corporation Japan', + 1994, + array['Darius Gaiden - Silver Hawk (Ver 2.5O 1994/09/19)'], + array['Shooter'], + '{"mame":["dariusg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'darius-gaiden-silver-hawk-extra-version', + 'Darius Gaiden - Silver Hawk Extra Version', + 'Taito Corporation', + 1994, + array['Darius Gaiden - Silver Hawk Extra Version (Ver 2.7J 1995/03/06) (Official Hack)'], + array['Shooter'], + '{"mame":["dariusgx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'darius-ii-triple-screen', + 'Darius II (triple screen)', + 'Taito Corporation', + 1989, + array['Darius II (triple screen) (Japan, rev 1)'], + array['Shooter'], + '{"mame":["darius2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/ninjaw.cpp"]}'::jsonb + ), + ( + 'dark-edge', + 'Dark Edge', + 'Sega', + 1992, + array['Dark Edge (World)'], + array['Arcade'], + '{"mame":["darkedge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'dark-horse-legend', + 'Dark Horse Legend', + 'Konami', + 1998, + array['Dark Horse Legend (GX706 VER. JAA)'], + array['Arcade'], + '{"mame":["darkhleg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dark-planet', + 'Dark Planet', + 'Stern Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["darkplnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scobra.cpp"]}'::jsonb + ), + ( + 'dark-seal', + 'Dark Seal', + 'Data East Corporation', + 1990, + array['Dark Seal (World revision 3)'], + array['Arcade'], + '{"mame":["darkseal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/darkseal.cpp"]}'::jsonb + ), + ( + 'dark-seal-8-liner', + 'Dark Seal (8-liner)', + 'bootleg (Vegas)', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["drkseal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/carrera.cpp"]}'::jsonb + ), + ( + 'dark-tower', + 'Dark Tower', + 'The Game Room', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["darktowr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'dark-warrior', + 'Dark Warrior', + 'Century Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["darkwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'darkstalkers-the-night-warriors', + 'Darkstalkers: The Night Warriors', + 'Capcom', + 1994, + array['Darkstalkers: The Night Warriors (Europe 940705)'], + array['Fighting'], + '{"mame":["dstlk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'darwin-4078', + 'Darwin 4078', + 'Data East Corporation', + 1986, + array['Darwin 4078 (Japan)'], + array['Arcade'], + '{"mame":["darwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/brkthru.cpp"]}'::jsonb + ), + ( + 'dash', + 'Dash!', + '', + 1998, + array['Dash! (A37, ver 1998/10/22)'], + array['Arcade'], + '{"mame":["dash_a37"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'datamax-8000', + 'Datamax 8000', + 'Datamax', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["dmax8000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/dmax8000.cpp"]}'::jsonb + ), + ( + 'datum', + 'Datum', + 'Gammatron', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["datum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/datum.cpp"]}'::jsonb + ), + ( + 'david-crane-s-amazing-tennis-nintendo-super-system', + 'David Crane''s Amazing Tennis (Nintendo Super System)', + 'Absolute Entertainment Inc.', + 1992, + '{}'::text[], + array['Sports'], + '{"mame":["nss_aten"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'daytona-usa', + 'Daytona USA', + 'Sega', + 1994, + array['Daytona USA (Revision A)'], + array['Racing'], + '{"mame":["daytona"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'daytona-usa-2-battle-on-the-edge', + 'Daytona USA 2: Battle on the Edge', + 'Sega', + 1998, + array['Daytona USA 2: Battle on the Edge (Revision A)'], + array['Racing'], + '{"mame":["daytona2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'daytona-usa-2-power-edition', + 'Daytona USA 2: Power Edition', + 'Sega', + 1998, + '{}'::text[], + array['Racing'], + '{"mame":["dayto2pe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'dazzler', + 'Dazzler', + 'Century Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["dazzler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'db32016', + 'DB32016', + 'National Semiconductor', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["db32016"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["natsemi/ns32kdb.cpp"]}'::jsonb + ), + ( + 'dct11-em', + 'DCT11-EM', + 'Digital Equipment Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dct11em"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/dct11em.cpp"]}'::jsonb + ), + ( + 'dd-9-digital-percussion', + 'DD-9 Digital Percussion', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["dd9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr150.cpp"]}'::jsonb + ), + ( + 'ddrmax-dance-dance-revolution-6th-mix', + 'DDRMAX - Dance Dance Revolution 6th Mix', + 'Konami', + 2001, + array['DDRMAX - Dance Dance Revolution 6th Mix (G*B19 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddrmax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'ddrmax2-dance-dance-revolution-7th-mix', + 'DDRMAX2 - Dance Dance Revolution 7th Mix', + 'Konami', + 2002, + array['DDRMAX2 - Dance Dance Revolution 7th Mix (G*B20 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddrmax2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dead-angle', + 'Dead Angle', + 'Seibu Kaihatsu', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["deadang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/deadang.cpp"]}'::jsonb + ), + ( + 'dead-connection', + 'Dead Connection', + 'Taito Corporation Japan', + 1992, + array['Dead Connection (World)'], + array['Arcade'], + '{"mame":["deadconx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'dead-eye', + 'Dead Eye', + 'Meadows Games, Inc.', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["deadeye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadows.cpp"]}'::jsonb + ), + ( + 'dead-eye-gv054-uaa01', + 'Dead Eye (GV054 UAA01)', + 'Konami', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["kdeadeye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'dead-or-alive', + 'Dead or Alive', + 'Tecmo', + 1996, + array['Dead or Alive (Model 2B, Revision C)'], + array['Arcade'], + '{"mame":["doa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'dead-or-alive-2-millennium', + 'Dead or Alive 2 Millennium', + 'Tecmo', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["doa2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'death-crimson-ox', + 'Death Crimson OX', + 'Ecole Software', + 2000, + array['Death Crimson OX (USA)'], + array['Arcade'], + '{"mame":["deathcox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'death-race', + 'Death Race', + 'Exidy', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["deathrac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidyttl.cpp"]}'::jsonb + ), + ( + 'deathsmiles', + 'Deathsmiles', + 'Cave (AMI license)', + 2007, + array['Deathsmiles (Japan, 2007/10/09 MASTER VER)'], + array['Arcade'], + '{"mame":["deathsml"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'deathsmiles-ii-makai-no-merry-christmas', + 'Deathsmiles II: Makai no Merry Christmas', + 'Cave', + 2009, + array['Deathsmiles II: Makai no Merry Christmas (2009/10/14 MASTER VER 4.00)'], + array['Arcade'], + '{"mame":["deathsm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cavepc.cpp"]}'::jsonb + ), + ( + 'deathsmiles-megablack-label', + 'Deathsmiles MegaBlack Label', + 'Cave (AMI license)', + 2008, + array['Deathsmiles MegaBlack Label (Japan, 2008/10/06 MEGABLACK LABEL VER)'], + array['Arcade'], + '{"mame":["dsmbl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'dec-2000-model-300-axp', + 'DEC 2000 Model 300 AXP', + 'Digital Equipment Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["d2k300axp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/jensen.cpp"]}'::jsonb + ), + ( + 'dec-2000-model-500-axp', + 'DEC 2000 Model 500 AXP', + 'Digital Equipment Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["d2k500axp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/jensen.cpp"]}'::jsonb + ), + ( + 'decathlete-juet-960709-v1-001', + 'Decathlete (JUET 960709 V1.001)', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["decathlt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'decision-mate-v', + 'Decision Mate V', + 'NCR', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dmv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ncr/dmv.cpp"]}'::jsonb + ), + ( + 'decmate-ii-pc278', + 'DECmate II (PC278)', + 'Digital Equipment Corporation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["decmate2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/decmate2.cpp"]}'::jsonb + ), + ( + 'decmate-iii-pc238', + 'DECmate III (PC238)', + 'Digital Equipment Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["decmate3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/decmate2.cpp"]}'::jsonb + ), + ( + 'deco-cassette-system', + 'DECO Cassette System', + 'Data East Corporation', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["decocass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'deco-cassette-system-rom-multigame-darksoft-v17', + 'DECO Cassette System ROM Multigame (Darksoft, v17)', + 'bootleg (Darksoft)', + 2022, + '{}'::text[], + array['Arcade'], + '{"mame":["decodark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'deco-cassette-system-rom-multigame-david-widel', + 'DECO Cassette System ROM Multigame (David Widel)', + 'bootleg (David Widel)', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["decomult"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'decpc-axp-150', + 'DECpc AXP 150', + 'Digital Equipment Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["dpcaxp150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/jensen.cpp"]}'::jsonb + ), + ( + 'decstation-2100', + 'DECstation 2100', + 'Digital Equipment Corporation', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["ds2100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/kn01.cpp"]}'::jsonb + ), + ( + 'decstation-3100', + 'DECstation 3100', + 'Digital Equipment Corporation', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["ds3100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/kn01.cpp"]}'::jsonb + ), + ( + 'decstation-5000-133', + 'DECstation 5000/133', + 'Digital Equipment Corporation', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ds5k133"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/kn02.cpp"]}'::jsonb + ), + ( + 'dectalk-dtc-01', + 'DECtalk DTC-01', + 'Digital Equipment Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dectalk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/dectalk.cpp"]}'::jsonb + ), + ( + 'dectalk-dtc-03', + 'DECtalk DTC-03', + 'Digital Equipment Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["dtc03"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/dtc03.cpp"]}'::jsonb + ), + ( + 'decwriter-iii-la120', + 'DECwriter III (LA120)', + 'Digital Equipment Corporation', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["la120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/decwritr.cpp"]}'::jsonb + ), + ( + 'deeco-sealtouch-st3220', + 'Deeco SealTouch ST3220', + 'Lucas', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["deecoseal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/deecoseal.cpp"]}'::jsonb + ), + ( + 'deer-hunting-usa-v4-3', + 'Deer Hunting USA V4.3', + 'Sammy USA Corporation', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["deerhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'defend-the-terra-attack-on-the-red-ufo', + 'Defend the Terra Attack on the Red UFO', + 'Artic', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["redufo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'defender-red-label', + 'Defender (Red label)', + 'Williams', + 1980, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["defender"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'defender-m2500p-120-in-1', + 'Defender M2500P 120-in-1', + 'Defender / JungleTac', + 2009, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["cybar120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'dellfern-v18-77-s-99-s-and-suits-1-credit', + 'Dellfern V18 (77''s, 99''s & Suits, 1 Credit)', + 'Dellfern Ltd.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["ddellf97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'delta-command-arcadia', + 'Delta Command (Arcadia)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_dlta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'deluxe-5', + 'Deluxe 5', + 'ESD', + 2000, + array['Deluxe 5 (ver. 0107, 07/01/2000, set 1)'], + array['Arcade'], + '{"mame":["deluxe5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'demolish-fist', + 'Demolish Fist', + 'Polygon Magic / Dimps', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["demofist"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'demolition-derby', + 'Demolition Derby', + 'Bally Midway', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["demoderb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'demolition-derby-chicago-coin', + 'Demolition Derby (Chicago Coin)', + 'Chicago Coin', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["dmodrbcc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/chicago.cpp"]}'::jsonb + ), + ( + 'demon', + 'Demon', + 'Rock-Ola', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["demon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'demon-front-moyu-zhanxian-68k-label-v105-rom-m105xx-08-05-02-arm-label-v105-rom-08-05-02-s', + 'Demon Front / Moyu Zhanxian (68k label V105, ROM M105XX 08/05/02) (ARM label V105, ROM 08/05/02 S105XX)', + 'IGS', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["dmnfrnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'demon-s-world-horror-story', + 'Demon''s World / Horror Story', + 'Toaplan', + 1990, + array['Demon''s World (World) / Horror Story (Japan) (set 1)'], + array['Arcade'], + '{"mame":["demonwld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/toaplan1.cpp"]}'::jsonb + ), + ( + 'demoneye-x', + 'Demoneye-X', + 'Irem', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["demoneye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/redalert.cpp"]}'::jsonb + ), + ( + 'demons-and-dragons', + 'Demons & Dragons', + 'Dave Nutting Associates / Bally Midway', + 1982, + array['Demons & Dragons (prototype)'], + array['Arcade'], + '{"mame":["demndrgn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'dengen-tenshi-taisen-janshi-shangri-la', + 'Dengen Tenshi Taisen Janshi Shangri-la', + 'Marvelous Ent.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["shangril"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'denjin-makai', + 'Denjin Makai', + 'Winkysoft (Banpresto license)', + 1994, + array['Denjin Makai (set 1)'], + array['Arcade'], + '{"mame":["denjinmk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/legionna.cpp"]}'::jsonb + ), + ( + 'densha-de-go-3-tsukin-hen', + 'Densha de GO 3! Tsukin-hen', + 'Taito', + 2000, + array['Densha de GO 3! Tsukin-hen (VER.2.03J)'], + array['Arcade'], + '{"mame":["dendego3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'densha-de-go', + 'Densha de GO!', + 'Taito', + 1996, + array['Densha de GO! (Ver 2.3 J)'], + array['Arcade'], + '{"mame":["dendego"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitojc.cpp"]}'::jsonb + ), + ( + 'densha-de-go-2-kousoku-hen', + 'Densha de GO! 2 Kousoku-hen', + 'Taito', + 1998, + array['Densha de GO! 2 Kousoku-hen (Ver 2.5 J)'], + array['Arcade'], + '{"mame":["dendego2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitojc.cpp"]}'::jsonb + ), + ( + 'denver-game-console-gmp-240c-150-in-1', + 'Denver Game Console GMP-240C 150-in-1', + 'Denver', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["denv150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'depthcharge', + 'Depthcharge', + 'Gremlin', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["depthch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'derby-derby', + 'Derby Derby', + 'SNK', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["drderby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/drderby.cpp"]}'::jsonb + ), + ( + 'derby-owners-club', + 'Derby Owners Club', + 'Sega', + 1999, + array['Derby Owners Club (Japan, Rev B)'], + array['Arcade'], + '{"mame":["derbyoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'derby-owners-club-2000-ver-2', + 'Derby Owners Club 2000 Ver.2', + 'Sega', + 2000, + array['Derby Owners Club 2000 Ver.2 (Japan, Rev A)'], + array['Arcade'], + '{"mame":["derbyo2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'derby-owners-club-ii-ver-2-1', + 'Derby Owners Club II Ver.2.1', + 'Sega', + 2001, + array['Derby Owners Club II Ver.2.1 (Japan, Rev B)'], + array['Arcade'], + '{"mame":["derbyoc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'derby-owners-club-world-edition-ex', + 'Derby Owners Club World Edition EX', + 'Sega', + 2005, + array['Derby Owners Club World Edition EX (Rev D)'], + array['Arcade'], + '{"mame":["derbyocw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'deroon-derodero', + 'Deroon DeroDero', + 'Tecmo', + 1995, + array['Deroon DeroDero (earlier, set 1)'], + array['Arcade'], + '{"mame":["deroon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmosys.cpp"]}'::jsonb + ), + ( + 'desert-breaker-fd1094-317-0196', + 'Desert Breaker (FD1094 317-0196)', + 'Sega', + 1992, + array['Desert Breaker (World) (FD1094 317-0196)'], + array['Arcade'], + '{"mame":["desertbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'desert-dan', + 'Desert Dan', + 'Kawakusu (Video Optics license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["desertdn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'desert-gun', + 'Desert Gun', + 'Dave Nutting Associates / Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["desertgu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'desert-patrol', + 'Desert Patrol', + 'Project Support Engineering', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["dpatrol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pse.cpp"]}'::jsonb + ), + ( + 'desert-tank', + 'Desert Tank', + 'Sega / Martin Marietta', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["desert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'desert-war-wangan-sensou', + 'Desert War / Wangan Sensou', + 'Jaleco', + 1995, + array['Desert War / Wangan Sensou (ver 1.0)'], + array['Arcade'], + '{"mame":["desertwr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'design-master-denshi-mangajuku', + 'Design Master Denshi Mangajuku', + 'Bandai', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["bdesignm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bandai/design_master.cpp"]}'::jsonb + ), + ( + 'designer-2100-display', + 'Designer 2100 Display', + 'Fidelity International', + 1988, + array['Designer 2100 Display (set 1)'], + array['Arcade'], + '{"mame":["fdes2100d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/desdis.cpp"]}'::jsonb + ), + ( + 'designer-mach-iii-master-2265', + 'Designer Mach III Master 2265', + 'Fidelity Electronics International', + 1989, + array['Designer Mach III Master 2265 (set 1)'], + array['Arcade'], + '{"mame":["fdes2265"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/desdis.cpp"]}'::jsonb + ), + ( + 'destiny-the-fortuneteller', + 'Destiny - The Fortuneteller', + 'Data East Corporation', + 1983, + array['Destiny - The Fortuneteller (USA)'], + array['Arcade'], + '{"mame":["destiny"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deshoros.cpp"]}'::jsonb + ), + ( + 'destiny-prodigy', + 'Destiny Prodigy', + 'Applied Concepts', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["prodigy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["appliedconcepts/prodigy.cpp"]}'::jsonb + ), + ( + 'destroyer', + 'Destroyer', + 'Atari', + 1977, + array['Destroyer (Atari, version O2)', 'Destroyer (Cidelsa, set 1)'], + array['Arcade'], + '{"mame":["destroyr","destryer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/destroyr.cpp","efo/cidelsa.cpp"]}'::jsonb + ), + ( + 'destruction-derby', + 'Destruction Derby', + 'Exidy', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["destdrby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidyttl.cpp"]}'::jsonb + ), + ( + 'deuces-wild-2-american-heritage', + 'Deuces Wild 2 - American Heritage', + '', + 1997, + array['Deuces Wild 2 - American Heritage (Ver. 2.02F)'], + array['Arcade'], + '{"mame":["deucesw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'devastators', + 'Devastators', + 'Konami', + 1988, + array['Devastators (ver. Z)'], + array['Arcade'], + '{"mame":["devstors"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mainevt.cpp"]}'::jsonb + ), + ( + 'devil-fish-mars-hardware', + 'Devil Fish (Mars hardware)', + 'Artic', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["devilfsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'devil-island', + 'Devil Island', + 'Amcoe', + 2006, + array['Devil Island (Version 1.4R CGA)'], + array['Arcade'], + '{"mame":["dvisland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'devil-world', + 'Devil World', + 'Konami', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["devilw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twin16.cpp"]}'::jsonb + ), + ( + 'devil-zone', + 'Devil Zone', + 'Universal', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["devzone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmic.cpp"]}'::jsonb + ), + ( + 'dg-20-digital-guitar', + 'DG-20 Digital Guitar', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["dg20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/dg20.cpp"]}'::jsonb + ), + ( + 'dg680-with-dgos-z80-1-4', + 'DG680 with DGOS-Z80 1.4', + 'David Griffiths', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["dg680"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/dg680.cpp"]}'::jsonb + ), + ( + 'dharma-doujou', + 'Dharma Doujou', + 'Metro', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["dharma"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'diablo-68000', + 'Diablo 68000', + 'Novag Industries / Intelligent Heuristic Programming', + 1991, + array['Diablo 68000 (set 1)'], + array['Arcade'], + '{"mame":["diablo68"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/diablo.cpp"]}'::jsonb + ), + ( + 'dialogue-80', + 'Dialogue 80', + 'Ampex', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["dialog80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ampex/ampex.cpp"]}'::jsonb + ), + ( + 'diamond', + 'Diamond', + 'Novag Industries / Intelligent Heuristic Programming', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["diamond"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/diamond.cpp"]}'::jsonb + ), + ( + 'diamond-derby-win-bet-newer', + 'Diamond Derby (Win bet, newer)', + 'Electrocoin', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["dmndrby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/dmndrby.cpp"]}'::jsonb + ), + ( + 'diamond-ii', + 'Diamond II', + 'Novag Industries / Intelligent Heuristic Programming', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["diamond2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/diamond.cpp"]}'::jsonb + ), + ( + 'diamond-run', + 'Diamond Run', + 'KH Video', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["diamrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/gng.cpp"]}'::jsonb + ), + ( + 'diamond-trio', + 'Diamond Trio', + 'Novotech', + null, + array['Diamond Trio (set 1)'], + array['Arcade'], + '{"mame":["ditrio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'dice-the-dice-game', + 'Dice - The Dice Game!', + 'bootleg (Tuning)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["dicegame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m90.cpp"]}'::jsonb + ), + ( + 'die-hard-arcade-uet-960515-v1-000', + 'Die Hard Arcade (UET 960515 V1.000)', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["diehard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'diet-family', + 'Diet Family', + 'SemiCom', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["dtfamily"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'diet-go-go', + 'Diet Go Go', + 'Data East Corporation', + 1992, + array['Diet Go Go (Europe v1.1 1992.09.26, set 1)'], + array['Arcade'], + '{"mame":["dietgo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dietgo.cpp"]}'::jsonb + ), + ( + 'dig-dug', + 'Dig Dug', + 'Namco', + 1982, + array['Dig Dug (rev 2)'], + array['Classic'], + '{"mame":["digdug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/galaga.cpp"]}'::jsonb + ), + ( + 'dig-dug-ii', + 'Dig Dug II', + 'Namco', + 1985, + array['Dig Dug II (New Ver.)'], + array['Classic'], + '{"mame":["digdug2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'digger', + 'Digger', + 'Sega', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["digger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'digger-cvs', + 'Digger (CVS)', + 'Century Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["diggerc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'digger-man', + 'Digger Man', + 'Kyle Hodgetts', + 2000, + array['Digger Man (prototype)'], + array['Arcade'], + '{"mame":["diggerma"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'digital-ez-lg', + 'Digital ez LG', + 'LG', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["digezlg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'diier-d-10-168-in-1-phone-case', + 'Diier-D-10 168-in-1 phone case', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["168pcase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'dimahoo', + 'Dimahoo', + 'Eighting / Raizing (Capcom license)', + 2000, + array['Dimahoo (Europe 000121)'], + array['Arcade'], + '{"mame":["dimahoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'dimension-68000', + 'Dimension 68000', + 'Micro Craft', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dim68k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microcraft/dim68k.cpp"]}'::jsonb + ), + ( + 'dingji-dou-dizhu', + 'Dingji Dou Dizhu', + 'Sealy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["djddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_z80.cpp"]}'::jsonb + ), + ( + 'dingo', + 'Dingo', + 'Ashby Computers and Graphics Ltd. (Jaleco license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dingo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'dino-dino', + 'Dino Dino', + 'Astro Corp.', + 2005, + array['Dino Dino (Ver. A1.1, 01/13/2005)'], + array['Arcade'], + '{"mame":["dinodino"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'dino-family', + 'Dino Family', + 'Subsino', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["dinofmly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'dino-rex', + 'Dino Rex', + 'Taito Corporation Japan', + 1992, + array['Dino Rex (World)'], + array['Arcade'], + '{"mame":["dinorex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'dinoking-battle', + 'Dinoking Battle', + 'Taito Corporation', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["dkbattle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/dinoking.cpp"]}'::jsonb + ), + ( + 'dinoking-kids', + 'Dinoking Kids', + 'Taito Corporation', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["dkkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/dinoking.cpp"]}'::jsonb + ), + ( + 'dinosaur-king', + 'Dinosaur King', + 'Sega', + 2005, + array['Dinosaur King (USA)'], + array['Arcade'], + '{"mame":["dinoking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'dinosaur-king-d-team-vs-the-alpha-fortress-mda-c0047', + 'Dinosaur King - D-Team VS. the Alpha Fortress (MDA-C0047)', + 'Sega', + 2008, + array['Dinosaur King - D-Team VS. the Alpha Fortress (Export, Ver 2.500) (MDA-C0047)'], + array['Arcade'], + '{"mame":["dinoki25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'dinosaur-king-operation-dinosaur-rescue-mda-c0021', + 'Dinosaur King - Operation: Dinosaur Rescue (MDA-C0021)', + 'Sega', + 2006, + array['Dinosaur King - Operation: Dinosaur Rescue (USA, Export) (MDA-C0021)'], + array['Arcade'], + '{"mame":["dinokior"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'dirt-dash', + 'Dirt Dash', + 'Namco', + 1995, + array['Dirt Dash (World, DT2 Ver.C)'], + array['Arcade'], + '{"mame":["dirtdash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'dirt-devils', + 'Dirt Devils', + 'Sega', + 1998, + array['Dirt Devils (Export, Revision A)'], + array['Arcade'], + '{"mame":["dirtdvls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'dirt-fox', + 'Dirt Fox', + 'Namco', + 1989, + array['Dirt Fox (Japan)'], + array['Arcade'], + '{"mame":["dirtfoxj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'dirty-pigskin-football', + 'Dirty Pigskin Football', + 'Sammy', + 2006, + '{}'::text[], + array['Sports'], + '{"mame":["dirtypig"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'disco-boy', + 'Disco Boy', + 'Soft Art Co.', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["discoboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/discoboy.cpp"]}'::jsonb + ), + ( + 'disco-no-1', + 'Disco No.1', + 'Data East Corporation', + 1982, + array['Disco No.1 (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cdiscon1","disco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp","dataeast/btime.cpp"]}'::jsonb + ), + ( + 'discs-of-tron-upright-10-4-83', + 'Discs of Tron (Upright, 10/4/83)', + 'Bally Midway', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dotron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'disney-characters-tegaki-electronic-note', + 'Disney Characters - Tegaki Electronic Note', + 'Tsukuda Original', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pickydis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'diver-boy', + 'Diver Boy', + 'Gamart (Electronic Devices Italy license)', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["diverboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/diverboy.cpp"]}'::jsonb + ), + ( + 'dj-boy', + 'DJ Boy', + 'Kaneko', + 1989, + array['DJ Boy (World)'], + array['Arcade'], + '{"mame":["djboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/djboy.cpp"]}'::jsonb + ), + ( + 'dm3270-control-unit-display-station', + 'DM3270 Control Unit Display Station', + 'Beehive International', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["dm3270"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["beehive/microb.cpp"]}'::jsonb + ), + ( + 'dms-5000', + 'DMS-5000', + 'Digital Microsystems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["dms5000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dms/dms5000.cpp"]}'::jsonb + ), + ( + 'dms-86', + 'DMS-86', + 'Digital Microsystems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["dms86"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dms/dms86.cpp"]}'::jsonb + ), + ( + 'dmx', + 'DMX', + 'Oberheim', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["obdmx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["oberheim/dmx.cpp"]}'::jsonb + ), + ( + 'do-run-run', + 'Do! Run Run', + 'Universal', + 1984, + array['Do! Run Run (set 1)'], + array['Arcade'], + '{"mame":["dorunrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/docastle.cpp"]}'::jsonb + ), + ( + 'dobou-chan', + 'Dobou-Chan', + 'Konami', + 1996, + array['Dobou-Chan (ver JAA)'], + array['Arcade'], + '{"mame":["dobouchn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'docchi-fighter', + 'Docchi Fighter', + 'Amuzy Corporation', + 2007, + array['Docchi Fighter (Japan, ver 1.02)'], + array['Arcade'], + '{"mame":["docchift"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'dock-man', + 'Dock Man', + 'Taito Corporation', + 1982, + array['Dock Man (set 1)'], + array['Arcade'], + '{"mame":["dockman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'dodge-city-9131-02-u9-2t', + 'Dodge City (9131-02, U9-2T)', + 'Merit', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["dodgecty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'dodge-man', + 'Dodge Man', + 'Omori Electric Co., Ltd.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dodgeman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omori/battlex.cpp"]}'::jsonb + ), + ( + 'dodgem', + 'Dodgem', + 'Zaccaria', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["dodgem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/zac1b1120.cpp"]}'::jsonb + ), + ( + 'dodonpachi', + 'DoDonPachi', + 'Cave (Atlus license)', + 1997, + array['DoDonPachi (World, 1997 2/ 5 Master Ver.)'], + array['Arcade'], + '{"mame":["ddonpach"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'dodonpachi-dai-fukkatsu-black-label', + 'DoDonPachi Dai-Fukkatsu Black Label', + 'Cave', + 2010, + array['DoDonPachi Dai-Fukkatsu Black Label (Japan, 2010/1/18 BLACK LABEL)'], + array['Arcade'], + '{"mame":["dfkbl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'dodonpachi-dai-fukkatsu-ver-1-5', + 'DoDonPachi Dai-Fukkatsu Ver 1.5', + 'Cave (AMI license)', + 2008, + array['DoDonPachi Dai-Fukkatsu Ver 1.5 (Japan, 2008/06/23 MASTER VER 1.5)'], + array['Arcade'], + '{"mame":["ddpdfk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'dodonpachi-dai-ou-jou-tamashii', + 'DoDonPachi Dai-Ou-Jou Tamashii', + 'IGS / Cave (Tong Li Animation license)', + 2010, + array['DoDonPachi Dai-Ou-Jou Tamashii (V201, China)'], + array['Arcade'], + '{"mame":["ddpdojt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm2.cpp"]}'::jsonb + ), + ( + 'dodonpachi-ii-bee-storm', + 'DoDonPachi II - Bee Storm', + 'IGS', + 2001, + array['DoDonPachi II - Bee Storm (World, ver. 102)'], + array['Arcade'], + '{"mame":["ddp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'dodonpachi-iii', + 'DoDonPachi III', + 'Cave (AMI license)', + 2002, + array['DoDonPachi III (World, 2002.05.15 Master Ver)'], + array['Arcade'], + '{"mame":["ddp3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'dog-fight-thunderbolt', + 'Dog Fight (Thunderbolt)', + 'Orca / Thunderbolt', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dogfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/zodiack.cpp"]}'::jsonb + ), + ( + 'dog-patch', + 'Dog Patch', + 'Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["dogpatch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'dogstation-deluxe', + 'dogstation Deluxe', + 'Konami', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["dogstdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython.cpp"]}'::jsonb + ), + ( + 'dogyuun', + 'Dogyuun', + 'Toaplan', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["dogyuun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/dogyuun.cpp"]}'::jsonb + ), + ( + 'dojokko-tsukami', + 'Dojokko Tsukami', + 'Amuzy Corporation', + 2005, + array['Dojokko Tsukami (Japan, ver 1.02)'], + array['Arcade'], + '{"mame":["dojokkot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'dokaben', + 'Dokaben', + 'Capcom', + 1989, + array['Dokaben (Japan)'], + array['Arcade'], + '{"mame":["dokaben"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.004.sql b/supabase/seed-data/mame-game-catalog.generated.004.sql new file mode 100644 index 0000000..c969a60 --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.004.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'dokaben-2', + 'Dokaben 2', + 'Capcom', + 1989, + array['Dokaben 2 (Japan)'], + array['Arcade'], + '{"mame":["dokaben2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'doki-doki-idol-star-seeker-gdl-0005', + 'Doki Doki Idol Star Seeker (GDL-0005)', + 'G.Rev', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["starseek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'doki-doki-penguin-land', + 'Doki Doki Penguin Land', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["dokidoki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000a.cpp"]}'::jsonb + ), + ( + 'doki-doki-flower', + 'Doki Doki! Flower', + 'Namco', + 2003, + array['Doki Doki! Flower (DFL1, Ver. A)'], + array['Arcade'], + '{"mame":["ddflower"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos6.cpp"]}'::jsonb + ), + ( + 'dokidoki-kingyo-sukui', + 'Dokidoki Kingyo Sukui', + 'Sammy', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["kingyosu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'doko-demo-issho-toro-s-fishing', + 'Doko Demo Issho: Toro''s Fishing', + 'Sony / Capcom', + 2006, + array['Doko Demo Issho: Toro''s Fishing (Ver.1.00, 2006/06/07)'], + array['Arcade'], + '{"mame":["dokodemo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'dolmen', + 'Dolmen', + 'Afega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["dolmen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'dolphin-blue', + 'Dolphin Blue', + 'Sammy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["dolphin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'dolphin-s-pearl', + 'Dolphin''s Pearl', + 'Novotech', + null, + array['Dolphin''s Pearl (set 1)'], + array['Arcade'], + '{"mame":["dolphinp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'domino-block', + 'Domino Block', + 'Wonwoo Systems', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["dominob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dominob.cpp"]}'::jsonb + ), + ( + 'domino-man', + 'Domino Man', + 'Bally Midway', + 1982, + array['Domino Man (set 1)'], + array['Arcade'], + '{"mame":["domino"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'dominos', + 'Dominos', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["dominos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/sprint2.cpp"]}'::jsonb + ), + ( + 'dommy', + 'Dommy', + 'Technos Japan', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dommy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'don-den-lover-vol-1-shiro-kuro-tsukeyo', + 'Don Den Lover Vol. 1 - Shiro Kuro Tsukeyo!', + 'Dynax', + 1995, + array['Don Den Lover Vol. 1 - Shiro Kuro Tsukeyo! (Japan)'], + array['Arcade'], + '{"mame":["ddenlovj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'don-doko-don', + 'Don Doko Don', + 'Taito Corporation Japan', + 1989, + array['Don Doko Don (World, rev 1)'], + array['Arcade'], + '{"mame":["dondokod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'dona-barata', + 'Dona Barata', + 'Eletro Matic Equipamentos Eletromecânicos', + 2002, + array['Dona Barata (early prototype)'], + array['Arcade'], + '{"mame":["barata"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["matic/barata.cpp"]}'::jsonb + ), + ( + 'dongfang-shenlong', + 'Dongfang Shenlong', + 'BMC', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["bmcpokr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/bmcpokr.cpp"]}'::jsonb + ), + ( + 'donggul-donggul-haerong', + 'Donggul Donggul Haerong', + 'Danbi', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["donghaer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'dongshizhang', + 'Dongshizhang', + 'Subsino', + 2005, + array['Dongshizhang (China, Ver. 212)'], + array['Arcade'], + '{"mame":["dongshiz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'donkey-kong', + 'Donkey Kong', + 'Nintendo of America', + 1981, + array['Donkey Kong (US set 1)'], + array['Platformer', 'Classic'], + '{"mame":["dkong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'donkey-kong-donkey-kong-jr-mario-bros', + 'Donkey Kong / Donkey Kong Jr / Mario Bros', + 'Namco / Nintendo / Cosmodog', + 2003, + '{}'::text[], + array['Platformer', 'Classic'], + '{"mame":["dkmb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/dkmb.cpp"]}'::jsonb + ), + ( + 'donkey-kong-3', + 'Donkey Kong 3', + 'Nintendo of America', + 1983, + array['Donkey Kong 3 (US)'], + array['Platformer', 'Classic'], + '{"mame":["dkong3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'donkey-kong-banana-kingdom-host', + 'Donkey Kong Banana Kingdom (host)', + 'Capcom', + 2007, + '{}'::text[], + array['Platformer', 'Classic'], + '{"mame":["dkbanana"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'donkey-kong-jungle-fever', + 'Donkey Kong Jungle Fever', + 'Nintendo / Capcom', + 2005, + array['Donkey Kong Jungle Fever (Ver.1.000, 2005/08/03)'], + array['Platformer', 'Classic'], + '{"mame":["dkjfever"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'donkey-kong-junior', + 'Donkey Kong Junior', + 'Nintendo of America', + 1982, + array['Donkey Kong Junior (US set F-2)'], + array['Platformer', 'Classic'], + '{"mame":["dkongjr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'donpachi', + 'DonPachi', + 'Cave (Atlus license)', + 1995, + array['DonPachi (US)'], + array['Arcade'], + '{"mame":["donpachi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'doodle-jump-arcade-v1-16', + 'Doodle Jump Arcade (v1.16)', + 'ICE / Raw Thrills (Lima Sky license)', + 2013, + '{}'::text[], + array['Arcade'], + '{"mame":["doodljmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/rawthrillspc.cpp"]}'::jsonb + ), + ( + 'dora-chan', + 'Dora-chan', + 'Alpha Denshi Co. / Craul Denshi', + 1980, + array['Dora-chan (Japan)'], + array['Arcade'], + '{"mame":["dorachan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dorachan.cpp"]}'::jsonb + ), + ( + 'doraemon-no-dokodemo-door', + 'Doraemon no Dokodemo Door', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["dddoor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'dorodon', + 'Dorodon', + 'UPL (Falcon license?)', + 1982, + array['Dorodon (set 1)'], + array['Arcade'], + '{"mame":["dorodon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/ladybug.cpp"]}'::jsonb + ), + ( + 'dottori-kun', + 'Dottori Kun', + 'Sega', + 1990, + array['Dottori Kun (new version)'], + array['Arcade'], + '{"mame":["dotrikun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dotrikun.cpp"]}'::jsonb + ), + ( + 'dou-dizhu', + 'Dou Dizhu', + 'IGS?', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ddz.cpp"]}'::jsonb + ), + ( + 'dou-dizhu-ii', + 'Dou Dizhu II', + 'Sealy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ddz2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_z80.cpp"]}'::jsonb + ), + ( + 'double-8-line', + 'Double 8 Line', + 'AMT Co. Ltd.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["double8l"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/cabaret.cpp"]}'::jsonb + ), + ( + 'double-axle', + 'Double Axle', + 'Taito America Corporation', + 1991, + array['Double Axle (US, Rev 1, set 1)'], + array['Arcade'], + '{"mame":["dblaxle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'double-challenge', + 'Double Challenge', + 'Amcoe', + 2003, + array['Double Challenge (Version 1.5R, set 1)'], + array['Arcade'], + '{"mame":["dblchal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'double-cheese', + 'Double Cheese', + 'HAR Management', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["dcheese"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dcheese.cpp"]}'::jsonb + ), + ( + 'double-crown-v1-0-3', + 'Double Crown (v1.0.3)', + 'Cadence Technology', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["dblcrown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/dblcrown.cpp"]}'::jsonb + ), + ( + 'double-dance-mania-techno-light-edition', + 'Double Dance Mania - Techno Light Edition', + 'Senario', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["dbdancem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'double-dealer', + 'Double Dealer', + 'NMK', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["ddealer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/ddealer.cpp"]}'::jsonb + ), + ( + 'double-dragon', + 'Double Dragon', + 'Technos Japan (Taito license)', + 1987, + array['Double Dragon (World set 1)'], + array['Beat em up'], + '{"mame":["ddragon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'double-dragon-neo-geo', + 'Double Dragon (Neo-Geo)', + 'Technos Japan', + 1995, + '{}'::text[], + array['Beat em up'], + '{"mame":["doubledr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'double-dragon-playchoice-10', + 'Double Dragon (PlayChoice-10)', + 'Technos Japan', + 1988, + '{}'::text[], + array['Beat em up'], + '{"mame":["pc_ddrgn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'double-dragon-3-the-rosetta-stone', + 'Double Dragon 3: The Rosetta Stone', + 'East Technology / Technos Japan', + 1990, + array['Double Dragon 3: The Rosetta Stone (US)'], + array['Beat em up'], + '{"mame":["ddragon3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon3.cpp"]}'::jsonb + ), + ( + 'double-dragon-ii-the-revenge', + 'Double Dragon II: The Revenge', + 'Technos Japan', + 1988, + array['Double Dragon II: The Revenge (World)'], + array['Beat em up'], + '{"mame":["ddragon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'double-dribble', + 'Double Dribble', + 'Konami', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["ddribble"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ddribble.cpp"]}'::jsonb + ), + ( + 'double-dribble-playchoice-10', + 'Double Dribble (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_dbldr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'double-play', + 'Double Play', + 'Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["dplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'double-players-mini-joystick-80-in-1-mj8500-abl-tv-game', + 'Double Players Mini Joystick 80-in-1 (MJ8500, ABL TV Game)', + 'Advance Bright Ltd', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["ablmini"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'double-point', + 'Double Point', + 'Min Corp.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["dblpoint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gumbo.cpp"]}'::jsonb + ), + ( + 'double-wings', + 'Double Wings', + 'Mitchell', + 1993, + array['Double Wings (set 1)'], + array['Arcade'], + '{"mame":["dblewing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dblewing.cpp"]}'::jsonb + ), + ( + 'downhill-bikers', + 'Downhill Bikers', + 'Namco', + 1997, + array['Downhill Bikers (World, DH2 Ver. A)'], + array['Arcade'], + '{"mame":["downhill"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'downtown-mokugeki', + 'DownTown / Mokugeki', + 'Seta', + 1989, + array['DownTown / Mokugeki (set 1)'], + array['Arcade'], + '{"mame":["downtown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'dpb-7000', + 'DPB-7000', + 'Quantel', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["dpb7000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["quantel/dpb7000.cpp"]}'::jsonb + ), + ( + 'dr-mario-playchoice-10', + 'Dr. Mario (PlayChoice-10)', + 'Nintendo', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_drmro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'dr-micro', + 'Dr. Micro', + 'Sanritsu', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["drmicro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/drmicro.cpp"]}'::jsonb + ), + ( + 'dr-tomy', + 'Dr. Tomy', + 'Playmark', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["drtomy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/drtomy.cpp"]}'::jsonb + ), + ( + 'dr-toppel-s-adventure', + 'Dr. Toppel''s Adventure', + 'Kaneko / Taito Corporation Japan', + 1987, + array['Dr. Toppel''s Adventure (World)'], + array['Arcade'], + '{"mame":["drtoppel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'draco', + 'Draco', + 'Cidelsa', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["draco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cidelsa.cpp"]}'::jsonb + ), + ( + 'dracula-s-castle-magnet-system', + 'Dracula''s Castle (Magnet System)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_drac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'drag-race', + 'Drag Race', + 'Atari (Kee Games)', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["dragrace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/dragrace.cpp"]}'::jsonb + ), + ( + 'dragon-ball-z', + 'Dragon Ball Z', + 'Banpresto', + 1993, + array['Dragon Ball Z (rev B)'], + array['Arcade'], + '{"mame":["dbz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/dbz.cpp"]}'::jsonb + ), + ( + 'dragon-ball-z-2-super-battle', + 'Dragon Ball Z 2 - Super Battle', + 'Banpresto', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["dbz2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/dbz.cpp"]}'::jsonb + ), + ( + 'dragon-ball-z-v-r-v-s', + 'Dragon Ball Z: V.R. V.S.', + 'Sega / Banpresto', + 1994, + array['Dragon Ball Z: V.R. V.S. (Japan, Rev A)'], + array['Arcade'], + '{"mame":["dbzvrvs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'dragon-blaze', + 'Dragon Blaze', + 'Psikyo', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["dragnblz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'dragon-bowl', + 'Dragon Bowl', + 'Nics', + 1992, + array['Dragon Bowl (set 1, encrypted program)'], + array['Arcade'], + '{"mame":["drgnbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/gaiden.cpp"]}'::jsonb + ), + ( + 'dragon-breed', + 'Dragon Breed', + 'Irem', + 1989, + array['Dragon Breed (World, M81 hardware)'], + array['Arcade'], + '{"mame":["dbreed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'dragon-buster', + 'Dragon Buster', + 'Namco', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["drgnbstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/skykid.cpp"]}'::jsonb + ), + ( + 'dragon-chronicles', + 'Dragon Chronicles', + 'Namco', + 2002, + array['Dragon Chronicles (DC001 Ver. A)'], + array['Arcade'], + '{"mame":["dragchrn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'dragon-dance-v1-02j', + 'Dragon Dance (V1.02J)', + 'Success', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["drgdance"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/skopro.cpp"]}'::jsonb + ), + ( + 'dragon-gun', + 'Dragon Gun', + 'Data East Corporation', + 1993, + array['Dragon Gun (US)'], + array['Arcade'], + '{"mame":["dragngun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco32.cpp"]}'::jsonb + ), + ( + 'dragon-master', + 'Dragon Master', + 'Unico', + 1994, + array['Dragon Master (set 1)'], + array['Arcade'], + '{"mame":["drgnmst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/drgnmst.cpp"]}'::jsonb + ), + ( + 'dragon-punch', + 'Dragon Punch', + 'Dynax', + 1989, + array['Dragon Punch (Japan, ver. 1.30)'], + array['Arcade'], + '{"mame":["drgpunch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'dragon-saber', + 'Dragon Saber', + 'Namco', + 1990, + array['Dragon Saber (World, DO2)'], + array['Arcade'], + '{"mame":["dsaber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'dragon-slayer', + 'Dragon Slayer', + 'Astro Corp.', + 2005, + array['Dragon Slayer (Russia, v15.B, 2005/08/10)'], + array['Arcade'], + '{"mame":["dslayrr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'dragon-sphere', + 'Dragon Sphere', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dragsphr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'dragon-spirit', + 'Dragon Spirit )', + 'Namco', + 1987, + array['Dragon Spirit (new version (DS3))'], + array['Arcade'], + '{"mame":["dspirit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'dragon-treasure-gds-0030b', + 'Dragon Treasure (GDS-0030B)', + 'Sega', + 2003, + array['Dragon Treasure (Rev B) (GDS-0030B)'], + array['Arcade'], + '{"mame":["dragntr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'dragon-treasure-2-gds-0037a', + 'Dragon Treasure 2 (GDS-0037A)', + 'Sega', + 2004, + array['Dragon Treasure 2 (Rev A) (GDS-0037A)'], + array['Arcade'], + '{"mame":["dragntr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'dragon-treasure-3-gds-0041a', + 'Dragon Treasure 3 (GDS-0041A)', + 'Sega', + 2005, + array['Dragon Treasure 3 (Rev A) (GDS-0041A)'], + array['Arcade'], + '{"mame":["dragntr3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'dragon-unit-castle-of-dragon', + 'Dragon Unit / Castle of Dragon', + 'Athena / Seta', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["drgnunit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'dragon-world', + 'Dragon World', + 'IGS', + 1997, + array['Dragon World (World, V040O)'], + array['Arcade'], + '{"mame":["drgnwrld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs011.cpp"]}'::jsonb + ), + ( + 'dragon-world-3-zhongguo-long-3-dungfong-zi-zyu-3-chuugokuryuu-3-special', + 'Dragon World 3 / Zhongguo Long 3 / Dungfong Zi Zyu 3 / Chuugokuryuu 3 Special', + 'IGS', + 1998, + array['Dragon World 3 / Zhongguo Long 3 / Dungfong Zi Zyu 3 / Chuugokuryuu 3 Special (ver. 106)'], + array['Arcade'], + '{"mame":["drgw3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'dragon-world-3-ex-zhongguo-long-3-ex-dungfong-zi-zyu-3-ex-chuugokuryuu-3-ex', + 'Dragon World 3 EX / Zhongguo Long 3 EX / Dungfong Zi Zyu 3 EX / Chuugokuryuu 3 EX', + 'IGS', + 2000, + array['Dragon World 3 EX / Zhongguo Long 3 EX / Dungfong Zi Zyu 3 EX / Chuugokuryuu 3 EX (ver. 100)'], + array['Arcade'], + '{"mame":["dwex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'dragon-world-ii', + 'Dragon World II', + 'IGS', + 1997, + array['Dragon World II (ver. 110X, Export)'], + array['Arcade'], + '{"mame":["drgw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'dragon-s-heaven-development-board', + 'Dragon''s Heaven (development board)', + 'Face', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["dragonsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'dragon-s-lair', + 'Dragon''s Lair', + 'Cinematronics', + 1983, + array['Dragon''s Lair (US Rev. F2)'], + array['Arcade'], + '{"mame":["dlair"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/dlair.cpp"]}'::jsonb + ), + ( + 'dragon-s-lair-2-time-warp', + 'Dragon''s Lair 2: Time Warp', + 'Leland Corporation', + 1991, + array['Dragon''s Lair 2: Time Warp (US v3.19)'], + array['Arcade'], + '{"mame":["dlair2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/dlair2.cpp"]}'::jsonb + ), + ( + 'dragonfly', + 'Dragonfly', + 'Konami', + null, + array['Dragonfly (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["dragnfly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'dragoon-might', + 'Dragoon Might', + 'Konami', + 1995, + array['Dragoon Might (ver AAB)'], + array['Arcade'], + '{"mame":["dragoona"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'drakton', + 'Drakton', + 'Epos Corporation', + 1984, + array['Drakton (DK conversion)'], + array['Arcade'], + '{"mame":["drakton"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'dream-6800', + 'Dream 6800', + 'Michael Bauer', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["d6800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/d6800.cpp"]}'::jsonb + ), + ( + 'dream-9-v1-52', + 'Dream 9 (v1.52)', + 'Excellent System', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["dream9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/es8906.cpp"]}'::jsonb + ), + ( + 'dream-9-final-v2-24', + 'Dream 9 Final (v2.24)', + 'Excellent System', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["d9final"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/d9final.cpp"]}'::jsonb + ), + ( + 'dream-9-flower', + 'Dream 9 Flower', + 'Cadence Technology', + 1998, + array['Dream 9 Flower (v1.00c, set 1)'], + array['Arcade'], + '{"mame":["d9flower"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/es9501.cpp"]}'::jsonb + ), + ( + 'dream-ball', + 'Dream Ball', + 'NDK / Data East', + 1993, + array['Dream Ball (Japan V2.4)'], + array['Arcade'], + '{"mame":["dreambal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dreambal.cpp"]}'::jsonb + ), + ( + 'dream-chance', + 'Dream Chance', + 'Paradise', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["dreamcha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ps_m3.cpp"]}'::jsonb + ), + ( + 'dream-crown', + 'Dream Crown', + 'Nippon Data Kiki', + 1994, + array['Dream Crown (set 1)'], + array['Arcade'], + '{"mame":["dcrown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'dream-hunting', + 'Dream Hunting', + 'Game Box Entertainment', + 2002, + array['Dream Hunting (US)'], + array['Arcade'], + '{"mame":["dhunting"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/unianapc.cpp"]}'::jsonb + ), + ( + 'dream-maker-atronic', + 'Dream Maker (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["drmmake"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'dream-shopper', + 'Dream Shopper', + 'Sanritsu', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["dremshpr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'dream-soccer-94', + 'Dream Soccer ''94', + 'Irem (Data East Corporation license)', + 1994, + array['Dream Soccer ''94 (World, M107 hardware)'], + array['Sports'], + '{"mame":["dsoccr94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m107.cpp"]}'::jsonb + ), + ( + 'dream-world', + 'Dream World', + 'SemiCom', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["dreamwld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dreamwld.cpp"]}'::jsonb + ), + ( + 'dreamcast', + 'Dreamcast', + 'Sega', + 1998, + array['Dreamcast (Japan, NTSC)'], + array['Arcade'], + '{"mame":["dcjp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dccons.cpp"]}'::jsonb + ), + ( + 'dreamcast-arcade-stick-checker-v2-00', + 'Dreamcast Arcade Stick Checker (v2.00)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["dcacchk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dcchk.cpp"]}'::jsonb + ), + ( + 'dreamgear-101-in-1', + 'dreamGEAR 101 in 1', + 'dreamGEAR', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_dg101"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'dreamgear-75-in-1', + 'dreamGEAR 75-in-1', + 'dreamGEAR', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_dgear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'dreamgear-wireless-motion-control-with-130-games-dgun-2500', + 'dreamGEAR Wireless Motion Control with 130 games (DGUN-2500)', + 'dreamGEAR', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dgun2500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'drews-revenge', + 'Drews Revenge', + 'Drews Inc.', + 1986, + array['Drews Revenge (v.2.89, set 1)'], + array['Arcade'], + '{"mame":["drhl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'dribbling', + 'Dribbling', + 'Model Racing', + 1983, + array['Dribbling (set 1)'], + array['Arcade'], + '{"mame":["dribling"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["modelracing/dribling.cpp"]}'::jsonb + ), + ( + 'drift-out', + 'Drift Out', + 'Visco', + 1991, + array['Drift Out (Europe)'], + array['Arcade'], + '{"mame":["driftout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'drift-out-94-the-hard-order', + 'Drift Out ''94 - The Hard Order', + 'Visco', + 1994, + array['Drift Out ''94 - The Hard Order (Japan)'], + array['Arcade'], + '{"mame":["drifto94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'driver-s-edge-v1-6', + 'Driver''s Edge (v1.6)', + 'Strata / Incredible Technologies', + 1994, + '{}'::text[], + array['Racing'], + '{"mame":["drivedge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'driver-s-eyes', + 'Driver''s Eyes', + 'Namco', + 1992, + array['Driver''s Eyes (Japan) (1992/01/10, Main Ver 2.1, Sub Ver 1.1)'], + array['Racing'], + '{"mame":["driveyes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21_de.cpp"]}'::jsonb + ), + ( + 'driving-force', + 'Driving Force', + 'Shinkai Inc. (Magic Electronics Inc. license)', + 1984, + array['Driving Force (Pac-Man conversion)'], + array['Arcade'], + '{"mame":["drivfrcp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'driving-simulator', + 'Driving Simulator', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["sgdrvsim"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'drum-station', + 'Drum Station', + 'Novation', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["drumsta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novation/drumsta.cpp"]}'::jsonb + ), + ( + 'drummania-v-e02-a-a-a-2005050200', + 'DrumMania V (E02:A:A:A:2005050200)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["drmnva"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'drummania-v-e02-j-a-a-2005050200', + 'DrumMania V (E02:J:A:A:2005050200)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["drmnvj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'drummania-v2-f02-a-a-a-2006011201', + 'DrumMania V2 (F02:A:A:A:2006011201)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["drmnv2a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'drummania-v2-f02-j-a-a-2006011201', + 'DrumMania V2 (F02:J:A:A:2006011201)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["drmnv2j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'drummania-v3-f32-a-a-a-2006101800', + 'DrumMania V3 (F32:A:A:A:2006101800)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["drmnv3a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'drummania-v3-f32-j-a-a-2006101800', + 'DrumMania V3 (F32:J:A:A:2006101800)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["drmnv3j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'ds', + 'DS', + 'Nintendo', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["nds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nds.cpp"]}'::jsonb + ), + ( + 'ds-2000-ksr', + 'DS 2000 KSR', + 'HAL Communications Corp', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["ds2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ds2000.cpp"]}'::jsonb + ), + ( + 'ds-telejan', + 'DS Telejan', + 'Data East Corporation', + 1981, + array['DS Telejan (DECO Cassette) (Japan)'], + array['Arcade'], + '{"mame":["cdsteljn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'ds-5000-driving-simulator', + 'DS-5000 Driving Simulator', + 'Namco / Mitsubishi', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["ds5000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/ds5000.cpp"]}'::jsonb + ), + ( + 'ds-6000-driving-simulator', + 'DS-6000 Driving Simulator', + 'Namco / Mitsubishi', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ds6000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/ds6000.cpp"]}'::jsonb + ), + ( + 'ds-8-digital-synthesizer', + 'DS-8 Digital Synthesizer', + 'Korg', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["ds8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgds8.cpp"]}'::jsonb + ), + ( + 'dss-1-digital-sampling-synthesizer', + 'DSS-1 Digital Sampling Synthesizer', + 'Korg', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["dss1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgdss1.cpp"]}'::jsonb + ), + ( + 'dt7', + 'DT7', + 'Toaplan', + 1993, + array['DT7 (prototype)'], + array['Arcade'], + '{"mame":["dt7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/dt7.cpp"]}'::jsonb + ), + ( + 'dual-games', + 'Dual Games', + 'Labtronix Technologies', + 1995, + array['Dual Games (prototype)'], + array['Arcade'], + '{"mame":["dualgame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'duck-hunt-playchoice-10', + 'Duck Hunt (PlayChoice-10)', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_duckh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'duet-16', + 'Duet-16', + 'Panafacom (Panasonic/Fujitsu)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["duet16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["matsushita/duet16.cpp"]}'::jsonb + ), + ( + 'dungeons-and-dragons-shadow-over-mystara', + 'Dungeons & Dragons: Shadow over Mystara', + 'Capcom', + 1996, + array['Dungeons & Dragons: Shadow over Mystara (Europe 960619)'], + array['Beat em up'], + '{"mame":["ddsom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'dungeons-and-dragons-tower-of-doom', + 'Dungeons & Dragons: Tower of Doom', + 'Capcom', + 1993, + array['Dungeons & Dragons: Tower of Doom (Europe 940412)'], + array['Beat em up'], + '{"mame":["ddtod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'dunk-mania', + 'Dunk Mania', + 'Namco', + 1995, + array['Dunk Mania (World, DM2/VER.C)'], + array['Arcade'], + '{"mame":["dunkmnia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'dunk-shot', + 'Dunk Shot', + 'Sega', + 1987, + array['Dunk Shot (Rev C, FD1089A 317-0022)'], + array['Arcade'], + '{"mame":["dunkshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'dvd-select', + 'DVD Select', + 'Nichibutsu', + 2000, + array['DVD Select (Japan)'], + array['Arcade'], + '{"mame":["nichisel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'dvp-1-digital-voice-processor', + 'DVP-1 Digital Voice Processor', + 'Korg', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["dvp1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgdvp1.cpp"]}'::jsonb + ), + ( + 'dvtech-nimbus-176-in-1', + 'DVTech Nimbus 176 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dvnimbus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'dw-8000-programmable-digital-waveform-synthesizer', + 'DW-8000 Programmable Digital Waveform Synthesizer', + 'Korg', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["dw8000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgdw8k.cpp"]}'::jsonb + ), + ( + 'dx100-digital-programmable-algorithm-synthesizer', + 'DX100 Digital Programmable Algorithm Synthesizer', + 'Yamaha', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["dx100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymdx100.cpp"]}'::jsonb + ), + ( + 'dx11-digital-programmable-algorithm-synthesizer', + 'DX11 Digital Programmable Algorithm Synthesizer', + 'Yamaha', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["dx11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymdx11.cpp"]}'::jsonb + ), + ( + 'dx7-digital-programmable-algorithm-synthesizer', + 'DX7 Digital Programmable Algorithm Synthesizer', + 'Yamaha', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dx7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymdx7.cpp"]}'::jsonb + ), + ( + 'dx9-digital-programmable-algorithm-synthesizer', + 'DX9 Digital Programmable Algorithm Synthesizer', + 'Yamaha', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dx9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymdx9.cpp"]}'::jsonb + ), + ( + 'dyger', + 'Dyger', + 'Philko', + 1989, + array['Dyger (Korea set 1)'], + array['Arcade'], + '{"mame":["dyger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/sidearms.cpp"]}'::jsonb + ), + ( + 'dyna-gear', + 'Dyna Gear', + 'Sammy', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["dynagear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'dynablaster-bomber-man', + 'Dynablaster / Bomber Man', + 'Irem (licensed from Hudson Soft)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["dynablst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m90.cpp"]}'::jsonb + ), + ( + 'dynamic-chance-type-3-0-part-1-2', + 'Dynamic Chance (Type-3.0 Part 1-2)', + '', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["dynchance"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'dynamic-country-club', + 'Dynamic Country Club', + 'Sega', + 1991, + array['Dynamic Country Club (World, ROM Based)'], + array['Arcade'], + '{"mame":["dcclub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'dynamic-dice', + 'Dynamic Dice', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dynadice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dynadice.cpp"]}'::jsonb + ), + ( + 'dynamic-shoot-kyousou', + 'Dynamic Shoot Kyousou', + 'Jaleco', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["dynashot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/homerun.cpp"]}'::jsonb + ), + ( + 'dynamic-ski', + 'Dynamic Ski', + 'Taiyo System (Nichibutsu license)', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dynamski"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/shangkid.cpp"]}'::jsonb + ), + ( + 'dynamite-baseball', + 'Dynamite Baseball', + 'Sega', + 1996, + '{}'::text[], + array['Sports'], + '{"mame":["dynabb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'dynamite-baseball-99', + 'Dynamite Baseball ''99', + 'Sega', + 1999, + array['Dynamite Baseball ''99 (Japan, Rev B)'], + array['Sports'], + '{"mame":["dybb99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'dynamite-baseball-97', + 'Dynamite Baseball 97', + 'Sega', + 1997, + array['Dynamite Baseball 97 (Revision A)'], + array['Sports'], + '{"mame":["dynabb97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'dynamite-baseball-naomi', + 'Dynamite Baseball NAOMI', + 'Sega', + 1998, + array['Dynamite Baseball NAOMI (Japan)'], + array['Sports'], + '{"mame":["dybbnao"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'dynamite-bomber', + 'Dynamite Bomber', + 'Limenko', + 2000, + array['Dynamite Bomber (Korea, Rev 1.5)'], + array['Arcade'], + '{"mame":["dynabomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/limenko.cpp"]}'::jsonb + ), + ( + 'dynamite-cop-export-model-2a', + 'Dynamite Cop (Export, Model 2A)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["dynamcop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'dynamite-duke', + 'Dynamite Duke', + 'Seibu Kaihatsu', + 1989, + array['Dynamite Duke (Europe, 03SEP89)'], + array['Arcade'], + '{"mame":["dynduke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/dynduke.cpp"]}'::jsonb + ), + ( + 'dynamite-dux-fd1094-317-0096', + 'Dynamite Dux (FD1094 317-0096)', + 'Sega', + 1988, + array['Dynamite Dux (set 3, World) (FD1094 317-0096)'], + array['Arcade'], + '{"mame":["ddux"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'dynamite-league', + 'Dynamite League', + 'Taito America Corporation', + 1990, + array['Dynamite League (US)'], + array['Arcade'], + '{"mame":["dleague"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_h.cpp"]}'::jsonb + ), + ( + 'dynasty-1992-v5-1g', + 'Dynasty (1992, V5.1G)', + 'Dyna', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["dynastye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'dynasty-wars', + 'Dynasty Wars', + 'Capcom', + 1989, + array['Dynasty Wars (USA, B-Board 89624B-?)'], + array['Arcade'], + '{"mame":["dynwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'e-jong-high-school', + 'E Jong High School', + 'Seibu Kaihatsu', + 1996, + array['E Jong High School (Japan)'], + array['Arcade'], + '{"mame":["ejanhs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'e-jan-sakurasou', + 'E-Jan Sakurasou', + 'Seibu Kaihatsu', + 1999, + array['E-Jan Sakurasou (Japan, SYS386F V2.0)'], + array['Arcade'], + '{"mame":["ejsakura"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'e-d-f-earth-defense-force', + 'E.D.F.: Earth Defense Force', + 'Jaleco', + 1991, + array['E.D.F.: Earth Defense Force (set 1)'], + array['Arcade'], + '{"mame":["edf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'ea-car-computer', + 'EA Car Computer', + 'Electronics Australia', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["eacc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/eacc.cpp"]}'::jsonb + ), + ( + 'eagle-shot-golf', + 'Eagle Shot Golf', + 'Sammy', + 1994, + array['Eagle Shot Golf (US)'], + array['Sports'], + '{"mame":["eaglshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'ec-65', + 'EC-65', + 'Elektor', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ec65"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektor/ec65.cpp"]}'::jsonb + ), + ( + 'ec-7915-ec-7950', + 'EC-7915 (EC-7950)', + 'Mera-Elzab', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ec7915"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mera/ec7915.cpp"]}'::jsonb + ), + ( + 'eco-fighters', + 'Eco Fighters', + 'Capcom', + 1993, + array['Eco Fighters (World 931203)'], + array['Arcade'], + '{"mame":["ecofghtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'eeekk', + 'Eeekk!', + 'Epos Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["eeekk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'egg-hunt', + 'Egg Hunt', + 'Invi Image', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["egghunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/egghunt.cpp"]}'::jsonb + ), + ( + 'egg-venture-release-10', + 'Egg Venture (Release 10)', + 'ICE / The Game Room', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["eggventr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/lethalj.cpp"]}'::jsonb + ), + ( + 'eggor', + 'Eggor', + 'Telko', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["eggor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'eggs-playing-chicken', + 'Eggs Playing Chicken', + 'The Game Room', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["eggsplc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/calchase.cpp"]}'::jsonb + ), + ( + 'ehrgeiz', + 'Ehrgeiz', + 'Square / Namco', + 1998, + array['Ehrgeiz (World, EG2/VER.A)'], + array['Arcade'], + '{"mame":["ehrgeiz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'eibise', + 'Eibise', + 'Taito', + 1990, + array['Eibise (Japan)'], + array['Arcade'], + '{"mame":["eibise"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_o.cpp"]}'::jsonb + ), + ( + 'eight-ball-action', + 'Eight Ball Action', + 'Seatongrove UK, Ltd. (Magic Electronics USA license)', + 1984, + array['Eight Ball Action (DK conversion)'], + array['Arcade'], + '{"mame":["8ballact"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'eight-forces', + 'Eight Forces', + 'Tecmo', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["eightfrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'eight-man-ngm-025-ngh-025', + 'Eight Man (NGM-025 ~ NGH-025)', + 'SNK / Pallas', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["eightman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'einstein-256', + 'Einstein 256', + 'Tatung', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["einst256"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatung/einstein.cpp"]}'::jsonb + ), + ( + 'einstein-tc-01', + 'Einstein TC-01', + 'Tatung', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["einstein"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatung/einstein.cpp"]}'::jsonb + ), + ( + 'ejihon-tantei-jimusho-j-950613-v1-000', + 'Ejihon Tantei Jimusho (J 950613 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["ejihon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'el-dorado-v5-1dr', + 'El Dorado (V5.1DR)', + 'Dyna', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["eldoradd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'el-fin-del-tiempo', + 'El Fin Del Tiempo', + 'Niemer', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["efdt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/efdt.cpp"]}'::jsonb + ), + ( + 'el-grande-5-card-draw-new', + 'El Grande - 5 Card Draw (New)', + 'Tuni Electro Service', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["elgrande"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'eldorado-4-2', + 'Eldorado (4.2)', + 'Shangai Games', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["eldoralg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'eldorado-chess-challenger', + 'Eldorado Chess Challenger', + 'Fidelity Electronics International / CXG Systems', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["feldo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/eldorado.cpp"]}'::jsonb + ), + ( + 'electronic-chess-tryom', + 'Electronic Chess (Tryom)', + 'Tryom', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["tchess"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tryom/chess.cpp"]}'::jsonb + ), + ( + 'electronic-milton', + 'Electronic Milton', + 'Milton Bradley', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["milton"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["miltonbradley/milton6805.cpp"]}'::jsonb + ), + ( + 'electronic-tool-pi-et1', + 'Electronic Tool PI-ET1', + 'NEC', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["piet1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/piet1.cpp"]}'::jsonb + ), + ( + 'electronic-voice-alert-24-function', + 'Electronic Voice Alert (24-function)', + 'Chrysler', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["eva24"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/eva.cpp"]}'::jsonb + ), + ( + 'elegance-chess-challenger-model-6085', + 'Elegance Chess Challenger (model 6085)', + 'Fidelity International', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["feleg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/elegance.cpp"]}'::jsonb + ), + ( + 'elektor-sc-mp', + 'Elektor SC/MP', + 'Elektor', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["elekscmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektor/elekscmp.cpp"]}'::jsonb + ), + ( + 'elephant-family-italian-new', + 'Elephant Family (Italian, new)', + 'C.M.C.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["elephfam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'elevator-action', + 'Elevator Action', + 'Taito Corporation', + 1983, + array['Elevator Action (BA3, 4 PCB version, 1.1)'], + array['Arcade'], + '{"mame":["elevator"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'elevator-action-returns', + 'Elevator Action Returns', + 'Taito Corporation Japan', + 1994, + array['Elevator Action Returns (Ver 2.2O 1995/02/20)'], + array['Arcade'], + '{"mame":["elvactr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'eleven-beat', + 'Eleven Beat', + 'Hudson', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["11beat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'elf-ii', + 'Elf II', + 'Netronics', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["elf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["netronics/elf.cpp"]}'::jsonb + ), + ( + 'elfin', + 'Elfin', + 'dgPIX Entertainment Inc.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["elfin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'eliminator', + 'Eliminator', + 'Gremlin', + 1981, + array['Eliminator (2 Players, set 1)'], + array['Arcade'], + '{"mame":["elim2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80v.cpp"]}'::jsonb + ), + ( + 'elite-a-s-challenger-original-program', + 'Elite A/S Challenger (original program)', + 'Fidelity Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["feas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/elite.cpp"]}'::jsonb + ), + ( + 'elite-avant-garde-model-6081', + 'Elite Avant Garde (model 6081)', + 'Fidelity International', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["feag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/elite.cpp"]}'::jsonb + ), + ( + 'elite-avant-garde-2265', + 'Elite Avant Garde 2265', + 'Fidelity International', + 1989, + array['Elite Avant Garde 2265 (model 6114-2/3/4, set 1)'], + array['Arcade'], + '{"mame":["feagv4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/eag68k.cpp"]}'::jsonb + ), + ( + 'elite-champion-challenger', + 'Elite Champion Challenger', + 'Fidelity Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["csce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/csc.cpp"]}'::jsonb + ), + ( + 'elite-premiere', + 'Elite Premiere', + 'Fidelity Electronics International', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["premiere"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/eag68k.cpp"]}'::jsonb + ), + ( + 'elvis', + 'Elvis?', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["elvis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'emax-ii-16-bit-digital-sound-system', + 'Emax II 16-Bit Digital Sound System', + 'E-mu Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["emax2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emax.cpp"]}'::jsonb + ), + ( + 'embargo', + 'Embargo', + 'Cinematronics', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["embargo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/embargo.cpp"]}'::jsonb + ), + ( + 'emerald-classic-plus', + 'Emerald Classic Plus', + 'Novag Industries / Intelligent Heuristic Programming', + 1997, + '{}'::text[], + array['Classic'], + '{"mame":["emerclp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/emerclp.cpp"]}'::jsonb + ), + ( + 'emeraldia', + 'Emeraldia', + 'Namco', + 1993, + array['Emeraldia (World)'], + array['Arcade'], + '{"mame":["emeralda"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'emergency-call-ambulance-export', + 'Emergency Call Ambulance (Export)', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["eca"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'empire-city-1931', + 'Empire City: 1931', + 'Seibu Kaihatsu', + 1986, + array['Empire City: 1931 (bootleg?)'], + array['Arcade'], + '{"mame":["empcity"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/stfight.cpp"]}'::jsonb + ), + ( + 'emulator-ii', + 'Emulator II', + 'E-mu Systems', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["emu2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu2.cpp"]}'::jsonb + ), + ( + 'emulator-three-digital-sound-production-system', + 'Emulator Three Digital Sound Production System', + 'E-mu Systems', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["emu3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu3.cpp"]}'::jsonb + ), + ( + 'enchanted-lamp', + 'Enchanted Lamp', + 'Konami', + null, + array['Enchanted Lamp (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["enchlamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'endless-riches', + 'Endless Riches', + 'E.N.Tiger', + 1999, + array['Endless Riches (Ver 1.21)'], + array['Arcade'], + '{"mame":["endrichs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'endura-ts-28', + 'Endura TS-28', + 'Falco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ts28"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["falco/falcots28.cpp"]}'::jsonb + ), + ( + 'enduro-racer', + 'Enduro Racer', + 'Sega', + 1986, + array['Enduro Racer (Rev A, YM2151, FD1089B 317-0013A)'], + array['Arcade'], + '{"mame":["enduror"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segahang.cpp"]}'::jsonb + ), + ( + 'enforce', + 'Enforce', + 'Taito Corporation Japan', + 1988, + array['Enforce (World)'], + array['Arcade'], + '{"mame":["enforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'enigma-ii', + 'Enigma II', + 'Zilec Electronics (Game Plan license)', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["enigma2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/enigma2.cpp"]}'::jsonb + ), + ( + 'enma-daio', + 'Enma Daio', + 'Toaplan / Taito', + 1993, + array['Enma Daio (Japan)'], + array['Arcade'], + '{"mame":["enmadaio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/enmadaio.cpp"]}'::jsonb + ), + ( + 'enterprise-250', + 'Enterprise 250', + 'Sun Microsystems', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["e250"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/e250.cpp"]}'::jsonb + ), + ( + 'enterprise-sixty-four', + 'Enterprise Sixty Four', + 'Intelligent Software / Enterprise Computers', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ep64"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["enterprise/ep64.cpp"]}'::jsonb + ), + ( + 'eps', + 'EPS', + 'Ensoniq', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["eps"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq5505.cpp"]}'::jsonb + ), + ( + 'epson-hx-20', + 'Epson HX-20', + 'Epson', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ehx20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["epson/hx20.cpp"]}'::jsonb + ), + ( + 'equites', + 'Equites', + 'Alpha Denshi Co.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["equites"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/equites.cpp"]}'::jsonb + ), + ( + 'ergo-201-special-9233', + 'ERGO 201 (Special #9233)', + 'Micro-Term / Kurzweil Computer Products', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ergo201"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microterm/ergo201.cpp"]}'::jsonb + ), + ( + 'ericsson-pc', + 'Ericsson PC', + 'Ericsson Information System', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["epc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ericsson/eispc.cpp"]}'::jsonb + ), + ( + 'es-210', + 'ES-210', + 'Walther', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["wales210"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nakajima/nakajies.cpp"]}'::jsonb + ), + ( + 'escape-from-the-planet-of-the-robot-monsters', + 'Escape from the Planet of the Robot Monsters', + 'Atari Games', + 1989, + array['Escape from the Planet of the Robot Monsters (set 1)'], + array['Arcade'], + '{"mame":["eprom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/eprom.cpp"]}'::jsonb + ), + ( + 'escape-kids', + 'Escape Kids', + 'Konami', + 1991, + array['Escape Kids (Asia, 4 Players)'], + array['Arcade'], + '{"mame":["esckids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/vendetta.cpp"]}'::jsonb + ), + ( + 'esh-s-aurunmilla', + 'Esh''s Aurunmilla', + 'Funai/Gakken', + 1983, + array['Esh''s Aurunmilla (set 1)'], + array['Arcade'], + '{"mame":["esh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esh.cpp"]}'::jsonb + ), + ( + 'esp-ra-de', + 'ESP Ra.De.', + 'Cave (Atlus license)', + 1998, + array['ESP Ra.De. (World, 1998 4/22 International Ver.)'], + array['Arcade'], + '{"mame":["esprade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'espgaluda', + 'Espgaluda', + 'Cave (AMI license)', + 2003, + array['Espgaluda (2003/10/15 Master Ver)'], + array['Arcade'], + '{"mame":["espgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'espgaluda-ii', + 'Espgaluda II', + 'Cave (AMI license)', + 2005, + array['Espgaluda II (Japan, 2005/11/14.MASTER VER.)'], + array['Arcade'], + '{"mame":["espgal2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'espial', + 'Espial', + 'Orca / Thunderbolt', + 1983, + array['Espial (Europe)'], + array['Arcade'], + '{"mame":["espial"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/espial.cpp"]}'::jsonb + ), + ( + 'esq-1-digital-wave-synthesizer', + 'ESQ-1 Digital Wave Synthesizer', + 'Ensoniq', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["esq1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq1.cpp"]}'::jsonb + ), + ( + 'eti-660-learners-microcomputer', + 'ETI-660 Learners'' Microcomputer', + 'Electronics Today International', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["eti660"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/eti660.cpp"]}'::jsonb + ), + ( + 'euro-champ-92', + 'Euro Champ ''92', + 'Taito Corporation Japan', + 1992, + array['Euro Champ ''92 (World)'], + array['Arcade'], + '{"mame":["euroch92"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'euro-double-star-record', + 'Euro Double Star Record', + '', + null, + array['Euro Double Star Record (ver.1.2)'], + array['Arcade'], + '{"mame":["eurodsr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'euro-jolly-x5', + 'Euro Jolly X5', + 'Solar Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ejollyx5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl3.cpp"]}'::jsonb + ), + ( + 'euro-jolly-x9', + 'Euro Jolly X9', + 'Solar Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ejollyx9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl3.cpp"]}'::jsonb + ), + ( + 'euro-pass', + 'Euro Pass', + '', + null, + array['Euro Pass (Ver 1.1)'], + array['Arcade'], + '{"mame":["europass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'europa-2002', + 'Europa 2002', + 'Nazionale Elettronica', + 2001, + array['Europa 2002 (Ver 2.0, set 1)'], + array['Arcade'], + '{"mame":["euro2k2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'europlay-2001', + 'EuroPlay 2001', + 'Sleic / Petaco', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["europl01"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/startouch.cpp"]}'::jsonb + ), + ( + 'evil-night', + 'Evil Night', + 'Konami', + 1998, + array['Evil Night (ver UBA)'], + array['Arcade'], + '{"mame":["evilngt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamim2.cpp"]}'::jsonb + ), + ( + 'evil-stone', + 'Evil Stone', + 'Spacy Industrial, Ltd.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["evilston"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'evolution-soccer', + 'Evolution Soccer', + 'Evoga / BrezzaSoft', + 2001, + '{}'::text[], + array['Sports'], + '{"mame":["evosocc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'ews4800-310', + 'EWS4800/310', + 'NEC', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ews4800_310"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/ews4800.cpp"]}'::jsonb + ), + ( + 'excalibur-64', + 'Excalibur 64', + 'BGR Computers', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["excali64"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/excali64.cpp"]}'::jsonb + ), + ( + 'excel-68000', + 'Excel 68000', + 'Fidelity International', + 1987, + array['Excel 68000 (set 1)'], + array['Arcade'], + '{"mame":["fex68k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/eag68k.cpp"]}'::jsonb + ), + ( + 'excelsior', + 'Excelsior', + 'Playmark', + 1996, + array['Excelsior (set 1)'], + array['Arcade'], + '{"mame":["excelsr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/playmark.cpp"]}'::jsonb + ), + ( + 'excite-league-fd1094-317-0079', + 'Excite League (FD1094 317-0079)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["exctleag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'excite-sports-wireless-interactive-tv-game-48-in-1-ntsc', + 'Excite Sports Wireless Interactive TV Game - 48-in-1 (NTSC)', + 'Excite', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["exsprt48"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'excitebike-playchoice-10', + 'Excitebike (PlayChoice-10)', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_ebike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'exciting-animal-land-jr', + 'Exciting Animal Land Jr.', + 'Nakanihon / East Technology (Taito license)', + 1993, + array['Exciting Animal Land Jr. (USA, Canada, Mexico)'], + array['Arcade'], + '{"mame":["animaljr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'exciting-black-jack', + 'Exciting Black Jack', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["excitbj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky74.cpp"]}'::jsonb + ), + ( + 'exciting-soccer', + 'Exciting Soccer', + 'Alpha Denshi Co.', + 1983, + '{}'::text[], + array['Sports'], + '{"mame":["exctsccr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/champbas.cpp"]}'::jsonb + ), + ( + 'exciting-soccer-ii', + 'Exciting Soccer II', + 'Alpha Denshi Co.', + 1984, + '{}'::text[], + array['Sports'], + '{"mame":["exctscc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/champbas.cpp"]}'::jsonb + ), + ( + 'executive', + 'Executive', + 'Osborne', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["osbexec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["osborne/osbexec.cpp"]}'::jsonb + ), + ( + 'exed-exes', + 'Exed Exes', + 'Capcom', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["exedexes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/exedexes.cpp"]}'::jsonb + ), + ( + 'exerion', + 'Exerion', + 'Jaleco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["exerion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/exerion.cpp"]}'::jsonb + ), + ( + 'exorterm-155', + 'EXORterm 155', + 'Motorola', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["exorterm155"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/exorterm.cpp"]}'::jsonb + ), + ( + 'explorer', + 'Explorer', + 'Data East Corporation', + 1982, + array['Explorer (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cexplore"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'explorer-85', + 'Explorer/85', + 'Netronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["exp85"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["netronics/exp85.cpp"]}'::jsonb + ), + ( + 'explosive-breaker', + 'Explosive Breaker', + 'Kaneko', + 1992, + array['Explosive Breaker (World)'], + array['Arcade'], + '{"mame":["explbrkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'express-card-top-card', + 'Express Card / Top Card', + 'Subsino (American Alpha license)', + 1998, + array['Express Card / Top Card (Ver. 1.5)'], + array['Arcade'], + '{"mame":["expcard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'express-raider', + 'Express Raider', + 'Data East Corporation', + 1986, + array['Express Raider (World, Rev 4)'], + array['Arcade'], + '{"mame":["exprraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/exprraid.cpp"]}'::jsonb + ), + ( + 'extermination', + 'Extermination', + 'Taito Corporation Japan', + 1987, + array['Extermination (World)'], + array['Arcade'], + '{"mame":["extrmatn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'exterminator', + 'Exterminator', + 'Premier Technology', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["exterm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/exterm.cpp"]}'::jsonb + ), + ( + 'extra-bases', + 'Extra Bases', + 'Dave Nutting Associates / Midway', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ebases"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'extra-draw-v100ve', + 'Extra Draw (V100VE)', + 'IGS', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["extradrw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'extra-inning-ball-park-ii', + 'Extra Inning / Ball Park II', + 'Midway / Taito', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["einning"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'extreme-downhill-v1-5', + 'Extreme Downhill (v1.5)', + 'Sammy Industries Japan', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["extdwnhl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'extreme-hunting', + 'Extreme Hunting', + 'Sammy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["xtrmhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'extreme-hunting-2', + 'Extreme Hunting 2', + 'Sega', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["xtrmhnt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'exvania', + 'Exvania', + 'Namco', + 1992, + array['Exvania (World)'], + array['Arcade'], + '{"mame":["exvania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'exzisus', + 'Exzisus', + 'Taito Corporation', + 1987, + array['Exzisus (Japan, dedicated)'], + array['Arcade'], + '{"mame":["exzisus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/exzisus.cpp"]}'::jsonb + ), + ( + 'exzisus-ex-1-0-magnet-system', + 'Exzisus (EX 1.0, Magnet System)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_exzi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'eyes', + 'Eyes', + 'Techstar (Rock-Ola license)', + 1982, + array['Eyes (US, set 1)'], + array['Arcade'], + '{"mame":["eyes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'ez-touch', + 'EZ Touch', + 'IGS', + null, + array['EZ Touch (v116 China)'], + array['Arcade'], + '{"mame":["eztouch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspc.cpp"]}'::jsonb + ), + ( + 'ez2dancer-2nd-move', + 'Ez2dancer 2nd Move', + 'Amuse World', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ez2d2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ez2d.cpp"]}'::jsonb + ), + ( + 'f-1-dream', + 'F-1 Dream', + 'Capcom (Romstar license)', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["f1dream"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/tigeroad.cpp"]}'::jsonb + ), + ( + 'f-1-grand-prix', + 'F-1 Grand Prix', + 'Video System Co.', + 1991, + array['F-1 Grand Prix (set 1)'], + array['Arcade'], + '{"mame":["f1gp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/f1gp.cpp"]}'::jsonb + ), + ( + 'f-1-grand-prix-part-ii', + 'F-1 Grand Prix Part II', + 'Video System Co.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["f1gp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/f1gp.cpp"]}'::jsonb + ), + ( + 'f-1-grand-prix-star-ii', + 'F-1 Grand Prix Star II', + 'Jaleco', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["f1gpstr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'f-1-super-battle', + 'F-1 Super Battle', + 'Jaleco', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["f1superb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'f-15-strike-eagle', + 'F-15 Strike Eagle', + 'Microprose Games Inc.', + 1991, + array['F-15 Strike Eagle (rev. 2.2 02/25/91, 29K ver. 3.1f)'], + array['Arcade'], + '{"mame":["f15se"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/micro3d.cpp"]}'::jsonb + ), + ( + 'f-zero-nintendo-super-system', + 'F-Zero (Nintendo Super System)', + 'Nintendo', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_fzer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'f-zero-ax-gdt-0004e', + 'F-Zero AX (GDT-0004E)', + 'Sega / Amusement Vision / Nintendo', + 2003, + array['F-Zero AX (Rev E) (GDT-0004E)'], + array['Arcade'], + '{"mame":["fzeroax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'f-zero-ax-monster-ride', + 'F-Zero AX Monster Ride', + 'Sega / Amusement Vision / Nintendo', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["fzeroaxm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'f1-exhaust-note', + 'F1 Exhaust Note', + 'Sega', + 1991, + array['F1 Exhaust Note (World, Rev A)'], + array['Arcade'], + '{"mame":["f1en"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'f1-super-lap', + 'F1 Super Lap', + 'Sega', + 1993, + array['F1 Super Lap (World)'], + array['Arcade'], + '{"mame":["f1lap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'f387x-pep-system', + 'F387X PEP System', + 'Fairchild Instrument & Camera Corporation', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["f387x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fairchild/f387x.cpp"]}'::jsonb + ), + ( + 'f5-handheld-game-console-620-in-1', + 'F5 Handheld Game Console (620-in-1)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["f5_620"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'face-off', + 'Face Off', + 'Namco', + 1988, + array['Face Off (Japan 2 Players)'], + array['Arcade'], + '{"mame":["faceoff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'fail-gate', + 'Fail Gate', + 'Success (Seibu Kaihatsu license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["failgate"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/airraid.cpp"]}'::jsonb + ), + ( + 'falco-5220e', + 'Falco 5220e', + 'Falco Data Products', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["falco5220e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["falco/falco500.cpp"]}'::jsonb + ), + ( + 'falcon030', + 'Falcon030', + 'Atari', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["falcon30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarist.cpp"]}'::jsonb + ), + ( + 'falcons-wild-wild-card-1991-tvg', + 'Falcons Wild - Wild Card 1991 (TVG)', + 'TVG', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["falcnwld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'famicombox', + 'FamicomBox', + 'Nintendo', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["famibox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/famibox.cpp"]}'::jsonb + ), + ( + 'family-bowl', + 'Family Bowl', + 'Namco', + 1997, + array['Family Bowl (Japan, FB1/VER.A V1.00)'], + array['Arcade'], + '{"mame":["fambowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'family-pocket-638-in-1', + 'Family Pocket 638 in 1', + '', + 2017, + '{}'::text[], + array['Arcade'], + '{"mame":["fapocket"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'fancy-world-earth-of-crisis', + 'Fancy World - Earth of Crisis', + 'Unico', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["fncywld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'fantasia', + 'Fantasia', + 'Comad & New Japan System', + 1994, + array['Fantasia (940429 PCB, set 1)'], + array['Arcade'], + '{"mame":["fantasia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'fantasia-ii-explicit', + 'Fantasia II (Explicit)', + 'Comad', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["fantsia2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'fantastic', + 'Fantastic', + 'Taito do Brasil', + null, + array['Fantastic (Galaga conversion on Galaxian hardware)'], + array['Arcade'], + '{"mame":["fantastc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'fantastic-journey', + 'Fantastic Journey', + 'Konami', + 1994, + array['Fantastic Journey (ver EAA)'], + array['Arcade'], + '{"mame":["fantjour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'fantasy', + 'Fantasy', + 'SNK (Rock-Ola license)', + 1981, + array['Fantasy (US)'], + array['Arcade'], + '{"mame":["fantasyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk6502.cpp"]}'::jsonb + ), + ( + 'fantasy-land', + 'Fantasy Land', + 'Electronic Devices Italy', + null, + array['Fantasy Land (set 1)'], + array['Arcade'], + '{"mame":["fantland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/fantland.cpp"]}'::jsonb + ), + ( + 'fantasy-story', + 'Fantasy Story', + 'Z Soft', + 2002, + array['Fantasy Story (set 1)'], + array['Arcade'], + '{"mame":["fantstry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'fantasy-zone', + 'Fantasy Zone', + 'Sega', + 1986, + array['Fantasy Zone (Rev A, unprotected)'], + array['Arcade'], + '{"mame":["fantzone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'fantasy-zone-j-990202-v1-000', + 'Fantasy Zone (J 990202 V1.000)', + 'Sega', + 1999, + array['Fantasy Zone (medal game, REV.A) (J 990202 V1.000)'], + array['Arcade'], + '{"mame":["fanzonem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'fantasy-zone-mega-tech-sms-based', + 'Fantasy Zone (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_fz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'fantasy-zone-ii-the-tears-of-opa-opa', + 'Fantasy Zone II - The Tears of Opa-Opa', + 'Sega / M2', + 2008, + array['Fantasy Zone II - The Tears of Opa-Opa (System 16C version)'], + array['Arcade'], + '{"mame":["fantzn2x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'fantasy-zone-ii-the-tears-of-opa-opa-mc-8123-317-0057', + 'Fantasy Zone II - The Tears of Opa-Opa (MC-8123, 317-0057)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["fantzn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'far-east-of-eden-kabuki-klash-tengai-makyou-shin-den', + 'Far East of Eden - Kabuki Klash / Tengai Makyou - Shin Den', + 'Hudson', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["kabukikl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'fashion-gambler', + 'Fashion Gambler', + 'ADP', + 1997, + array['Fashion Gambler (set 1)'], + array['Arcade'], + '{"mame":["fashiong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/adp.cpp"]}'::jsonb + ), + ( + 'fast-draw', + 'Fast Draw', + 'Stern Electronics', + null, + array['Fast Draw (poker conversion kit)'], + array['Arcade'], + '{"mame":["fastdrwp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'fast-draw-showdown-v1-31', + 'Fast Draw Showdown (v1.31)', + 'American Laser Games', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["fastdraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'fast-invaders', + 'Fast Invaders', + 'Fiberglass', + 1979, + array['Fast Invaders (6845 version)'], + array['Arcade'], + '{"mame":["fi6845"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/fastinvaders.cpp"]}'::jsonb + ), + ( + 'fast-lane', + 'Fast Lane', + 'Konami', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["fastlane"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/fastlane.cpp"]}'::jsonb + ), + ( + 'faster-than-speed', + 'Faster Than Speed', + 'Sammy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["ftspeed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'faster-harder-more-challenging-q-bert', + 'Faster, Harder, More Challenging Q*bert', + 'Mylstar', + 1983, + array['Faster, Harder, More Challenging Q*bert (prototype)'], + array['Puzzle', 'Classic'], + '{"mame":["sqbert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'fatal-fury-king-of-fighters-garou-densetsu-shukumei-no-tatakai-ngm-033-ngh-033', + 'Fatal Fury - King of Fighters / Garou Densetsu - Shukumei no Tatakai (NGM-033 ~ NGH-033)', + 'SNK', + 1991, + '{}'::text[], + array['Fighting'], + '{"mame":["fatfury1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'fatal-fury-2-garou-densetsu-2-arata-naru-tatakai-ngm-047-ngh-047', + 'Fatal Fury 2 / Garou Densetsu 2 - Arata-naru Tatakai (NGM-047 ~ NGH-047)', + 'SNK', + 1992, + '{}'::text[], + array['Fighting'], + '{"mame":["fatfury2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'fatal-fury-3-road-to-the-final-victory-garou-densetsu-3-haruka-naru-tatakai-ngm-069-ngh-06', + 'Fatal Fury 3 - Road to the Final Victory / Garou Densetsu 3 - Haruka-naru Tatakai (NGM-069 ~ NGH-069)', + 'SNK', + 1995, + '{}'::text[], + array['Fighting'], + '{"mame":["fatfury3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'fatal-fury-special', + 'Fatal Fury Special', + 'bootleg', + null, + array['Fatal Fury Special (SNES bootleg with timer)'], + array['Fighting'], + '{"mame":["fatfurspb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb51.cpp"]}'::jsonb + ), + ( + 'fatal-fury-special-garou-densetsu-special', + 'Fatal Fury Special / Garou Densetsu Special', + 'SNK', + 1993, + array['Fatal Fury Special / Garou Densetsu Special (NGM-058 ~ NGH-058, set 1)'], + array['Fighting'], + '{"mame":["fatfursp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'fatal-fury-wild-ambition-garou-densetsu-wild-ambition', + 'Fatal Fury: Wild Ambition / Garou Densetsu: Wild Ambition', + 'SNK', + 1998, + array['Fatal Fury: Wild Ambition / Garou Densetsu: Wild Ambition (rev.A)'], + array['Fighting'], + '{"mame":["fatfurwa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'fate-unlimited-codes', + 'Fate: Unlimited Codes', + 'Capcom / Namco', + 2008, + array['Fate: Unlimited Codes (FUD1 ver. A)'], + array['Arcade'], + '{"mame":["fateulc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'fatman', + 'FatMan', + 'PAiA Electronics', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["fatman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["paia/fatman.cpp"]}'::jsonb + ), + ( + 'fax', + 'FAX', + 'Exidy', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["fax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'fb-01-fm-sound-generator', + 'FB-01 FM Sound Generator', + 'Yamaha', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["fb01"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/fb01.cpp"]}'::jsonb + ), + ( + 'fc-compact-88-in-1-cc-sffc-wt', + 'FC Compact 88-in-1 (CC-SFFC-WT)', + 'Columbus Circle', + null, + array['FC Compact 88-in-1 (CC-SFFC-WT) (Japan)'], + array['Arcade'], + '{"mame":["fccomp88"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'fc-pocket-600-in-1', + 'FC Pocket 600 in 1', + '', + 2016, + '{}'::text[], + array['Arcade'], + '{"mame":["fcpocket"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'fearless-pinocchio', + 'Fearless Pinocchio', + 'IGS (American Alpha license)', + 2006, + array['Fearless Pinocchio (V101US)'], + array['Arcade'], + '{"mame":["fearless"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_fear.cpp"]}'::jsonb + ), + ( + 'fengdou-jiaqiang-ban', + 'Fengdou Jiaqiang Ban', + 'Sealy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["fdjqb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_m16c.cpp"]}'::jsonb + ), + ( + 'fengkuang-dou-dizhu', + 'Fengkuang Dou Dizhu', + 'Sealy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["fkddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_m16c.cpp"]}'::jsonb + ), + ( + 'fengkuang-dou-dizhu-ii', + 'Fengkuang Dou Dizhu II', + 'Sealy', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["fkddz2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/menghong.cpp"]}'::jsonb + ), + ( + 'fengyun-hui', + 'Fengyun Hui', + 'BMC', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["fengyunh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/bmcpokr.cpp"]}'::jsonb + ), + ( + 'ferie-kitten', + 'Ferie Kitten', + 'Sega', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["ferieki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_ferie.cpp"]}'::jsonb + ), + ( + 'ferie-puppy', + 'Ferie Puppy', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["feriepu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_ferie.cpp"]}'::jsonb + ), + ( + 'ferie-world-travel', + 'Ferie World Travel', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["feriewt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_ferie.cpp"]}'::jsonb + ), + ( + 'ferrari-f355-challenge-deluxe-no-link', + 'Ferrari F355 Challenge (deluxe, no link)', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["f355"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'ferrari-f355-challenge-twin-deluxe', + 'Ferrari F355 Challenge (twin/deluxe)', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["f355twin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'ferrari-f355-challenge-2-international-course-edition-twin-deluxe', + 'Ferrari F355 Challenge 2 - International Course Edition (twin/deluxe)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["f355twn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'festival-goldfish-scoop', + 'Festival: Goldfish Scoop', + 'Cave', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["fstgfish"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/fstgfish.cpp"]}'::jsonb + ), + ( + 'fever-13', + 'Fever 13', + 'Excellent System', + 1995, + array['Fever 13 (Japan, v1.3)'], + array['Arcade'], + '{"mame":["fever13"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'fever-chance', + 'Fever Chance', + 'Wing Co., Ltd.', + 1986, + array['Fever Chance (W-6, Japan, set 1)'], + array['Arcade'], + '{"mame":["feverch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'fever-soccer', + 'Fever Soccer', + 'Seibu Kaihatsu', + 2004, + '{}'::text[], + array['Sports'], + '{"mame":["feversoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/feversoc.cpp"]}'::jsonb + ), + ( + 'fever-sos', + 'Fever SOS', + 'Cave (Nihon System license)', + 1998, + array['Fever SOS (World, 98/09/25 VER)'], + array['Arcade'], + '{"mame":["feversos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'field-combat', + 'Field Combat', + 'Jaleco', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["fcombat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/fcombat.cpp"]}'::jsonb + ), + ( + 'field-day', + 'Field Day', + 'Taito Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["fieldday"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/40love.cpp"]}'::jsonb + ), + ( + 'field-goal', + 'Field Goal', + 'Taito', + 1979, + array['Field Goal (set 1)'], + array['Arcade'], + '{"mame":["fgoal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/fgoal.cpp"]}'::jsonb + ), + ( + 'fight-fever-wang-jung-wang', + 'Fight Fever / Wang Jung Wang', + 'Viccom', + 1994, + array['Fight Fever / Wang Jung Wang (set 1)'], + array['Arcade'], + '{"mame":["fightfev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'fighter-and-attacker', + 'Fighter & Attacker', + 'Namco', + 1992, + array['Fighter & Attacker (US)'], + array['Arcade'], + '{"mame":["fghtatck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'fighter-s-history', + 'Fighter''s History', + 'Data East Corporation', + 1993, + array['Fighter''s History (World ver 43-09, DE-0395-1 PCB)'], + array['Arcade'], + '{"mame":["fghthist"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco32.cpp"]}'::jsonb + ), + ( + 'fighting-basketball', + 'Fighting Basketball', + 'Paradise Co. Ltd.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["fghtbskt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m63.cpp"]}'::jsonb + ), + ( + 'fighting-hawk', + 'Fighting Hawk', + 'Taito Corporation Japan', + 1988, + array['Fighting Hawk (World)'], + array['Arcade'], + '{"mame":["fhawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'fighting-ice-hockey', + 'Fighting Ice Hockey', + 'Data East Corporation', + 1984, + array['Fighting Ice Hockey (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cfghtice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'fighting-layer', + 'Fighting Layer', + 'Arika / Namco', + 1998, + array['Fighting Layer (Asia, FTL3/VER.A)'], + array['Arcade'], + '{"mame":["fgtlayer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'fighting-mania', + 'Fighting Mania', + 'Konami', + 2000, + array['Fighting Mania (QG918 VER. EAA)'], + array['Arcade'], + '{"mame":["fghtmn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'fighting-roller', + 'Fighting Roller', + 'Kaneko (Taito license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["fightrol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/rollrace.cpp"]}'::jsonb + ), + ( + 'fighting-soccer', + 'Fighting Soccer', + 'SNK', + 1988, + array['Fighting Soccer (version 4)'], + array['Sports'], + '{"mame":["fsoccer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'fighting-vipers', + 'Fighting Vipers', + 'Sega', + 1995, + array['Fighting Vipers (Revision D)'], + array['Arcade'], + '{"mame":["fvipers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'fighting-vipers-2', + 'Fighting Vipers 2', + 'Sega', + 1998, + array['Fighting Vipers 2 (Revision A)'], + array['Arcade'], + '{"mame":["fvipers2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'fighting-wu-shu-2nd', + 'Fighting Wu-Shu 2nd!', + 'Konami', + 1997, + array['Fighting Wu-Shu 2nd! (ver JAA)'], + array['Arcade'], + '{"mame":["bujutsu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/cobra.cpp"]}'::jsonb + ), + ( + 'filthy-rich-english', + 'Filthy Rich (English)', + 'WMS', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["filthyr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'final-blow', + 'Final Blow', + 'Taito Corporation Japan', + 1988, + array['Final Blow (World)'], + array['Arcade'], + '{"mame":["finalb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'final-fight', + 'Final Fight', + 'Capcom', + 1989, + array['Final Fight (World, set 1)'], + array['Beat em up'], + '{"mame":["ffight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'final-fight-2', + 'Final Fight 2', + 'bootleg', + 1996, + array['Final Fight 2 (SNES bootleg)'], + array['Beat em up'], + '{"mame":["ffight2b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'final-fight-3', + 'Final Fight 3', + 'bootleg', + null, + array['Final Fight 3 (SNES bootleg, set 1)'], + array['Beat em up'], + '{"mame":["ffight3b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'final-fight-revenge-final-revenge-juet-990930-v1-100', + 'Final Fight Revenge / Final Revenge (JUET 990930 V1.100)', + 'Capcom', + 1999, + '{}'::text[], + array['Beat em up'], + '{"mame":["ffreveng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'final-furlong', + 'Final Furlong', + 'Namco', + 1997, + array['Final Furlong (World, FF2 Ver. A)'], + array['Arcade'], + '{"mame":["finfurl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'final-furlong-2', + 'Final Furlong 2', + 'Namco', + 1998, + array['Final Furlong 2 (World, FFS2 Ver. A)'], + array['Arcade'], + '{"mame":["finfurl2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'final-godori', + 'Final Godori', + 'SemiCom', + 2001, + array['Final Godori (Korea, version 2.20.5915)'], + array['Arcade'], + '{"mame":["finalgdr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'final-lap', + 'Final Lap', + 'Namco', + 1987, + array['Final Lap (Rev E)'], + array['Arcade'], + '{"mame":["finallap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'final-lap-2', + 'Final Lap 2', + 'Namco', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["finalap2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'final-lap-3', + 'Final Lap 3', + 'Namco', + 1992, + array['Final Lap 3 (World, Rev C)'], + array['Arcade'], + '{"mame":["finalap3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'final-lap-r', + 'Final Lap R', + 'Namco', + 1994, + array['Final Lap R (Rev. B)'], + array['Arcade'], + '{"mame":["finalapr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcofl.cpp"]}'::jsonb + ), + ( + 'final-star-force', + 'Final Star Force', + 'Tecmo', + 1992, + array['Final Star Force (US)'], + array['Arcade'], + '{"mame":["fstarfrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo16.cpp"]}'::jsonb + ), + ( + 'final-tetris', + 'Final Tetris', + 'Jeil Computer System', + 1993, + '{}'::text[], + array['Puzzle'], + '{"mame":["finalttr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'finalizer-super-transformation', + 'Finalizer: Super Transformation', + 'Konami', + 1985, + array['Finalizer: Super Transformation (set 1)'], + array['Arcade'], + '{"mame":["finalizr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/finalizr.cpp"]}'::jsonb + ), + ( + 'find-out', + 'Find Out', + 'Elettronolo', + 1987, + array['Find Out (Version 4.04, set 1)'], + array['Arcade'], + '{"mame":["findout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'finest-hour', + 'Finest Hour', + 'Namco', + 1989, + array['Finest Hour (Japan)'], + array['Arcade'], + '{"mame":["finehour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'finger-dancing', + 'Finger Dancing', + 'Orb Gaming', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["fingerd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'fire-ball-fm-work', + 'Fire Ball (FM Work)', + 'FM Work', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["fball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lwings.cpp"]}'::jsonb + ), + ( + 'fire-battle', + 'Fire Battle', + 'Woodplace Inc. (Taito license)', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["firebatl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/clshroad.cpp"]}'::jsonb + ), + ( + 'fire-fox', + 'Fire Fox', + 'Atari', + 1984, + array['Fire Fox (set 1)'], + array['Arcade'], + '{"mame":["firefox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/firefox.cpp"]}'::jsonb + ), + ( + 'fire-one', + 'Fire One', + 'Exidy', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["fireone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/starfire.cpp"]}'::jsonb + ), + ( + 'fire-shark', + 'Fire Shark', + 'Toaplan', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["fireshrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/fireshrk.cpp"]}'::jsonb + ), + ( + 'fire-shark-mega-tech', + 'Fire Shark (Mega-Tech)', + 'Toaplan / Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_fshrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'fire-trap', + 'Fire Trap', + 'Woodplace Inc. (Data East USA license)', + 1986, + array['Fire Trap (US, rev A)'], + array['Arcade'], + '{"mame":["firetrap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/firetrap.cpp"]}'::jsonb + ), + ( + 'fire-truck-smokey-joe', + 'Fire Truck / Smokey Joe', + 'Atari', + 1978, + array['Fire Truck / Smokey Joe (PROM version)'], + array['Arcade'], + '{"mame":["firetrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/firetrk.cpp"]}'::jsonb + ), + ( + 'firebeast', + 'Firebeast', + 'Atari', + 1983, + array['Firebeast (prototype)'], + array['Arcade'], + '{"mame":["firebeas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cloud9.cpp"]}'::jsonb + ), + ( + 'first-class-traveller', + 'First Class Traveller', + 'Novotech', + null, + array['First Class Traveller (set 1)'], + array['Arcade'], + '{"mame":["firstcl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'fish-life-amazon-playful-edition', + 'Fish Life Amazon Playful Edition', + 'Sega', + 2000, + array['Fish Life Amazon Playful Edition (Japan)'], + array['Arcade'], + '{"mame":["dcfish"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dccons.cpp"]}'::jsonb + ), + ( + 'fisherman-battle', + 'Fisherman Battle', + 'Amuzy Corporation', + 2005, + array['Fisherman Battle (Japan, ver 1.03)'], + array['Arcade'], + '{"mame":["fishbatl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'fisherman-s-bait-a-bass-challenge', + 'Fisherman''s Bait - A Bass Challenge', + 'Konami', + 1998, + array['Fisherman''s Bait - A Bass Challenge (GE765 VER. UAB)'], + array['Arcade'], + '{"mame":["fbaitbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'fisherman-s-bait-marlin-challenge', + 'Fisherman''s Bait - Marlin Challenge', + 'Konami', + 1999, + array['Fisherman''s Bait - Marlin Challenge (GX889 VER. EA)'], + array['Arcade'], + '{"mame":["fbaitmc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'fisherman-s-bait-2-a-bass-challenge', + 'Fisherman''s Bait 2 - A Bass Challenge', + 'Konami', + 1998, + array['Fisherman''s Bait 2 - A Bass Challenge (GE865 VER. UAB)'], + array['Arcade'], + '{"mame":["fbait2bc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'fishin-frenzy', + 'Fishin'' Frenzy', + 'Time Warner Interactive', + 1995, + array['Fishin'' Frenzy (prototype)'], + array['Arcade'], + '{"mame":["fishfren"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'fishing-maniac-2', + 'Fishing Maniac 2+', + 'Saero Entertainment', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["fmaniac2p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'fishing-maniac-3', + 'Fishing Maniac 3', + 'Saero Entertainment', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["fmaniac3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'fist-of-the-north-star-hokuto-no-ken', + 'Fist Of The North Star / Hokuto no Ken', + 'Arc System Works / Sega', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["fotns"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'fit-of-fighting', + 'Fit of Fighting', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["fitfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nix/fitfight.cpp"]}'::jsonb + ), + ( + 'five-a-side-soccer', + 'Five a Side Soccer', + 'Konami', + 1995, + array['Five a Side Soccer (ver UAA)'], + array['Sports'], + '{"mame":["fiveside"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ultrsprt.cpp"]}'::jsonb + ), + ( + 'five-clown', + 'Five Clown', + 'IGS', + 1993, + array['Five Clown (English, set 1)'], + array['Arcade'], + '{"mame":["5clown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/5clown.cpp"]}'::jsonb + ), + ( + 'fixeight', + 'FixEight', + 'Toaplan', + 1992, + array['FixEight (Europe)'], + array['Arcade'], + '{"mame":["fixeight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/fixeight.cpp"]}'::jsonb + ), + ( + 'flaming-7-s-cyberdyne-systems-7v5-00-cyb1092-50-bonus', + 'Flaming 7''s (Cyberdyne Systems 7V5.00 (CYB1092), 50 bonus)', + 'Cyberdyne Systems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["fl7_50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'flaming-7-s-w4-hardware-prg-5xxxx-v6-01a-red-white-and-blue-7-s-hollywood-nights', + 'Flaming 7''s (W4 Hardware, prg 5XXXX V6 01A, Red, White & Blue 7''s + Hollywood Nights)', + 'Cyberdyne Systems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["fl7_3121"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'flash-beats', + 'Flash Beats', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["flsbeats"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/flashbeats.cpp"]}'::jsonb + ), + ( + 'flash-boy', + 'Flash Boy', + 'Data East Corporation', + 1981, + array['Flash Boy (vertical) (DECO Cassette MD) (No.12/Ver.0/Set.1,Japan)'], + array['Arcade'], + '{"mame":["cfboy0a1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'flash-point-fd1094-317-0127a', + 'Flash Point (FD1094 317-0127A)', + 'Sega', + 1989, + array['Flash Point (set 2, Japan) (FD1094 317-0127A)'], + array['Arcade'], + '{"mame":["fpoint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'flashback', + 'Flashback', + 'ACE', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["flshback"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/acefruit.cpp"]}'::jsonb + ), + ( + 'flashgal', + 'Flashgal', + 'Kyugo / Sega', + 1985, + array['Flashgal (set 1)'], + array['Arcade'], + '{"mame":["flashgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/kyugo.cpp"]}'::jsonb + ), + ( + 'flicky', + 'Flicky', + 'Sega', + 1984, + array['Flicky (128k Version, 315-5051)'], + array['Arcade'], + '{"mame":["flicky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'flip-and-flop-max-a-flex', + 'Flip & Flop (Max-A-Flex)', + 'Exidy / First Star Software', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mf_flip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/maxaflex.cpp"]}'::jsonb + ), + ( + 'flip-shot', + 'Flip Shot', + 'Visco', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["flipshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'flipper-jack', + 'Flipper Jack', + 'Jackson Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["flipjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/flipjack.cpp"]}'::jsonb + ), + ( + 'flower', + 'Flower', + 'Clarue (Komax license)', + 1986, + array['Flower (US)'], + array['Arcade'], + '{"mame":["flower"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/flower.cpp"]}'::jsonb + ), + ( + 'fly-boy', + 'Fly-Boy', + 'Kaneko', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["flyboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/fastfred.cpp"]}'::jsonb + ), + ( + 'flyball', + 'Flyball', + 'Atari', + 1976, + array['Flyball (rev 2)'], + array['Arcade'], + '{"mame":["flyball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/flyball.cpp"]}'::jsonb + ), + ( + 'flying-ball', + 'Flying Ball', + 'Data East Corporation', + 1985, + array['Flying Ball (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cflyball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'flying-fortress', + 'Flying Fortress', + 'Electra', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["flyingf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/electra.cpp"]}'::jsonb + ), + ( + 'flying-shark', + 'Flying Shark', + 'Toaplan / Taito Corporation', + 1987, + array['Flying Shark (World)'], + array['Arcade'], + '{"mame":["fshark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/twincobr.cpp"]}'::jsonb + ), + ( + 'fm-11-ex', + 'FM-11 EX', + 'Fujitsu', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["fm11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/fm7.cpp"]}'::jsonb + ), + ( + 'fm-16', + 'FM-16β', + 'Fujitsu', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["fm16beta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/fm7.cpp"]}'::jsonb + ), + ( + 'fm-7', + 'FM-7', + 'Fujitsu', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["fm7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/fm7.cpp"]}'::jsonb + ), + ( + 'fm-8', + 'FM-8', + 'Fujitsu', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["fm8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/fm7.cpp"]}'::jsonb + ), + ( + 'fm-towns-model-1-2', + 'FM-Towns (Model 1 / 2)', + 'Fujitsu', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["fmtowns"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/fmtowns.cpp"]}'::jsonb + ), + ( + 'fm-towns-marty', + 'FM-Towns Marty', + 'Fujitsu', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["fmtmarty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/fmtowns.cpp"]}'::jsonb + ), + ( + 'fonz', + 'Fonz', + 'Sega', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["fonz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segattl.cpp"]}'::jsonb + ), + ( + 'food-fight', + 'Food Fight', + 'General Computer Corporation (Atari license)', + 1982, + array['Food Fight (rev 3)'], + array['Arcade'], + '{"mame":["foodf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/foodf.cpp"]}'::jsonb + ), + ( + 'fool-race', + 'Fool Race', + 'EFG Sanremo', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["foolrace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/efg8080.cpp"]}'::jsonb + ), + ( + 'football-champ-euro-football-champ', + 'Football Champ / Euro Football Champ', + 'Taito Corporation Japan', + 1990, + array['Football Champ / Euro Football Champ (World)'], + array['Sports'], + '{"mame":["footchmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'football-frenzy-ngm-034-ngh-034', + 'Football Frenzy (NGM-034 ~ NGH-034)', + 'SNK', + 1992, + '{}'::text[], + array['Sports'], + '{"mame":["fbfrenzy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'football-power', + 'Football Power', + 'Gaelco', + 1999, + array['Football Power (version 4.6)'], + array['Sports'], + '{"mame":["footbpow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco3d.cpp"]}'::jsonb + ), + ( + 'forgotten-worlds', + 'Forgotten Worlds', + 'Capcom', + 1988, + array['Forgotten Worlds (World, newer)'], + array['Arcade'], + '{"mame":["forgottn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'forgotten-worlds-mega-tech', + 'Forgotten Worlds (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_fwrld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'formation-z', + 'Formation Z', + 'Jaleco', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["formatz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/aeroboto.cpp"]}'::jsonb + ), + ( + 'forte-card', + 'Forte Card', + 'Fortex Ltd.', + 1994, + array['Forte Card (Ver 110, Spanish)'], + array['Arcade'], + '{"mame":["fortecrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/fortecar.cpp"]}'::jsonb + ), + ( + 'fortress-2-blue-arcade', + 'Fortress 2 Blue Arcade', + 'Eolith', + 2001, + array['Fortress 2 Blue Arcade (World) (ver 1.01 / pcb ver 3.05)'], + array['Arcade'], + '{"mame":["fort2b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'fortune-wheel', + 'Fortune Wheel', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["fwheel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/fwheel.cpp"]}'::jsonb + ), + ( + 'forty-love', + 'Forty-Love', + 'Taito Corporation', + 1984, + array['Forty-Love (World)'], + array['Arcade'], + '{"mame":["40love"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/40love.cpp"]}'::jsonb + ), + ( + 'four-play', + 'Four Play', + 'Macro', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["fourplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'four-roses', + 'Four Roses', + '', + 1999, + array['Four Roses (encrypted, set 1)'], + array['Arcade'], + '{"mame":["4roses"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/4roses.cpp"]}'::jsonb + ), + ( + 'four-trax', + 'Four Trax', + 'Namco', + 1989, + array['Four Trax (World)'], + array['Arcade'], + '{"mame":["fourtrax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'foxy-ruby', + 'Foxy Ruby', + 'Astro Corp.', + 2009, + array['Foxy Ruby (Ver. US.01.01.A)'], + array['Arcade'], + '{"mame":["foxyruby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'fp-1000', + 'FP-1000', + 'Casio', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["fp1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/fp1100.cpp"]}'::jsonb + ), + ( + 'fp-1100', + 'FP-1100', + 'Casio', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["fp1100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/fp1100.cpp"]}'::jsonb + ), + ( + 'fp-200', + 'FP-200', + 'Casio', + 1982, + array['FP-200 (Japan)'], + array['Arcade'], + '{"mame":["fp200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/fp200.cpp"]}'::jsonb + ), + ( + 'fp-6000', + 'FP-6000', + 'Casio', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["fp6000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/fp6000.cpp"]}'::jsonb + ), + ( + 'frantic-fred-release-2', + 'Frantic Fred (Release 2)', + 'ICE', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["franticf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/lethalj.cpp"]}'::jsonb + ), + ( + 'fred-flintstone-s-memory-match', + 'Fred Flintstone''s Memory Match', + 'Coastal Amusements', + 1994, + array['Fred Flintstone''s Memory Match (World?, Ticket version, 3/17/95)'], + array['Arcade'], + '{"mame":["fredmem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dcheese.cpp"]}'::jsonb + ), + ( + 'free-deal-twin-jokers-progressive', + 'Free Deal Twin Jokers Progressive', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["freedeal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab88.cpp"]}'::jsonb + ), + ( + 'free-kick-ns6201-a-1987-10', + 'Free Kick (NS6201-A 1987.10)', + 'Nihon System (Merit license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["freekick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freekick.cpp"]}'::jsonb + ), + ( + 'freedom-120-aspect-100', + 'Freedom 120/Aspect 100', + 'Liberty Electronics', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["free120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["liberty/freedom120.cpp"]}'::jsonb + ), + ( + 'freedom-200', + 'Freedom 200', + 'Liberty Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["free200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["liberty/freedom200.cpp"]}'::jsonb + ), + ( + 'freedom-220', + 'Freedom 220', + 'Liberty Electronics', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["free220"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["liberty/freedom200.cpp"]}'::jsonb + ), + ( + 'freeway-v5-12', + 'FreeWay (V5.12)', + 'NVC Electronica', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["freeway"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freeway.cpp"]}'::jsonb + ), + ( + 'freeze', + 'Freeze', + 'Cinematronics', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["freeze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ), + ( + 'freeze-atari', + 'Freeze (Atari)', + 'Atari Games', + 1996, + array['Freeze (Atari) (prototype, English voice, 96/10/25)'], + array['Arcade'], + '{"mame":["freezeat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'frenzy', + 'Frenzy', + 'Stern Electronics', + 1982, + array['Frenzy (revision RA1)'], + array['Arcade'], + '{"mame":["frenzy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/berzerk.cpp"]}'::jsonb + ), + ( + 'frenzy-express', + 'Frenzy Express', + 'ICE / Uniana', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["frenzyxprss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/frenzyxprss.cpp"]}'::jsonb + ), + ( + 'frisky-tom', + 'Frisky Tom', + 'Nichibutsu', + 1981, + array['Frisky Tom (set 1)'], + array['Arcade'], + '{"mame":["friskyt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/seicross.cpp"]}'::jsonb + ), + ( + 'frog-and-spiders', + 'Frog & Spiders', + 'Taito Corporation', + 1981, + array['Frog & Spiders (bootleg?)'], + array['Arcade'], + '{"mame":["fspiderb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/jollyjgr.cpp"]}'::jsonb + ), + ( + 'frogger', + 'Frogger', + 'Konami', + 1981, + '{}'::text[], + array['Classic'], + '{"mame":["frogger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'frogs', + 'Frogs', + 'Gremlin', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["frogs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'from-tv-animation-slam-dunk-super-slams', + 'From TV Animation Slam Dunk - Super Slams', + 'Banpresto / Toei Animation / Video System Co.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["suprslam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/suprslam.cpp"]}'::jsonb + ), + ( + 'front-line', + 'Front Line', + 'Taito Corporation', + 1982, + array['Front Line (AA1, 4 PCB version)'], + array['Arcade'], + '{"mame":["frontlin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'fun-four', + 'Fun Four', + 'Bailey International', + 1976, + array['Fun Four (set 1)'], + array['Arcade'], + '{"mame":["fun4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bailey.cpp"]}'::jsonb + ), + ( + 'fun-river', + 'Fun River', + 'Amcoe', + 2005, + array['Fun River (Version 1.4R CGA)'], + array['Arcade'], + '{"mame":["funriver"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'fun-station-spielekoffer-9-spiele', + 'Fun Station Spielekoffer 9 Spiele', + 'ADP', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["fstation"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/adp.cpp"]}'::jsonb + ), + ( + 'funcube-v1-5', + 'Funcube (v1.5)', + 'Namco', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["funcube"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/funcube.cpp"]}'::jsonb + ), + ( + 'funcube-2-v1-1', + 'Funcube 2 (v1.1)', + 'Namco', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["funcube2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/funcube.cpp"]}'::jsonb + ), + ( + 'funcube-3-v1-1', + 'Funcube 3 (v1.1)', + 'Namco', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["funcube3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/funcube.cpp"]}'::jsonb + ), + ( + 'funcube-4-v1-0', + 'Funcube 4 (v1.0)', + 'Namco', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["funcube4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/funcube.cpp"]}'::jsonb + ), + ( + 'funcube-5-v1-0', + 'Funcube 5 (v1.0)', + 'Namco', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["funcube5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/funcube.cpp"]}'::jsonb + ), + ( + 'funky-ball', + 'Funky Ball', + 'dgPIX Entertainment Inc.', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["funkball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/funkball.cpp"]}'::jsonb + ), + ( + 'funky-bee', + 'Funky Bee', + 'Orca', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["funkybee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/funkybee.cpp"]}'::jsonb + ), + ( + 'funky-fish', + 'Funky Fish', + 'Sun Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["fnkyfish"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/kangaroo.cpp"]}'::jsonb + ), + ( + 'funky-head-boxers-juetbkal-951218-v1-000', + 'Funky Head Boxers (JUETBKAL 951218 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["fhboxers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'funky-jet', + 'Funky Jet', + 'Mitchell', + 1992, + array['Funky Jet (World, rev 1)'], + array['Arcade'], + '{"mame":["funkyjet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/funkyjet.cpp"]}'::jsonb + ), + ( + 'funny-bubble', + 'Funny Bubble', + 'In Chang Electronic Co', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["funybubl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["comad/funybubl.cpp"]}'::jsonb + ), + ( + 'funny-farm-v1-17', + 'Funny Farm (v1.17)', + 'Kupidon', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["funnyfm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cupidon.cpp"]}'::jsonb + ), + ( + 'funny-land-de-luxe', + 'Funny Land de Luxe', + 'Stella', + 2001, + array['Funny Land de Luxe (W4 set)'], + array['Arcade'], + '{"mame":["funlddlx4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/adp.cpp"]}'::jsonb + ), + ( + 'funny-strip', + 'Funny Strip', + 'Microhard / MagicGames', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["funystrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/splash.cpp"]}'::jsonb + ), + ( + 'future-32', + 'Future 32α', + 'Sord', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["future32a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sord/future32.cpp"]}'::jsonb + ), + ( + 'future-flash', + 'Future Flash', + 'Hoei', + 1980, + array['Future Flash (set 1)'], + array['Arcade'], + '{"mame":["futflash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/laserbas.cpp"]}'::jsonb + ), + ( + 'future-spy-315-5061', + 'Future Spy (315-5061)', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["futspy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/zaxxon.cpp"]}'::jsonb + ), + ( + 'fuudol', + 'Fuudol', + 'Nichibutsu/eic', + 2000, + array['Fuudol (Japan)'], + array['Arcade'], + '{"mame":["fuudol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'fuusen-pentai', + 'Fuusen Pentai', + 'Konami', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["fuusenpn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'fz-1-digital-sampling-synthesizer', + 'FZ-1 Digital Sampling Synthesizer', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["fz1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/fz1.cpp"]}'::jsonb + ), + ( + 'g-loc-air-battle', + 'G-LOC Air Battle', + 'Sega', + 1990, + array['G-LOC Air Battle (World)'], + array['Arcade'], + '{"mame":["gloc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaybd.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.005.sql b/supabase/seed-data/mame-game-catalog.generated.005.sql new file mode 100644 index 0000000..d70ce67 --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.005.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'g-stream-g2020', + 'G-Stream G2020', + 'Oriental Soft Japan', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["gstream"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["promat/gstream.cpp"]}'::jsonb + ), + ( + 'g-i-joe', + 'G.I. Joe', + 'Konami', + 1992, + array['G.I. Joe (World, EAB)'], + array['Arcade'], + '{"mame":["gijoe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gijoe.cpp"]}'::jsonb + ), + ( + 'g-t-block-challenger', + 'G.T. Block Challenger', + 'Sun Electronics / Gifu Tokki', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["blockch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/blockch.cpp"]}'::jsonb + ), + ( + 'g3-800-in-1-handheld', + 'G3 800 in 1 Handheld', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g3_800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'g5-500-in-1-handheld', + 'G5 500 in 1 Handheld', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g5_500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'g6-666-in-1-handheld', + 'G6 666 in 1 Handheld', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g6_666"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'g7-666-in-1-handheld', + 'G7 666 in 1 Handheld', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g7_666"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'g9-game-box-666-games', + 'G9 Game Box 666 Games', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g9_666"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'gacha-gachamp', + 'Gacha Gachamp', + 'Konami', + 1999, + array['Gacha Gachamp (GE877 VER. JAB)'], + array['Arcade'], + '{"mame":["gchgchmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'gaelco-championship-tuning-race', + 'Gaelco Championship Tuning Race', + 'Gaelco', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["tuningrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelcopc.cpp"]}'::jsonb + ), + ( + 'gaelco-ds5002fp-programmer', + 'Gaelco DS5002FP Programmer', + 'Gaelco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["gaelcods"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/ds5002fp_programmer.cpp"]}'::jsonb + ), + ( + 'gaelco-football', + 'Gaelco Football', + 'Gaelco / Zigurat', + 2002, + '{}'::text[], + array['Sports'], + '{"mame":["gfootbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/atvtrack.cpp"]}'::jsonb + ), + ( + 'gahaha-ippatsudou', + 'GAHAHA Ippatsudou', + 'Namco / Metro', + 2000, + array['GAHAHA Ippatsudou (World, GID2 Ver.A)'], + array['Arcade'], + '{"mame":["gahaha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'gahaha-ippatsudou-2', + 'GAHAHA Ippatsudou 2', + 'Namco / Metro', + 2001, + array['GAHAHA Ippatsudou 2 (Japan, GIS1 Ver.A)'], + array['Arcade'], + '{"mame":["gahaha2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'gaia-the-last-choice-of-earth', + 'Gaia - The Last Choice of Earth', + 'SemiCom / XESS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["gaialast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dreamwld.cpp"]}'::jsonb + ), + ( + 'gaia-crusaders', + 'Gaia Crusaders', + 'Noise Factory', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["gaia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'gaiapolis', + 'Gaiapolis', + 'Konami', + 1993, + array['Gaiapolis (ver EAF)'], + array['Arcade'], + '{"mame":["gaiapols"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mystwarr.cpp"]}'::jsonb + ), + ( + 'gain-ground', + 'Gain Ground', + 'Sega', + 1988, + array['Gain Ground (World, 3 Players, Floppy Based, FD1094 317-0058-03d Rev A)'], + array['Arcade'], + '{"mame":["gground"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'galactic-storm', + 'Galactic Storm', + 'Taito Corporation', + 1992, + array['Galactic Storm (Japan)'], + array['Arcade'], + '{"mame":["galastrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/galastrm.cpp"]}'::jsonb + ), + ( + 'galactic-warriors', + 'Galactic Warriors', + 'Konami', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["gwarrior"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'galactica-batalha-espacial', + 'Galactica - Batalha Espacial', + 'Taito do Brasil', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["galactic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'galaga', + 'Galaga', + 'Namco', + 1981, + array['Galaga (Namco rev. B)'], + array['Shooter', 'Classic'], + '{"mame":["galaga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/galaga.cpp"]}'::jsonb + ), + ( + 'galaga-88', + 'Galaga ''88', + 'Namco', + 1987, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["galaga88"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'galaksija', + 'Galaksija', + 'Voja Antonic / Elektronika inzenjering', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["galaxy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/galaxy.cpp"]}'::jsonb + ), + ( + 'galaxi-v2-0', + 'Galaxi (v2.0)', + 'B.R.L.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["galaxi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/galaxi.cpp"]}'::jsonb + ), + ( + 'galaxia', + 'Galaxia', + 'Zaccaria / Zelco', + 1979, + array['Galaxia (set 1)'], + array['Arcade'], + '{"mame":["galaxia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/galaxia.cpp"]}'::jsonb + ), + ( + 'galaxian', + 'Galaxian', + 'Namco', + 1979, + array['Galaxian (Namco set 1)'], + array['Arcade'], + '{"mame":["galaxian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'galaxian-3-theater-6-project-dragoon', + 'Galaxian 3 - Theater 6 : Project Dragoon', + 'Namco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["gal3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/gal3.cpp"]}'::jsonb + ), + ( + 'galaxy-fight-universal-warriors', + 'Galaxy Fight - Universal Warriors', + 'Sunsoft', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["galaxyfg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'galaxy-force-2', + 'Galaxy Force 2', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["gforce2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaybd.cpp"]}'::jsonb + ), + ( + 'galaxy-game', + 'Galaxy Game', + 'Computer Recreations, Inc', + 1971, + '{}'::text[], + array['Arcade'], + '{"mame":["galgame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/galgame.cpp"]}'::jsonb + ), + ( + 'galaxy-games', + 'Galaxy Games', + 'Creative Electronics & Software', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["galgames"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/galgames.cpp"]}'::jsonb + ), + ( + 'galaxy-games-starpak-2-cartridge', + 'Galaxy Games + StarPak 2 cartridge', + 'Creative Electronics & Software / Namco', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["galgame2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/galgames.cpp"]}'::jsonb + ), + ( + 'galaxy-games-starpak-3-cartridge', + 'Galaxy Games + StarPak 3 cartridge', + 'Creative Electronics & Software / Atari', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["galgame3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/galgames.cpp"]}'::jsonb + ), + ( + 'galaxy-games-starpak-4-cartridge', + 'Galaxy Games + StarPak 4 cartridge', + 'Creative Electronics & Software', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["galgame4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/galgames.cpp"]}'::jsonb + ), + ( + 'galaxy-gunners', + 'Galaxy Gunners', + 'Electronic Devices Italy', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["galaxygn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/fantland.cpp"]}'::jsonb + ), + ( + 'galaxy-ranger', + 'Galaxy Ranger', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["galaxyr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segald.cpp"]}'::jsonb + ), + ( + 'galaxy-wars', + 'Galaxy Wars', + 'Universal', + 1979, + array['Galaxy Wars (Universal set 1)'], + array['Arcade'], + '{"mame":["galxwars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'galeb', + 'Galeb', + 'PEL Varazdin', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["galeb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/galeb.cpp"]}'::jsonb + ), + ( + 'galileo-factory-main', + 'Galileo Factory (main)', + 'Sega', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["galilfac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'gallag-video-game-petalouda-butterfly-x50', + 'Gallag Video Game / Petalouda (Butterfly, x50)', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gallag50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'gallagher-s-gallery-v2-2', + 'Gallagher''s Gallery (v2.2)', + 'American Laser Games', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["gallgall"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'galmedes', + 'Galmedes', + 'Visco', + 1992, + array['Galmedes (Japan)'], + array['Arcade'], + '{"mame":["galmedes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'gals-panic', + 'Gals Panic', + 'Kaneko', + 1990, + array['Gals Panic (unprotected, ver. 2.0)'], + array['Arcade'], + '{"mame":["galpanic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/galpanic.cpp"]}'::jsonb + ), + ( + 'gals-panic-export-expro-02-pcb', + 'Gals Panic (Export, EXPRO-02 PCB)', + 'Kaneko', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["galsnew"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'gals-panic-3-euro', + 'Gals Panic 3 (Euro)', + 'Kaneko', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["galpani3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/galpani3.cpp"]}'::jsonb + ), + ( + 'gals-panic-4', + 'Gals Panic 4', + 'Kaneko', + 1996, + array['Gals Panic 4 (Europe)'], + array['Arcade'], + '{"mame":["galpani4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'gals-panic-ii', + 'Gals Panic II', + 'Kaneko', + 1993, + array['Gals Panic II (Asia)'], + array['Arcade'], + '{"mame":["galpani2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/galpani2.cpp"]}'::jsonb + ), + ( + 'gals-panic-ii-special-edition', + 'Gals Panic II'' - Special Edition', + 'Kaneko', + 1994, + array['Gals Panic II'' - Special Edition (Japan)'], + array['Arcade'], + '{"mame":["gp2se"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/galpani2.cpp"]}'::jsonb + ), + ( + 'gals-panic-s-extra-edition', + 'Gals Panic S - Extra Edition', + 'Kaneko', + 1997, + array['Gals Panic S - Extra Edition (Europe, revision 1)'], + array['Arcade'], + '{"mame":["galpanis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'gals-panic-s2', + 'Gals Panic S2', + 'Kaneko', + 1999, + array['Gals Panic S2 (Europe, version 3)'], + array['Arcade'], + '{"mame":["galpans2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'gals-panic-s3', + 'Gals Panic S3', + 'Kaneko', + 2002, + array['Gals Panic S3 (Japan)'], + array['Arcade'], + '{"mame":["galpans3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'gamate', + 'Gamate', + 'Bit Corp', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["gamate"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bitcorp/gamate.cpp"]}'::jsonb + ), + ( + 'gambit-voice', + 'Gambit Voice', + 'Fidelity International', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["gambitv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc6.cpp"]}'::jsonb + ), + ( + 'game-box-400-in-1-2019-pcb', + 'Game Box 400 in 1 (2019 PCB)', + 'Sup', + 2019, + '{}'::text[], + array['Arcade'], + '{"mame":["gbox2019"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'game-boy', + 'Game Boy', + 'Nintendo', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["gameboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gb.cpp"]}'::jsonb + ), + ( + 'game-boy-advance', + 'Game Boy Advance', + 'Nintendo', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gba.cpp"]}'::jsonb + ), + ( + 'game-boy-color', + 'Game Boy Color', + 'Nintendo', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["gbcolor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gb.cpp"]}'::jsonb + ), + ( + 'game-magic', + 'Game Magic', + 'Bally Gaming Co.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["gammagic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gammagic.cpp"]}'::jsonb + ), + ( + 'game-on-100-in-1', + 'Game On 100-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gon100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'game-prince-rs-1', + 'Game Prince RS-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gprnrs1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'game-prince-rs-16', + 'Game Prince RS-16', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gprnrs16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'game-sporz-wireless-boxing', + 'Game Sporz Wireless Boxing', + 'Macro Winners', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["sporzbx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'game-sporz-wireless-duet-play-ping-pong', + 'Game Sporz Wireless Duet Play Ping-Pong', + 'Macro Winners', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["sporzpp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'game-tree', + 'Game Tree', + 'Project Support Engineering', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["gametree"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pse.cpp"]}'::jsonb + ), + ( + 'game-zone-ii-128-in-1', + 'Game Zone II 128-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gamezn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'game-com', + 'Game.com', + 'Tiger', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["gamecom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tiger/gamecom.cpp"]}'::jsonb + ), + ( + 'gamecube', + 'GameCube', + 'Nintendo', + 2001, + array['GameCube (Japan)'], + array['Arcade'], + '{"mame":["gcjp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gamecube.cpp"]}'::jsonb + ), + ( + 'games-4-u-2-94-5-6-0', + 'Games 4 U 2 (94 5.6-0)', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g4u2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'games-4-u-3-94-5-6-4', + 'Games 4 U 3 (94 5.6-4)', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g4u3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'games-4-u-4-94-5-6-5', + 'Games 4 U 4 (94 5.6-5)', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g4u4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'games-4-u-5-94-5-6-5', + 'Games 4 U 5 (94 5.6-5)', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g4u5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'games-4-u-6-94-5-6-5', + 'Games 4 U 6 (94 5.6-5)', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g4u6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'games-4-u-7-94-5-6-5a', + 'Games 4 U 7 (94 5.6-5a)', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g4u7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'games-family', + 'Games Family', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gmfamily"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gfamily.cpp"]}'::jsonb + ), + ( + 'games-power-500-in-1-ultra-thin-handheld-game-k10-2-languages', + 'Games Power 500-in-1 Ultra Thin Handheld Game (K10) (2 languages)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["k10_2l"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'games-power-500-in-1-ultra-thin-handheld-game-k10-5-languages', + 'Games Power 500-in-1 Ultra Thin Handheld Game (K10) (5 languages)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["k10_5l"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'games-v25-4x', + 'Games V25.4X', + 'U.S. Games, Inc.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["usgames"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/usgames.cpp"]}'::jsonb + ), + ( + 'gameu-joint-tv-bank-108-in-1-model-ah9069', + 'GameU Joint TV Bank 108-in-1 (model AH9069)', + 'YSN', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gujtv108"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'gaminator-1', + 'Gaminator 1', + 'Novotech', + null, + array['Gaminator 1 (set 1)'], + array['Arcade'], + '{"mame":["gamt1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-10', + 'Gaminator 10', + 'Novotech', + null, + array['Gaminator 10 (set 1)'], + array['Arcade'], + '{"mame":["gamt10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-11', + 'Gaminator 11', + 'Novotech', + null, + array['Gaminator 11 (set 1)'], + array['Arcade'], + '{"mame":["gamt11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-12', + 'Gaminator 12', + 'Novotech', + null, + array['Gaminator 12 (set 1)'], + array['Arcade'], + '{"mame":["gamt12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-16', + 'Gaminator 16', + 'Novotech', + null, + array['Gaminator 16 (set 1)'], + array['Arcade'], + '{"mame":["gamt16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-17', + 'Gaminator 17', + 'Novotech', + null, + array['Gaminator 17 (set 1)'], + array['Arcade'], + '{"mame":["gamt17"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-18', + 'Gaminator 18', + 'Novotech', + null, + array['Gaminator 18 (set 1)'], + array['Arcade'], + '{"mame":["gamt18"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-19', + 'Gaminator 19', + 'Novotech', + null, + array['Gaminator 19 (set 1)'], + array['Arcade'], + '{"mame":["gamt19"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-20', + 'Gaminator 20', + 'Novotech', + null, + array['Gaminator 20 (set 1)'], + array['Arcade'], + '{"mame":["gamt20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-21', + 'Gaminator 21', + 'Novotech', + null, + array['Gaminator 21 (set 1)'], + array['Arcade'], + '{"mame":["gamt21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-22', + 'Gaminator 22', + 'Novotech', + null, + array['Gaminator 22 (set 1)'], + array['Arcade'], + '{"mame":["gamt22"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-23', + 'Gaminator 23', + 'Novotech', + null, + array['Gaminator 23 (set 1)'], + array['Arcade'], + '{"mame":["gamt23"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-29', + 'Gaminator 29', + 'Novotech', + null, + array['Gaminator 29 (set 1)'], + array['Arcade'], + '{"mame":["gamt29"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-30', + 'Gaminator 30', + 'Novotech', + null, + array['Gaminator 30 (set 1)'], + array['Arcade'], + '{"mame":["gamt30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-31', + 'Gaminator 31', + 'Novotech', + null, + array['Gaminator 31 (set 1)'], + array['Arcade'], + '{"mame":["gamt31"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-4', + 'Gaminator 4', + 'Novotech', + null, + array['Gaminator 4 (set 1)'], + array['Arcade'], + '{"mame":["gamt4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-5', + 'Gaminator 5', + 'Novotech', + null, + array['Gaminator 5 (set 1)'], + array['Arcade'], + '{"mame":["gamt5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-6', + 'Gaminator 6', + 'Novotech', + null, + array['Gaminator 6 (set 1)'], + array['Arcade'], + '{"mame":["gamt6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-7', + 'Gaminator 7', + 'Novotech', + null, + array['Gaminator 7 (set 1)'], + array['Arcade'], + '{"mame":["gamt7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-8', + 'Gaminator 8', + 'Novotech', + null, + array['Gaminator 8 (set 1)'], + array['Arcade'], + '{"mame":["gamt8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-9', + 'Gaminator 9', + 'Novotech', + null, + array['Gaminator 9 (set 1)'], + array['Arcade'], + '{"mame":["gamt9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gammonmaster-ii', + 'Gammonmaster II', + 'Tryom', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["gammonm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tryom/gammonm.cpp"]}'::jsonb + ), + ( + 'gamshara', + 'Gamshara', + 'Mitchell', + 2002, + array['Gamshara (20020912A / 10021 Ver.A)'], + array['Arcade'], + '{"mame":["gamshara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'gamushara-battle-puchi-monster', + 'Gamushara Battle! Puchi Monster', + 'Capcom', + 1999, + array['Gamushara Battle! Puchi Monster (Japan 990519)'], + array['Arcade'], + '{"mame":["pmonster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'ganbare-chinsan-ooshoubu-mc-8123a-317-5012', + 'Ganbare Chinsan Ooshoubu (MC-8123A, 317-5012)', + 'Sanritsu', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["chinsan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/chinsan.cpp"]}'::jsonb + ), + ( + 'ganbare-ginkun', + 'Ganbare Ginkun', + 'Tecmo', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["ginkun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo16.cpp"]}'::jsonb + ), + ( + 'ganbare-goemon', + 'Ganbare Goemon', + 'Konami', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["ggoemon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'ganbare-jajamaru-saisho-wa-goo-ganbare-jajamaru-hop-step-and-jump', + 'Ganbare Jajamaru Saisho wa Goo / Ganbare Jajamaru Hop Step & Jump', + 'Jaleco', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ganjaja"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/homerun.cpp"]}'::jsonb + ), + ( + 'ganbare-marine-kun', + 'Ganbare! Marine Kun', + 'Capcom', + 2000, + array['Ganbare! Marine Kun (Japan 2K0411)'], + array['Arcade'], + '{"mame":["ganbare"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'gang-busters', + 'Gang Busters', + 'Konami', + 1988, + array['Gang Busters (set 1)'], + array['Arcade'], + '{"mame":["gbusters"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/thunderx.cpp"]}'::jsonb + ), + ( + 'gang-wars', + 'Gang Wars', + 'Alpha Denshi Co.', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["gangwars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k.cpp"]}'::jsonb + ), + ( + 'gangbao-sifang', + 'Gangbao Sifang', + 'Sealy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["gbsf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_m16c.cpp"]}'::jsonb + ), + ( + 'gangster-s-roses-v4-70', + 'Gangster''s Roses (v4.70)', + 'Kupidon', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["gangrose"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cupidon.cpp"]}'::jsonb + ), + ( + 'ganryu-musashi-ganryuki', + 'Ganryu / Musashi Ganryuki', + 'Visco', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["ganryu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ganso-janken-man-2', + 'Ganso Janken Man 2', + 'Sunwise', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jankmg2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunwise/jankmg2.cpp"]}'::jsonb + ), + ( + 'gaplus', + 'Gaplus', + 'Namco', + 1984, + array['Gaplus (GP2 rev. B)'], + array['Arcade'], + '{"mame":["gaplus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/gaplus.cpp"]}'::jsonb + ), + ( + 'garage', + 'Garage', + 'Igrosoft', + 2004, + array['Garage (050311 World)'], + array['Arcade'], + '{"mame":["garage_5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'gardia-317-0006', + 'Gardia (317-0006)', + 'Coreland / Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["gardia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'garogun-seroyang', + 'Garogun Seroyang', + 'Yun Sung', + 2000, + array['Garogun Seroyang (Korea)'], + array['Arcade'], + '{"mame":["garogun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp"]}'::jsonb + ), + ( + 'garou-mark-of-the-wolves-ngm-2530', + 'Garou - Mark of the Wolves (NGM-2530)', + 'SNK', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["garou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'garyo-retsuden', + 'Garyo Retsuden', + 'Data East Corporation', + 1987, + array['Garyo Retsuden (Japan)'], + array['Arcade'], + '{"mame":["garyoret"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'gauntlet', + 'Gauntlet', + 'Atari Games', + 1985, + array['Gauntlet (rev 14)'], + array['Beat em up'], + '{"mame":["gauntlet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/gauntlet.cpp"]}'::jsonb + ), + ( + 'gauntlet-playchoice-10', + 'Gauntlet (PlayChoice-10)', + 'Atari / Tengen (Nintendo of America license)', + 1985, + '{}'::text[], + array['Beat em up'], + '{"mame":["pc_gntlt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'gauntlet-dark-legacy', + 'Gauntlet Dark Legacy', + 'Midway Games', + 1999, + array['Gauntlet Dark Legacy (version DL 2.52)'], + array['Beat em up'], + '{"mame":["gauntdl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'gauntlet-ii', + 'Gauntlet II', + 'Atari Games', + 1986, + '{}'::text[], + array['Beat em up'], + '{"mame":["gaunt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/gauntlet.cpp"]}'::jsonb + ), + ( + 'gauntlet-legends', + 'Gauntlet Legends', + 'Atari Games', + 1998, + array['Gauntlet Legends (version 1.6)'], + array['Beat em up'], + '{"mame":["gauntleg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'gb-50-retro-station-pocket-system', + 'GB-50 Retro Station Pocket System', + '', + 2019, + '{}'::text[], + array['Arcade'], + '{"mame":["gb50_150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'gee-bee', + 'Gee Bee', + 'Namco', + 1978, + array['Gee Bee (Japan)'], + array['Arcade'], + '{"mame":["geebee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'gegege-no-kitaro-yokai-yokocho-matsuri-de-battle-ja', + 'Gegege no Kitaro Yokai Yokocho Matsuri de Battle Ja', + 'Namco', + 2007, + array['Gegege no Kitaro Yokai Yokocho Matsuri de Battle Ja (GYM1 Ver.A)'], + array['Arcade'], + '{"mame":["gegemdb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'gei-multi-game', + 'GEI Multi Game', + 'Grayhound Electronics', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["geimulti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'geki-makaimura', + 'Geki Makaimura', + 'Capcom', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gekimaka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'gekirindan', + 'Gekirindan', + 'Taito Corporation', + 1995, + array['Gekirindan (Ver 2.3O 1995/09/21)'], + array['Arcade'], + '{"mame":["gekiridn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'gekisou', + 'Gekisou', + 'Eastern Corp.', + 1985, + array['Gekisou (Japan)'], + array['Arcade'], + '{"mame":["gekisou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/equites.cpp"]}'::jsonb + ), + ( + 'gekitoride-jong-space', + 'GekiToride-Jong Space', + 'Namco / Metro', + 2001, + array['GekiToride-Jong Space (10011 Ver.A)'], + array['Arcade'], + '{"mame":["gjspace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'gekitou-pro-yakyuu-mizushima-shinji-all-stars-vs-pro-yakyuu-gdt-0008c', + 'Gekitou Pro Yakyuu Mizushima Shinji All Stars vs. Pro Yakyuu (GDT-0008C)', + 'Sega / Wow Entertainment', + 2003, + array['Gekitou Pro Yakyuu Mizushima Shinji All Stars vs. Pro Yakyuu (Rev C) (GDT-0008C)'], + array['Arcade'], + '{"mame":["gekpurya"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'gemcrush', + 'Gemcrush', + 'Star Fish', + 1996, + array['Gemcrush (Japan, prototype)'], + array['Arcade'], + '{"mame":["gemcrush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dfruit.cpp"]}'::jsonb + ), + ( + 'gemini-wing', + 'Gemini Wing', + 'Tecmo', + 1987, + array['Gemini Wing (World)'], + array['Arcade'], + '{"mame":["gemini"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo.cpp"]}'::jsonb + ), + ( + 'genesis', + 'Genesis', + 'Sega', + 1989, + array['Genesis (USA, NTSC)'], + array['Arcade'], + '{"mame":["genesis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'genesis-nomad', + 'Genesis Nomad', + 'Sega', + 1995, + array['Genesis Nomad (USA Genesis handheld)'], + array['Arcade'], + '{"mame":["gen_nomd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'genesis-with-32x', + 'Genesis with 32X', + 'Sega', + 1994, + array['Genesis with 32X (USA, NTSC)'], + array['Arcade'], + '{"mame":["32x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'genie', + 'Genie', + 'Video Fun Games Ltd.', + null, + array['Genie (ICP-1, set 1)'], + array['Arcade'], + '{"mame":["genie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'genius-6-v110f', + 'Genius 6 (V110F)', + 'IGS', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["genius6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'genix-family', + 'Genix Family', + 'NIX', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["genix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nix/pirates.cpp"]}'::jsonb + ), + ( + 'genpei-toumaden', + 'Genpei ToumaDen', + 'Namco', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["genpeitd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos86.cpp"]}'::jsonb + ), + ( + 'ger-t-32620-sprach-morsegenerator', + 'Gerät 32620 (Sprach/Morsegenerator)', + 'Institut für Kosmosforschung', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sprachmg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/sprachmg.cpp"]}'::jsonb + ), + ( + 'get-a-way-upright', + 'Get A Way (upright)', + 'Universal', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["getaway"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/getaway.cpp"]}'::jsonb + ), + ( + 'get-rich', + 'Get Rich', + 'Amcoe', + null, + array['Get Rich (Version 1.0.1)'], + array['Arcade'], + '{"mame":["getrich"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'ghost-chaser-densei', + 'Ghost Chaser Densei', + 'bootleg', + 1996, + array['Ghost Chaser Densei (SNES bootleg, set 1)'], + array['Arcade'], + '{"mame":["denseib"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'ghost-hunter', + 'Ghost Hunter', + 'Hanaho Games', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["ghoshunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tickee.cpp"]}'::jsonb + ), + ( + 'ghost-pilots-ngm-020-ngh-020', + 'Ghost Pilots (NGM-020 ~ NGH-020)', + 'SNK', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["gpilots"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ghost-squad-gdx-0012a', + 'Ghost Squad (GDX-0012A)', + 'Sega', + 2004, + array['Ghost Squad (Rev A) (GDX-0012A)'], + array['Arcade'], + '{"mame":["ghostsqu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'ghost-squad-evolution', + 'Ghost Squad Evolution', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["ghostsev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'ghostlop', + 'Ghostlop', + 'Data East Corporation', + 1996, + array['Ghostlop (prototype)'], + array['Arcade'], + '{"mame":["ghostlop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ghostmuncher-galaxian', + 'Ghostmuncher Galaxian', + 'bootleg', + 1981, + array['Ghostmuncher Galaxian (bootleg)'], + array['Arcade'], + '{"mame":["gmgalax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'ghosts-n-goblins', + 'Ghosts''n Goblins', + 'Capcom', + 1985, + array['Ghosts''n Goblins (World? set 1)'], + array['Platformer'], + '{"mame":["gng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/gng.cpp"]}'::jsonb + ), + ( + 'ghoul-panic', + 'Ghoul Panic', + 'Eighting / Raizing / Namco', + 1999, + array['Ghoul Panic (World, OB2/VER.A)'], + array['Arcade'], + '{"mame":["ghlpanic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'ghouls-n-ghosts', + 'Ghouls''n Ghosts', + 'Capcom', + 1988, + array['Ghouls''n Ghosts (World)'], + array['Arcade'], + '{"mame":["ghouls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'ghouls-n-ghosts-mega-tech', + 'Ghouls''n Ghosts (Mega-Tech)', + 'Capcom / Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_gng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'ghox-spinner', + 'Ghox (spinner)', + 'Toaplan', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["ghox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/ghox.cpp"]}'::jsonb + ), + ( + 'gi-turf-wild-3', + 'GI Turf Wild 3', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["turfwld3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedalppc.cpp"]}'::jsonb + ), + ( + 'gi-classic-ex', + 'GI-Classic EX', + 'Konami', + 1998, + array['GI-Classic EX (server)'], + array['Classic'], + '{"mame":["giclassvr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/giclassic.cpp"]}'::jsonb + ), + ( + 'giant-gram-2000', + 'Giant Gram 2000', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["gram2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'giant-gram-all-japan-pro-wrestling-2', + 'Giant Gram: All Japan Pro Wrestling 2', + 'Sega', + 1999, + array['Giant Gram: All Japan Pro Wrestling 2 (Japan)'], + array['Arcade'], + '{"mame":["ggram2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'giga-wing', + 'Giga Wing', + 'Takumi (Capcom license)', + 1999, + array['Giga Wing (USA 990222)'], + array['Arcade'], + '{"mame":["gigawing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'giga-wing-2', + 'Giga Wing 2', + 'Takumi / Capcom', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["gwing2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'giga-wing-generations-v2-02j', + 'Giga Wing Generations (v2.02J)', + 'Takumi Corporation', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["gwinggen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'gigandes', + 'Gigandes', + 'East Technology', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["gigandes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_x.cpp"]}'::jsonb + ), + ( + 'gigas-mc-8123-317-5002', + 'Gigas (MC-8123, 317-5002)', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["gigas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freekick.cpp"]}'::jsonb + ), + ( + 'gigas-mark-ii-mc-8123-317-5002', + 'Gigas Mark II (MC-8123, 317-5002)', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["gigasm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freekick.cpp"]}'::jsonb + ), + ( + 'gigatron-ttl-microcomputer', + 'Gigatron TTL Microcomputer', + 'Marcel van Kervinck / Walter Belgers', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["gigatron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/gigatron.cpp"]}'::jsonb + ), + ( + 'gimme-a-break-7-7-85', + 'Gimme A Break (7/7/85)', + 'Bally/Sente', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["gimeabrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'gin-and-cribbage-challenger', + 'Gin & Cribbage Challenger', + 'Fidelity Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["gincribc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/card.cpp"]}'::jsonb + ), + ( + 'ginga-ninkyouden', + 'Ginga Ninkyouden', + 'Jaleco', + 1987, + array['Ginga Ninkyouden (set 1)'], + array['Arcade'], + '{"mame":["ginganin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ginganin.cpp"]}'::jsonb + ), + ( + 'gionbana', + 'Gionbana', + 'Nichibutsu', + 1989, + array['Gionbana (Japan 890120)', 'Gionbana (Japan 890207, medal)'], + array['Arcade'], + '{"mame":["gionbana","mgion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'girotutto', + 'GiroTutto', + 'High Video', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["girotutt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'gizmondo', + 'Gizmondo', + 'Tiger Telematics', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gizmondo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tigertel/gizmondo.cpp"]}'::jsonb + ), + ( + 'gladiator', + 'Gladiator', + 'Allumer / Taito America Corporation', + 1986, + array['Gladiator (US)'], + array['Arcade'], + '{"mame":["gladiatr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/gladiatr.cpp"]}'::jsonb + ), + ( + 'gladiator-1984', + 'Gladiator 1984', + 'SNK', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sgladiat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'glass', + 'Glass', + 'OMK / Gaelco', + 1994, + array['Glass (ver 1.1, Break Edition, checksum 49D5E66B, Version 1994, set 1)'], + array['Arcade'], + '{"mame":["glass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/glass.cpp"]}'::jsonb + ), + ( + 'global-vr-xp-os-install-09-30-01', + 'Global VR XP OS Install - 09/30/01', + 'Global VR', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gvrxpsys"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'global-vr-xp-os-update-install-06-11-02', + 'Global VR XP OS Update/Install - 06/11/02', + 'Global VR', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["gvrxpsup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'gnome', + 'Gnome', + 'Igrosoft', + 2007, + array['Gnome (100326 World)'], + array['Arcade'], + '{"mame":["gnome_9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'go-and-stop', + 'Go & Stop', + 'Astro Corp.', + 2004, + array['Go & Stop (Ver. EN1.10)'], + array['Arcade'], + '{"mame":["gostopac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'go-2000', + 'Go 2000', + 'SunA', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["go2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/go2000.cpp"]}'::jsonb + ), + ( + 'go-go-cowboy-english-prize', + 'Go Go Cowboy (English, prize)', + 'Sammy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["gocowboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'go-go-mr-yamaguchi-yuke-yuke-yamaguchi-kun', + 'Go Go Mr. Yamaguchi / Yuke Yuke Yamaguchi-kun', + 'Kaneko / Taito', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["yamagchi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tsamurai.cpp"]}'::jsonb + ), + ( + 'go-retro-portable-260-games', + 'Go Retro Portable 260+ Games', + 'Retro-Bit', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["goretrop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'go-go-connie-chan-asobou-mouse', + 'Go! Go! Connie-chan! Asobou Mouse', + 'Bandai', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["bandggcn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'goal-to-go', + 'Goal To Go', + 'Stern Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["goaltogo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/cliffhgr.cpp"]}'::jsonb + ), + ( + 'goal-goal-goal', + 'Goal! Goal! Goal!', + 'Visco', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["goalx3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'goalie-ghost', + 'Goalie Ghost', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["gghost"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'godzilla', + 'Godzilla', + 'Banpresto', + 1993, + array['Godzilla (Japan)'], + array['Arcade'], + '{"mame":["godzilla"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/legionna.cpp"]}'::jsonb + ), + ( + 'gogetsuji-legends', + 'Gogetsuji Legends', + 'Atlus', + 1995, + array['Gogetsuji Legends (US, Ver. 95.06.20)'], + array['Arcade'], + '{"mame":["plegends"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'goindol', + 'Goindol', + 'SunA', + 1987, + array['Goindol (SunA, World)'], + array['Arcade'], + '{"mame":["goindol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/goindol.cpp"]}'::jsonb + ), + ( + 'gold-bug', + 'Gold Bug', + 'Century Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["goldbug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'gold-city-atronic', + 'Gold City (Atronic)', + 'Atronic', + 2002, + array['Gold City (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["goldcity"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'gold-line', + 'Gold Line', + 'Cointek Enterprise Corp', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["goldline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cointek.cpp"]}'::jsonb + ), + ( + 'gold-medalist', + 'Gold Medalist', + 'SNK', + 1988, + array['Gold Medalist (set 1, Alpha68k II PCB)'], + array['Arcade'], + '{"mame":["goldmedl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k.cpp"]}'::jsonb + ), + ( + 'gold-strike', + 'Gold Strike', + 'Cobra', + null, + array['Gold Strike (Japan, v1.1.1 - location test)'], + array['Arcade'], + '{"mame":["goldstrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'goldart-spain', + 'Goldart (Spain)', + 'Gaelco / Covielsa', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["goldart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/goldart.cpp"]}'::jsonb + ), + ( + 'golden-arrow-standard-g8-03', + 'Golden Arrow (Standard G8-03)', + 'Meyco Games, Inc.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["gldarrow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/meyc8088.cpp"]}'::jsonb + ), + ( + 'golden-axe-the-duel-juetl-950117-v1-000', + 'Golden Axe - The Duel (JUETL 950117 V1.000)', + 'Sega', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gaxeduel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'golden-axe-8751-317-123a', + 'Golden Axe (8751 317-123A)', + 'Sega', + 1989, + array['Golden Axe (set 6, US) (8751 317-123A)'], + array['Arcade'], + '{"mame":["goldnaxe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'golden-axe-mega-tech', + 'Golden Axe (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_gaxe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'golden-axe-ii-mega-play', + 'Golden Axe II (Mega Play)', + 'Sega', + 1993, + array['Golden Axe II (Mega Play) (Rev B)'], + array['Arcade'], + '{"mame":["mp_gaxe2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'golden-axe-ii-mega-tech', + 'Golden Axe II (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_gaxe2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'golden-axe-the-revenge-of-death-adder', + 'Golden Axe: The Revenge of Death Adder', + 'Sega', + 1992, + array['Golden Axe: The Revenge of Death Adder (World, Rev B)'], + array['Arcade'], + '{"mame":["ga2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'golden-egg', + 'Golden Egg', + 'LSE', + 1999, + array['Golden Egg (version U1.8)'], + array['Arcade'], + '{"mame":["goldnegg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funtech/funtech_h8.cpp"]}'::jsonb + ), + ( + 'golden-fire-ii', + 'Golden Fire II', + 'Topis Corp', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["gfire2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mosaic.cpp"]}'::jsonb + ), + ( + 'golden-glenn-atronic', + 'Golden Glenn (Atronic)', + 'Atronic', + 2002, + array['Golden Glenn (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["goldglen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'golden-joker', + 'Golden Joker', + 'Webak Elektronik', + 1996, + array['Golden Joker (Ver 16.06UNG-25, set 1)'], + array['Arcade'], + '{"mame":["goldnjkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mpu12wbk.cpp"]}'::jsonb + ), + ( + 'golden-number', + 'Golden Number', + 'BRL Bologna', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["gnumber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'golden-par-golf-joystick-v1-1', + 'Golden Par Golf (Joystick, v1.1)', + 'Strata / Incredible Technologies', + 1992, + '{}'::text[], + array['Sports'], + '{"mame":["gpgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'golden-region', + 'Golden Region', + 'Konami', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["glregion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/goldenregion.cpp"]}'::jsonb + ), + ( + 'golden-star', + 'Golden Star', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["goldstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'golden-tee-97-v1-30', + 'Golden Tee ''97 (v1.30)', + 'Incredible Technologies', + 1997, + '{}'::text[], + array['Sports'], + '{"mame":["gt97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'golden-tee-98-v1-10', + 'Golden Tee ''98 (v1.10)', + 'Incredible Technologies', + 1998, + '{}'::text[], + array['Sports'], + '{"mame":["gt98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'golden-tee-99-v1-00', + 'Golden Tee ''99 (v1.00)', + 'Incredible Technologies', + 1999, + '{}'::text[], + array['Sports'], + '{"mame":["gt99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'golden-tee-2k-v1-00', + 'Golden Tee 2K (v1.00)', + 'Incredible Technologies', + 2000, + '{}'::text[], + array['Sports'], + '{"mame":["gt2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'golden-tee-3d-golf-v1-93n', + 'Golden Tee 3D Golf (v1.93N)', + 'Incredible Technologies', + 1995, + '{}'::text[], + array['Sports'], + '{"mame":["gt3d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'golden-tee-classic-v1-00', + 'Golden Tee Classic (v1.00)', + 'Incredible Technologies', + 2001, + '{}'::text[], + array['Sports', 'Classic'], + '{"mame":["gtclassc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'golden-tee-fore-v1-00-25', + 'Golden Tee Fore! (v1.00.25)', + 'Incredible Technologies', + 2000, + '{}'::text[], + array['Sports'], + '{"mame":["gtfore01"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'golden-tee-fore-2002-v2-01-06', + 'Golden Tee Fore! 2002 (v2.01.06)', + 'Incredible Technologies', + 2001, + '{}'::text[], + array['Sports'], + '{"mame":["gtfore02"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'golden-tee-fore-2003-v3-00-10', + 'Golden Tee Fore! 2003 (v3.00.10)', + 'Incredible Technologies', + 2002, + '{}'::text[], + array['Sports'], + '{"mame":["gtfore03"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'golden-tee-fore-2004-extra-v4-00-08', + 'Golden Tee Fore! 2004 Extra (v4.00.08)', + 'Incredible Technologies', + 2003, + '{}'::text[], + array['Sports'], + '{"mame":["gtfore04"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'golden-tee-fore-2005-extra-v5-01-06', + 'Golden Tee Fore! 2005 Extra (v5.01.06)', + 'Incredible Technologies', + 2004, + '{}'::text[], + array['Sports'], + '{"mame":["gtfore05"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'golden-tee-fore-2006-complete-v6-00-01', + 'Golden Tee Fore! 2006 Complete (v6.00.01)', + 'Incredible Technologies', + 2005, + '{}'::text[], + array['Sports'], + '{"mame":["gtfore06"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'golden-tee-golf-joystick-v3-3', + 'Golden Tee Golf (Joystick, v3.3)', + 'Strata / Incredible Technologies', + 1990, + '{}'::text[], + array['Sports'], + '{"mame":["gtg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'golden-tee-golf-ii-trackball-v2-2', + 'Golden Tee Golf II (Trackball, v2.2)', + 'Strata / Incredible Technologies', + 1992, + '{}'::text[], + array['Sports'], + '{"mame":["gtg2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'golden-treasure-island', + 'Golden Treasure Island', + 'Subsino (American Alpha license)', + null, + array['Golden Treasure Island (Ver. Alpha 100)'], + array['Arcade'], + '{"mame":["goldenti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'golf-playchoice-10', + 'Golf (PlayChoice-10)', + 'Nintendo', + 1984, + '{}'::text[], + array['Sports'], + '{"mame":["pc_golf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'golfing-greats', + 'Golfing Greats', + 'Konami', + 1991, + array['Golfing Greats (World, version L)'], + array['Arcade'], + '{"mame":["glfgreat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'golgo-13', + 'Golgo 13', + 'Eighting / Raizing / Namco', + 1999, + array['Golgo 13 (Japan, GLG1/VER.A)'], + array['Arcade'], + '{"mame":["golgo13"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'golgo-13-kiseki-no-dandou', + 'Golgo 13 Kiseki no Dandou', + 'Eighting / Raizing / Namco', + 2000, + array['Golgo 13 Kiseki no Dandou (Japan, GLS1/VER.A)'], + array['Arcade'], + '{"mame":["g13knd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'golgo-13-juusei-no-requiem', + 'Golgo 13: Juusei no Requiem', + 'Eighting / Raizing / Namco', + 2001, + array['Golgo 13: Juusei no Requiem (Japan, GLT1 VER.A)'], + array['Arcade'], + '{"mame":["g13jnr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'golly-ghost', + 'Golly! Ghost!', + 'Namco', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["gollygho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'gomoku-computer', + 'Gomoku Computer', + 'Novag Industries', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ngomoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/gomoku.cpp"]}'::jsonb + ), + ( + 'gomoku-narabe-renju', + 'Gomoku Narabe Renju', + 'Nichibutsu', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["gomoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/gomoku.cpp"]}'::jsonb + ), + ( + 'gondomania', + 'Gondomania', + 'Data East Corporation', + 1987, + array['Gondomania (World)'], + array['Arcade'], + '{"mame":["gondo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'gone-fishing', + 'Gone Fishing', + 'IGS', + 2002, + array['Gone Fishing (V602US)'], + array['Arcade'], + '{"mame":["gonefsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'gone-fishing-2', + 'Gone Fishing 2', + 'IGS', + 2002, + array['Gone Fishing 2 (ver. 1445A)'], + array['Arcade'], + '{"mame":["gonefsh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'good', + 'Good', + '', + 1998, + array['Good (Korea)'], + array['Arcade'], + '{"mame":["good"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/good.cpp"]}'::jsonb + ), + ( + 'good-luck-ii', + 'Good Luck II', + 'Yung Yu / CYE', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["gluck2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gluck2.cpp"]}'::jsonb + ), + ( + 'good-luck', + 'Good Luck!', + 'General Instrument?', + null, + array['Good Luck! (dual 6809 GI Australasia PCB)'], + array['Arcade'], + '{"mame":["glck6809"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gi6809.cpp"]}'::jsonb + ), + ( + 'goori-goori', + 'Goori Goori', + 'Unico', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["goori"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/goori.cpp"]}'::jsonb + ), + ( + 'gorf', + 'Gorf', + 'Dave Nutting Associates / Midway', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["gorf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'got-cha-mini-game-festival', + 'Got-cha Mini Game Festival', + 'Dongsung / Para', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["gotcha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gotcha.cpp"]}'::jsonb + ), + ( + 'gouketsuji-ichizoku-senzo-kuyou-v200906230', + 'Gouketsuji Ichizoku: Senzo Kuyou (v200906230)', + 'Atlus', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["goketsuj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'gp-rider', + 'GP Rider', + 'Sega', + 1990, + array['GP Rider (World, FD1094 317-0163) (Twin setup)'], + array['Arcade'], + '{"mame":["gprider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'gp-world', + 'GP World', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["gpworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/gpworld.cpp"]}'::jsonb + ), + ( + 'gp2x', + 'GP2X', + 'Game Park Holdings', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gp2x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gamepark/gp2x.cpp"]}'::jsonb + ), + ( + 'gp32', + 'GP32', + 'Game Park Holdings', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gp32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gamepark/gp32.cpp"]}'::jsonb + ), + ( + 'gpi-1200', + 'GPi 1200', + 'Goldstar', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["gpi1200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'gradius-bubble-system', + 'Gradius (Bubble System)', + 'Konami', + 1985, + '{}'::text[], + array['Shooter'], + '{"mame":["gradiusb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'gradius-playchoice-10', + 'Gradius (PlayChoice-10)', + 'Konami', + 1986, + '{}'::text[], + array['Shooter'], + '{"mame":["pc_grdus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'gradius-iii', + 'Gradius III', + 'Konami', + 1989, + array['Gradius III (World, version R)'], + array['Shooter'], + '{"mame":["gradius3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gradius3.cpp"]}'::jsonb + ), + ( + 'gradius-iv-fukkatsu', + 'Gradius IV: Fukkatsu', + 'Konami', + 1998, + array['Gradius IV: Fukkatsu (ver JAC)'], + array['Shooter'], + '{"mame":["gradius4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hornet.cpp"]}'::jsonb + ), + ( + 'gran-capitan', + 'Gran Capitan', + 'High Video', + 2000, + array['Gran Capitan (Version 3)'], + array['Arcade'], + '{"mame":["grancapi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'gran-trak-10-trak-10-formula-k', + 'Gran Trak 10/Trak 10/Formula K', + 'Atari/Kee', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrak10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'gran-trak-20-trak-20-twin-racer', + 'Gran Trak 20/Trak 20/Twin Racer', + 'Atari/Kee', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrak20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'grand-canyon-ukraine-v-43-09', + 'Grand Canyon (Ukraine, V. 43.09)', + 'Extrema', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["grancan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'grand-champion', + 'Grand Champion', + 'Taito', + 1981, + array['Grand Champion (set 1)'], + array['Arcade'], + '{"mame":["grchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/grchamp.cpp"]}'::jsonb + ), + ( + 'grand-cross-v1-02f', + 'Grand Cross (v1.02F)', + 'Excellent System', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gcpinbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/gcpinbal.cpp"]}'::jsonb + ), + ( + 'grand-prix', + 'Grand Prix', + '4fun', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["grandprx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl3.cpp"]}'::jsonb + ), + ( + 'grand-prix-98', + 'Grand Prix ''98', + 'Romtec Co. Ltd', + 1998, + array['Grand Prix ''98 (V100K, set 1)'], + array['Arcade'], + '{"mame":["gp98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs009.cpp"]}'::jsonb + ), + ( + 'grand-prix-star', + 'Grand Prix Star', + 'Jaleco', + 1992, + array['Grand Prix Star (ver 4.0)'], + array['Arcade'], + '{"mame":["f1gpstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'grand-slam-mega-play', + 'Grand Slam (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_gslam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'grand-striker', + 'Grand Striker', + 'Human', + 1993, + array['Grand Striker (Europe, Oceania)'], + array['Arcade'], + '{"mame":["gstriker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/gstriker.cpp"]}'::jsonb + ), + ( + 'grand-striker-2', + 'Grand Striker 2', + 'Human Amusement', + 1996, + array['Grand Striker 2 (Europe and Oceania)'], + array['Arcade'], + '{"mame":["gstrik2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'grand-tour-v100u', + 'Grand Tour (V100U)', + 'IGS', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["grndtour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/iqblock.cpp"]}'::jsonb + ), + ( + 'grande-fratello', + 'Grande Fratello', + '', + null, + array['Grande Fratello (Ver. 1.7)'], + array['Arcade'], + '{"mame":["granfrat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'grasspin', + 'Grasspin', + 'Zilec Electronics / Jaleco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["grasspin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/blueprnt.cpp"]}'::jsonb + ), + ( + 'gratia-second-earth', + 'Gratia - Second Earth', + 'Jaleco', + 1996, + array['Gratia - Second Earth (ver 1.0, 92047-01 version)'], + array['Arcade'], + '{"mame":["gratia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'gravitar', + 'Gravitar', + 'Atari', + 1982, + array['Gravitar (version 3)'], + array['Arcade'], + '{"mame":["gravitar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bwidow.cpp"]}'::jsonb + ), + ( + 'great-bishi-bashi-champ', + 'Great Bishi Bashi Champ', + 'Konami', + 2002, + array['Great Bishi Bashi Champ (GBA48 VER. JAB)'], + array['Arcade'], + '{"mame":["gbbchmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'great-football-mega-tech-sms-based', + 'Great Football (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Sports'], + '{"mame":["mt_gfoot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'great-game-machine', + 'Great Game Machine', + 'Applied Concepts / Chafitz', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ggm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["appliedconcepts/ggm.cpp"]}'::jsonb + ), + ( + 'great-golf-mega-tech-sms-based', + 'Great Golf (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Sports'], + '{"mame":["mt_ggolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'great-guns', + 'Great Guns', + 'Stern Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["greatgun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/mazerbla.cpp"]}'::jsonb + ), + ( + 'great-sluggers', + 'Great Sluggers', + 'Namco', + 1993, + array['Great Sluggers (Japan)'], + array['Arcade'], + '{"mame":["gslugrsj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'great-sluggers-94', + 'Great Sluggers ''94', + 'Namco', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gslgr94u"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'great-soccer-mega-tech-sms-based', + 'Great Soccer (Mega-Tech, SMS based)', + 'Sega', + null, + '{}'::text[], + array['Sports'], + '{"mame":["mt_gsocr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'great-swordsman', + 'Great Swordsman', + 'Allumer / Taito Corporation', + 1984, + array['Great Swordsman (World?)'], + array['Arcade'], + '{"mame":["gsword"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/gsword.cpp"]}'::jsonb + ), + ( + 'green-beret', + 'Green Beret', + 'Konami', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["gberet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gberet.cpp"]}'::jsonb + ), + ( + 'green-beret-irem', + 'Green Beret (Irem)', + 'Irem', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["greenber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m10.cpp"]}'::jsonb + ), + ( + 'grid-seeker-project-storm-hammer', + 'Grid Seeker: Project Storm Hammer', + 'Taito Corporation Japan', + 1992, + array['Grid Seeker: Project Storm Hammer (Ver 1.3O)'], + array['Arcade'], + '{"mame":["gseeker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'gridiron-fight', + 'Gridiron Fight', + 'Tehkan', + 1985, + array['Gridiron Fight (World)'], + array['Arcade'], + '{"mame":["gridiron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tehkanwc.cpp"]}'::jsonb + ), + ( + 'gridlee', + 'Gridlee', + 'Videa', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["gridlee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/gridlee.cpp"]}'::jsonb + ), + ( + 'grind-stormer', + 'Grind Stormer', + 'Toaplan', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["grindstm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/vfive.cpp"]}'::jsonb + ), + ( + 'grobda', + 'Grobda', + 'Namco', + 1984, + array['Grobda (New Ver.)'], + array['Arcade'], + '{"mame":["grobda"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'groove-on-fight-gouketsuji-ichizoku-3-j-970416-v1-001', + 'Groove on Fight - Gouketsuji Ichizoku 3 (J 970416 V1.001)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["groovef"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'ground-effects-super-ground-effects', + 'Ground Effects / Super Ground Effects', + 'Taito Corporation', + 1992, + array['Ground Effects / Super Ground Effects (Japan)'], + array['Arcade'], + '{"mame":["groundfx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/groundfx.cpp"]}'::jsonb + ), + ( + 'growl', + 'Growl', + 'Taito Corporation Japan', + 1990, + array['Growl (World, Rev 1)'], + array['Arcade'], + '{"mame":["growl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'grudge-match', + 'Grudge Match', + 'Bally Midway', + 1987, + array['Grudge Match (v00.90, prototype)'], + array['Arcade'], + '{"mame":["grudge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'grudge-match-yankee-game-technology', + 'Grudge Match (Yankee Game Technology)', + 'Yankee Game Technology', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["grmatch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'gti-club-corso-italiano', + 'GTI Club: Corso Italiano', + 'Konami', + 2000, + array['GTI Club: Corso Italiano (ver JAB)'], + array['Arcade'], + '{"mame":["gticlub2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'gti-club-rally-cote-d-azur', + 'GTI Club: Rally Cote D''Azur', + 'Konami', + 1996, + array['GTI Club: Rally Cote D''Azur (ver EAA)'], + array['Arcade'], + '{"mame":["gticlub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gticlub.cpp"]}'::jsonb + ), + ( + 'guardian', + 'Guardian', + 'Toaplan / Taito America Corporation (Kitkorp license)', + 1986, + array['Guardian (US)'], + array['Arcade'], + '{"mame":["grdian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/slapfght.cpp"]}'::jsonb + ), + ( + 'guardian-force-juet-980318-v0-105', + 'Guardian Force (JUET 980318 V0.105)', + 'Success', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["grdforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'guardian-storm-horizontal-not-encrypted', + 'Guardian Storm (horizontal, not encrypted)', + 'Afega (Apples Industries license)', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["grdnstrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'guardians-denjin-makai-ii-p-fg01-1-pcb', + 'Guardians / Denjin Makai II (P-FG01-1 PCB)', + 'Winkysoft (Banpresto license)', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["grdians"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'guardians-of-the-hood', + 'Guardians of the ''Hood', + 'Atari Games', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["guardian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarig42.cpp"]}'::jsonb + ), + ( + 'guerrilla-war', + 'Guerrilla War', + 'SNK', + 1987, + array['Guerrilla War (US)'], + array['Arcade'], + '{"mame":["gwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'guided-missile', + 'Guided Missile', + 'Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["gmissile"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'guilty-gear-isuka', + 'Guilty Gear Isuka', + 'Arc System Works / Sammy', + 2004, + '{}'::text[], + array['Fighting'], + '{"mame":["ggisuka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'guilty-gear-x', + 'Guilty Gear X', + 'Arc System Works', + 2000, + '{}'::text[], + array['Fighting'], + '{"mame":["ggx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'guilty-gear-x-ver-1-5', + 'Guilty Gear X ver. 1.5', + 'Arc System Works / Sammy', + 2003, + '{}'::text[], + array['Fighting'], + '{"mame":["ggx15"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'guilty-gear-xx-gdl-0011', + 'Guilty Gear XX (GDL-0011)', + 'Arc System Works', + 2002, + '{}'::text[], + array['Fighting'], + '{"mame":["ggxx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'guilty-gear-xx-reload-gdl-0019a', + 'Guilty Gear XX #Reload (GDL-0019A)', + 'Arc System Works', + 2003, + array['Guilty Gear XX #Reload (Japan, Rev A) (GDL-0019A)'], + array['Fighting'], + '{"mame":["ggxxrl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'guilty-gear-xx-accent-core-gdl-0041', + 'Guilty Gear XX Accent Core (GDL-0041)', + 'Arc System Works', + 2006, + array['Guilty Gear XX Accent Core (Japan) (GDL-0041)'], + array['Fighting'], + '{"mame":["ggxxac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'guilty-gear-xx-slash-gdl-0033a', + 'Guilty Gear XX Slash (GDL-0033A)', + 'Arc System Works', + 2005, + array['Guilty Gear XX Slash (Japan, Rev A) (GDL-0033A)'], + array['Fighting'], + '{"mame":["ggxxsla"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-10th-mix', + 'Guitar Freaks 10th Mix', + 'Konami', + 2003, + array['Guitar Freaks 10th Mix (G*D10 VER. JAB)'], + array['Arcade'], + '{"mame":["gtfrk10m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-11th-mix', + 'Guitar Freaks 11th Mix', + 'Konami', + 2004, + array['Guitar Freaks 11th Mix (G*D39 VER. JAA)'], + array['Arcade'], + '{"mame":["gtfrk11m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-2nd-mix-ver-1-01', + 'Guitar Freaks 2nd Mix Ver 1.01', + 'Konami', + 1999, + array['Guitar Freaks 2nd Mix Ver 1.01 (GQ883 VER. JAD)'], + array['Arcade'], + '{"mame":["gtrfrk2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-3rd-mix', + 'Guitar Freaks 3rd Mix', + 'Konami', + 2000, + array['Guitar Freaks 3rd Mix (GE949 VER. JAC)'], + array['Arcade'], + '{"mame":["gtrfrk3m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-4th-mix', + 'Guitar Freaks 4th Mix', + 'Konami', + 2000, + array['Guitar Freaks 4th Mix (G*A24 VER. JAA)'], + array['Arcade'], + '{"mame":["gtrfrk4m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-5th-mix', + 'Guitar Freaks 5th Mix', + 'Konami', + 2001, + array['Guitar Freaks 5th Mix (G*A26 VER. JAA)'], + array['Arcade'], + '{"mame":["gtrfrk5m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-6th-mix', + 'Guitar Freaks 6th Mix', + 'Konami', + 2001, + array['Guitar Freaks 6th Mix (G*B06 VER. JAA)'], + array['Arcade'], + '{"mame":["gtrfrk6m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-7th-mix', + 'Guitar Freaks 7th Mix', + 'Konami', + 2001, + array['Guitar Freaks 7th Mix (G*B17 VER. JAA)'], + array['Arcade'], + '{"mame":["gtrfrk7m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-8th-mix-power-up-ver', + 'Guitar Freaks 8th Mix power-up ver.', + 'Konami', + 2002, + array['Guitar Freaks 8th Mix power-up ver. (G*C08 VER. JBA)'], + array['Arcade'], + '{"mame":["gtrfrk8m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-9th-mix', + 'Guitar Freaks 9th Mix', + 'Konami', + 2003, + array['Guitar Freaks 9th Mix (G*C39 VER. JAA)'], + array['Arcade'], + '{"mame":["gtrfrk9m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-v-e03-a-a-a-2005050200', + 'Guitar Freaks V (E03:A:A:A:2005050200)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrfrkva"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-v-e03-j-a-a-2005050200', + 'Guitar Freaks V (E03:J:A:A:2005050200)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrfrkvj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-v2-f03-a-a-a-2006011201', + 'Guitar Freaks V2 (F03:A:A:A:2006011201)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrfrkv2a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-v2-f03-j-a-a-2006011201', + 'Guitar Freaks V2 (F03:J:A:A:2006011201)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrfrkv2j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-v3-f33-a-a-a-2006101800', + 'Guitar Freaks V3 (F33:A:A:A:2006101800)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrfrkv3a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-v3-f33-j-a-a-2006101800', + 'Guitar Freaks V3 (F33:J:A:A:2006101800)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrfrkv3j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-ver-1-01', + 'Guitar Freaks Ver 1.01', + 'Konami', + 1999, + array['Guitar Freaks Ver 1.01 (GQ886 VER. EAD)'], + array['Arcade'], + '{"mame":["gtrfrks"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-hero-arcade-v1-0-5', + 'Guitar Hero Arcade (v1.0.5)', + 'Raw Thrills (Activision / Konami license)', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrhroac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/rawthrillspc.cpp"]}'::jsonb + ), + ( + 'gulf-storm', + 'Gulf Storm', + 'Dooyong', + 1991, + array['Gulf Storm (set 1)'], + array['Arcade'], + '{"mame":["gulfstrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'gulf-war-ii', + 'Gulf War II', + 'Comad', + 1991, + array['Gulf War II (set 1)'], + array['Arcade'], + '{"mame":["gulfwar2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/twincobr.cpp"]}'::jsonb + ), + ( + 'gulun-pa', + 'Gulun.Pa!', + 'Capcom', + 1993, + array['Gulun.Pa! (Japan 931220 L) (prototype)'], + array['Arcade'], + '{"mame":["gulunpa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'gumbo', + 'Gumbo', + 'Min Corp.', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gumbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gumbo.cpp"]}'::jsonb + ), + ( + 'gun-and-frontier', + 'Gun & Frontier', + 'Taito Corporation Japan', + 1990, + array['Gun & Frontier (World)'], + array['Arcade'], + '{"mame":["gunfront"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'gun-champ', + 'Gun Champ', + 'Model Racing', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["gunchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'gun-dealer', + 'Gun Dealer', + 'Dooyong', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["gundealr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/gundealr.cpp"]}'::jsonb + ), + ( + 'gun-dealer-94', + 'Gun Dealer ''94', + 'Dooyong', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gundl94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'gun-fight', + 'Gun Fight', + 'Dave Nutting Associates / Midway', + 1975, + array['Gun Fight (set 1)'], + array['Arcade'], + '{"mame":["gunfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'gun-force-ii', + 'Gun Force II', + 'Irem', + 1994, + array['Gun Force II (US)'], + array['Arcade'], + '{"mame":["gunforc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'gun-master', + 'Gun Master', + 'Metro', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gunmast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'gun-survivor-2-biohazard-code-veronica', + 'Gun Survivor 2 Biohazard Code: Veronica', + 'Capcom / Namco', + 2001, + array['Gun Survivor 2 Biohazard Code: Veronica (World, BHF2 Ver.E)'], + array['Arcade'], + '{"mame":["gunsur2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'gun-smoke', + 'Gun.Smoke', + 'Capcom', + 1985, + array['Gun.Smoke (World, 1985-11-15)'], + array['Arcade'], + '{"mame":["gunsmoke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/gunsmoke.cpp"]}'::jsonb + ), + ( + 'gunbarich', + 'Gunbarich', + 'Psikyo', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gnbarich"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'gunbird', + 'Gunbird', + 'Psikyo', + 1994, + array['Gunbird (World)'], + array['Arcade'], + '{"mame":["gunbird"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo.cpp"]}'::jsonb + ), + ( + 'gunbird-2', + 'Gunbird 2', + 'Psikyo', + 1998, + array['Gunbird 2 (set 1)'], + array['Arcade'], + '{"mame":["gunbird2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'gunblade-ny', + 'Gunblade NY', + 'Sega', + 1995, + array['Gunblade NY (Revision A)'], + array['Light gun'], + '{"mame":["gunblade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'gunbuster', + 'Gunbuster', + 'Taito Corporation Japan', + 1992, + array['Gunbuster (World)'], + array['Arcade'], + '{"mame":["gunbustr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/gunbustr.cpp"]}'::jsonb + ), + ( + 'gundam-battle-operating-simulator-gdx-0013', + 'Gundam Battle Operating Simulator (GDX-0013)', + 'Banpresto', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gundamos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'gundam-rx-78', + 'Gundam RX-78', + 'Bandai', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["rx78"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bandai/rx78.cpp"]}'::jsonb + ), + ( + 'gundam-seed-federation-vs-z-a-f-t', + 'Gundam Seed: Federation vs. Z.A.F.T.', + 'Capcom / Banpresto', + 2005, + array['Gundam Seed: Federation vs. Z.A.F.T. (SED1 Ver. A)'], + array['Arcade'], + '{"mame":["gundzaft"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'gundam-vs-gundam', + 'Gundam vs. Gundam', + 'Capcom / Bandai', + 2008, + array['Gundam vs. Gundam (GVS1 Ver. A)'], + array['Arcade'], + '{"mame":["gdvsgd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'gundam-vs-gundam-next', + 'Gundam vs. Gundam Next', + 'Capcom / Bandai', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["gdvsgdnx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'gundam-wing-endless-duel', + 'Gundam Wing: Endless Duel', + 'bootleg', + 1996, + array['Gundam Wing: Endless Duel (SNES bootleg, set 1)'], + array['Arcade'], + '{"mame":["endless"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'gundhara', + 'Gundhara', + 'Banpresto', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["gundhara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'gunforce-battle-fire-engulfed-terror-island', + 'Gunforce: Battle Fire Engulfed Terror Island', + 'Irem', + 1991, + array['Gunforce: Battle Fire Engulfed Terror Island (World)'], + array['Arcade'], + '{"mame":["gunforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'gunlock', + 'Gunlock', + 'Taito Corporation Japan', + 1993, + array['Gunlock (Ver 2.3O 1994/01/20)'], + array['Arcade'], + '{"mame":["gunlock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'gunman', + 'Gunman', + 'Taito', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["gunman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 'gunmania', + 'GunMania', + 'Konami', + 2000, + array['GunMania (GL906 VER. JAA)'], + array['Arcade'], + '{"mame":["gunmania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'gunmen-wars', + 'Gunmen Wars', + 'Namco', + 1998, + array['Gunmen Wars (Japan, GM1 Ver. B)'], + array['Arcade'], + '{"mame":["gunwars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'gunnail-28th-may-1992', + 'GunNail (28th May. 1992)', + 'NMK / Tecmo', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["gunnail"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'gunpey', + 'Gunpey', + 'Bandai / Banpresto', + 2000, + array['Gunpey (Japan)'], + array['Arcade'], + '{"mame":["gunpey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gunpey.cpp"]}'::jsonb + ), + ( + 'gunstar-heroes-mega-play', + 'Gunstar Heroes (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_gunhe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'gunstar-heroes-snake-rattle-n-roll-joe-and-mac', + 'Gunstar Heroes / Snake Rattle n'' Roll / Joe & Mac', + 'bootleg', + 1995, + array['Gunstar Heroes / Snake Rattle n'' Roll / Joe & Mac (Conny bootleg of Mega Drive versions)'], + array['Arcade'], + '{"mame":["3in1mbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'gururin', + 'Gururin', + 'Face', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gururin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'guts-n-glory', + 'Guts n'' Glory', + 'Atari Games', + 1989, + array['Guts n'' Glory (prototype)'], + array['Arcade'], + '{"mame":["guts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/eprom.cpp"]}'::jsonb + ), + ( + 'guts-n', + 'Guts''n', + 'Kaneko / Kouyousha', + 2000, + array['Guts''n (Japan)'], + array['Arcade'], + '{"mame":["gutsn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'guwange', + 'Guwange', + 'Cave (Atlus license)', + 1999, + array['Guwange (Japan, 1999 6/24 Master Ver 16:55)'], + array['Arcade'], + '{"mame":["guwange"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'guzzler', + 'Guzzler', + 'Tehkan', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["guzzler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'gwasuwon', + 'Gwasuwon', + 'SemiCom / DMD', + 1997, + array['Gwasuwon (Korea)'], + array['Arcade'], + '{"mame":["gwasu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'gyakuten-puzzle-bancho', + 'Gyakuten!! Puzzle Bancho', + 'Fuuki', + 1996, + array['Gyakuten!! Puzzle Bancho (Japan, set 1)'], + array['Puzzle'], + '{"mame":["pbancho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fuuki/fuukifg2.cpp"]}'::jsonb + ), + ( + 'gypsy-juggler', + 'Gypsy Juggler', + 'Meadows Games, Inc.', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["gypsyjug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadows.cpp"]}'::jsonb + ), + ( + 'gypsy-magic', + 'Gypsy Magic', + 'Konami', + null, + array['Gypsy Magic (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["gypmagic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'gyrodine', + 'Gyrodine', + 'Crux', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["gyrodine"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/kyugo.cpp"]}'::jsonb + ), + ( + 'gyruss', + 'Gyruss', + 'Konami', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["gyruss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gyruss.cpp"]}'::jsonb + ), + ( + 'gz-70sp', + 'GZ-70SP', + 'Casio', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["gz70sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ctk551.cpp"]}'::jsonb + ), + ( + 'h-01-jce', + 'H-01 JCE', + 'China Jiangmen Computer Equipment Factory', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["h01jce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/h01x.cpp"]}'::jsonb + ), + ( + 'h-01b', + 'H-01B', + 'China H Computer Company', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["h01b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/h01x.cpp"]}'::jsonb + ), + ( + 'h-89', + 'H-89', + 'Heath Company', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["h89"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["heathzenith/h89.cpp"]}'::jsonb + ), + ( + 'h12-pro-1000-in-1-handheld-game-console', + 'H12 Pro 1000 in 1 Handheld Game Console', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["h12p1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'hacha-mecha-fighter', + 'Hacha Mecha Fighter', + 'NMK', + 1991, + array['Hacha Mecha Fighter (19th Sep. 1991, protected, set 1)'], + array['Arcade'], + '{"mame":["hachamf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'hachoo', + 'Hachoo!', + 'Jaleco', + 1989, + array['Hachoo! (World, set 1)'], + array['Arcade'], + '{"mame":["hachoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'hae-hae-ka-ka-ka', + 'Hae Hae Ka Ka Ka', + 'Sammy', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["haekaka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'hal21', + 'HAL21', + 'SNK', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hal21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'halley-s-comet', + 'Halley''s Comet', + 'Taito America Corporation (Coin-It license)', + 1986, + array['Halley''s Comet (US)'], + array['Arcade'], + '{"mame":["halleysc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/halleys.cpp"]}'::jsonb + ), + ( + 'halloween', + 'Halloween', + 'Ming-Yang Electronic / TSK', + 2006, + array['Halloween (Ming-Yang Electronic / TSK, version 1.0)'], + array['Arcade'], + '{"mame":["halltsk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'halloween-party', + 'Halloween Party', + 'Astro Corp.', + 2005, + array['Halloween Party (US.23.A)'], + array['Arcade'], + '{"mame":["hwparty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'hammer', + 'Hammer', + 'Andamiro', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["hammer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/midas.cpp"]}'::jsonb + ), + ( + 'hammer-away', + 'Hammer Away', + 'Sega / Santos', + 1991, + array['Hammer Away (Japan, prototype)'], + array['Arcade'], + '{"mame":["hamaway"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'hammer-boy', + 'Hammer Boy', + 'Dinamic / Inder', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["hamboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/megaphx.cpp"]}'::jsonb + ), + ( + 'hammer-champ', + 'Hammer Champ', + 'Namco', + 1997, + array['Hammer Champ (Japan)'], + array['Arcade'], + '{"mame":["hammerch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcoeva.cpp"]}'::jsonb + ), + ( + 'hammerin-harry', + 'Hammerin'' Harry', + 'Irem', + 1990, + array['Hammerin'' Harry (World, M81 hardware)'], + array['Arcade'], + '{"mame":["hharry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'hana-arashi', + 'Hana Arashi', + 'Asahi Bussan', + 1993, + array['Hana Arashi (Japan)'], + array['Arcade'], + '{"mame":["harashi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/speedatk.cpp"]}'::jsonb + ), + ( + 'hana-awase', + 'Hana Awase', + 'Seta Kikaku', + 1982, + array['Hana Awase (set 1)'], + array['Arcade'], + '{"mame":["hanaawas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/hanaawas.cpp"]}'::jsonb + ), + ( + 'hana-awase-6-part-ii', + 'Hana Awase 6 Part II', + 'Alba', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["hana6pt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/albazg.cpp"]}'::jsonb + ), + ( + 'hana-doujou', + 'Hana Doujou', + 'Alba', + 1984, + array['Hana Doujou (set 1)'], + array['Arcade'], + '{"mame":["hanadojo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/hanadojo.cpp"]}'::jsonb + ), + ( + 'hana-jingi', + 'Hana Jingi', + 'Dynax', + 1990, + array['Hana Jingi (Japan set 1)'], + array['Arcade'], + '{"mame":["hjingi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'hana-kagerou', + 'Hana Kagerou', + 'Nakanihon / Dynax', + 1997, + array['Hana Kagerou (Japan)'], + array['Arcade'], + '{"mame":["hkagerou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hana-kanzashi', + 'Hana Kanzashi', + 'Dynax', + 1996, + array['Hana Kanzashi (Japan)'], + array['Arcade'], + '{"mame":["hanakanz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hana-no-mai', + 'Hana no Mai', + 'Dynax', + 1988, + array['Hana no Mai (Japan)'], + array['Arcade'], + '{"mame":["hanamai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'hana-no-ren-chan-ii', + 'Hana no Ren-Chan II', + 'K & K Electron', + 1985, + array['Hana no Ren-Chan II (Japan)'], + array['Arcade'], + '{"mame":["hanaren2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/speedatk.cpp"]}'::jsonb + ), + ( + 'hana-to-ojisan', + 'Hana to Ojisan', + 'Nichibutsu', + 1991, + array['Hana to Ojisan (ver 1.01, 1991/12/09)'], + array['Arcade'], + '{"mame":["hanaoji"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'hana-wo-yaraneba', + 'Hana wo Yaraneba!', + 'Dynax', + 1991, + array['Hana wo Yaraneba! (Japan)'], + array['Arcade'], + '{"mame":["hanayara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'hana-yayoi', + 'Hana Yayoi', + 'Dyna Electronics', + 1987, + array['Hana Yayoi (Japan)'], + array['Arcade'], + '{"mame":["hnayayoi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/hnayayoi.cpp"]}'::jsonb + ), + ( + 'hanabi-de-doon-don-chan-puzzle', + 'Hanabi de Doon! - Don-chan Puzzle', + 'Aruze', + 2003, + '{}'::text[], + array['Puzzle'], + '{"mame":["doncdoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'hanafuda-hana-ginga', + 'Hanafuda Hana Ginga', + 'Dynax', + 1994, + array['Hanafuda Hana Ginga (Japan, ver 1.00, rev 1)'], + array['Arcade'], + '{"mame":["hginga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hanafuda-hana-gokou', + 'Hanafuda Hana Gokou', + 'Dynax (Alba license)', + 1995, + array['Hanafuda Hana Gokou (Japan, ver. B)'], + array['Arcade'], + '{"mame":["hgokou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hanafuda-hana-tengoku', + 'Hanafuda Hana Tengoku', + 'Dynax', + 1992, + array['Hanafuda Hana Tengoku (Japan)'], + array['Arcade'], + '{"mame":["htengoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hanafuda-hana-tsubaki', + 'Hanafuda Hana Tsubaki', + 'Dynax', + 1999, + array['Hanafuda Hana Tsubaki (Japan)'], + array['Arcade'], + '{"mame":["htsubaki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hanafuda-night-rose', + 'Hanafuda Night Rose', + 'Techno-Top', + 2000, + array['Hanafuda Night Rose (Japan, TSM008-04)'], + array['Arcade'], + '{"mame":["hnrose"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hanaroku', + 'Hanaroku', + 'Alba', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["hanaroku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/albazc.cpp"]}'::jsonb + ), + ( + 'handheld-210-in-1', + 'Handheld 210 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_hh210"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'handheld-game-console-319-in-1', + 'Handheld Game Console 319-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hhgc319"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'handheld-game-console-339-in-1', + 'Handheld Game Console 339-in-1', + 'BaoBaoLong', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["bl339"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'handivoice-hc-110', + 'HandiVoice HC-110', + 'Votrax/Phonic Mirror', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["hc110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["votrax/votrhv.cpp"]}'::jsonb + ), + ( + 'handy-boy-11-in-1-tv-play-power', + 'Handy Boy 11-in-1 (TV Play Power)', + 'Techno Source / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ts_handy11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'hang-pilot', + 'Hang Pilot', + 'Konami', + 1997, + array['Hang Pilot (ver JAB)'], + array['Arcade'], + '{"mame":["hangplt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gticlub.cpp"]}'::jsonb + ), + ( + 'hang-on', + 'Hang-On', + 'Sega', + 1985, + array['Hang-On (Rev A)'], + array['Arcade'], + '{"mame":["hangon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segahang.cpp"]}'::jsonb + ), + ( + 'hang-on-jr', + 'Hang-On Jr.', + 'Sega', + 1985, + array['Hang-On Jr. (Rev. B)'], + array['Arcade'], + '{"mame":["hangonjr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'hangman', + 'Hangman', + 'Status Games', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["hangman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'hanguk-pro-yagu-98', + 'Hanguk Pro Yagu 98', + 'Deniam', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["hpyagu98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'hangzo', + 'Hangzo', + 'Hot-B', + 1992, + array['Hangzo (Japan, prototype)'], + array['Arcade'], + '{"mame":["hangzo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/rohga.cpp"]}'::jsonb + ), + ( + 'happy-farm', + 'Happy Farm', + 'Astro Corp.', + 2008, + array['Happy Farm (Ver. US.01.02.B)'], + array['Arcade'], + '{"mame":["hapfarm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'happy-fish-v2-pcb-302-in-1', + 'Happy Fish (V2 PCB, 302-in-1)', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hapyfsh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/hapyfish.cpp"]}'::jsonb + ), + ( + 'happy-happy-hippy-atronic', + 'Happy Happy Hippy (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["haphippy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'happy-jackie-v110u', + 'Happy Jackie (v110U)', + 'IGS', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["jackie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/jackie.cpp"]}'::jsonb + ), + ( + 'happy-lucky', + 'Happy Lucky!', + 'Taito Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["haplucky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/haplucky.cpp"]}'::jsonb + ), + ( + 'happy-planet', + 'Happy Planet', + 'Namco', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["hplanet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/sg_vga.cpp"]}'::jsonb + ), + ( + 'happy-skill-italy-v611it', + 'Happy Skill (Italy, V611IT)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["happyskl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'happy-tour-v1-12', + 'Happy Tour (V1.12)', + 'GAV Company', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["hapytour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/ghosteo.cpp"]}'::jsonb + ), + ( + 'hard-drivin', + 'Hard Drivin''', + 'Atari Games', + 1988, + array['Hard Drivin'' (cockpit, rev 7)'], + array['Arcade'], + '{"mame":["harddriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/harddriv.cpp"]}'::jsonb + ), + ( + 'hard-drivin-s-airborne', + 'Hard Drivin''s Airborne', + 'Atari Games', + 1993, + array['Hard Drivin''s Airborne (prototype, rev 2.7)'], + array['Arcade'], + '{"mame":["hdrivair"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/harddriv.cpp"]}'::jsonb + ), + ( + 'hard-dunk', + 'Hard Dunk', + 'Sega', + 1994, + array['Hard Dunk (World)'], + array['Arcade'], + '{"mame":["harddunk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'hard-hat', + 'Hard Hat', + 'Exidy', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hardhat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'hard-head', + 'Hard Head', + 'SunA', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["hardhead"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna8.cpp"]}'::jsonb + ), + ( + 'hard-head-2', + 'Hard Head 2', + 'SunA', + 1991, + array['Hard Head 2 (v2.0, Music Program v2.4)'], + array['Arcade'], + '{"mame":["hardhea2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna8.cpp"]}'::jsonb + ), + ( + 'hard-puncher-hajime-no-ippo-the-fighting', + 'Hard Puncher Hajime no Ippo - The Fighting!', + 'Taito', + 2001, + array['Hard Puncher Hajime no Ippo - The Fighting! (VER.2.02J)'], + array['Arcade'], + '{"mame":["ippo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'hard-puncher-hajime-no-ippo-2-the-fighting-ouja-e-no-chousen', + 'Hard Puncher Hajime no Ippo 2 - The Fighting! - Ouja e no chousen', + 'Taito', + 2002, + array['Hard Puncher Hajime no Ippo 2 - The Fighting! - Ouja e no chousen (VER.2.00J)'], + array['Arcade'], + '{"mame":["ippo2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'hard-times', + 'Hard Times', + 'Playmark', + 1994, + array['Hard Times (set 1)'], + array['Arcade'], + '{"mame":["hrdtimes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/playmark.cpp"]}'::jsonb + ), + ( + 'hard-yardage-v1-20', + 'Hard Yardage (v1.20)', + 'Strata / Incredible Technologies', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["hardyard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'harem', + 'Harem', + 'I.G.R.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["harem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'harem-challenge', + 'Harem Challenge', + 'CD Express', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["haremchl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'harikiri-junior-baseball', + 'Harikiri Junior Baseball', + 'Taito Corporation', + 1998, + array['Harikiri Junior Baseball (Japan, main ver. 1.0, video ver. 1.3)'], + array['Sports'], + '{"mame":["harikiri"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/sbmjb.cpp"]}'::jsonb + ), + ( + 'harley-davidson-and-l-a-riders', + 'Harley-Davidson and L.A. Riders', + 'Sega', + 1997, + array['Harley-Davidson and L.A. Riders (Revision B)'], + array['Arcade'], + '{"mame":["harley"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'harriet', + 'Harriet', + 'Quantel', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["harriet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["quantel/harriet.cpp"]}'::jsonb + ), + ( + 'hasamu', + 'Hasamu', + 'Irem', + 1991, + array['Hasamu (Japan)'], + array['Arcade'], + '{"mame":["hasamu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m90.cpp"]}'::jsonb + ), + ( + 'hashire-patrol-car-j-990326-v1-000', + 'Hashire Patrol Car (J 990326 V1.000)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["patocar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'hat-trick-11-12-84', + 'Hat Trick (11/12/84)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["hattrick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'hatch-catch', + 'Hatch Catch', + 'SemiCom', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["htchctch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'hatris', + 'Hatris', + 'Video System Co.', + 1990, + array['Hatris (US)'], + array['Arcade'], + '{"mame":["hatris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pipedrm.cpp"]}'::jsonb + ), + ( + 'haunted-castle', + 'Haunted Castle', + 'Konami', + 1988, + array['Haunted Castle (version M)'], + array['Arcade'], + '{"mame":["hcastle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hcastle.cpp"]}'::jsonb + ), + ( + 'haunted-house', + 'Haunted House', + 'IGS', + 2008, + array['Haunted House (IGS, V109US)'], + array['Arcade'], + '{"mame":["haunthig"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'haunted-hunter', + 'Haunted Hunter', + 'Amuzy Corporation', + 2005, + array['Haunted Hunter (Japan, ver 1.00)'], + array['Arcade'], + '{"mame":["hhunter"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'hawaii', + 'Hawaii', + 'Astro Corp.', + 2004, + array['Hawaii (Russia)'], + array['Arcade'], + '{"mame":["hawaii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'hayauchi-gun-kids', + 'Hayauchi Gun Kids', + 'Sammy', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["gunkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'hc900-kc-85-2', + 'HC900 / KC 85/2', + 'VEB Mikroelektronik "Wilhelm Pieck" Mühlhausen', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["kc85_2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/kc.cpp"]}'::jsonb + ), + ( + 'hds200', + 'HDS200', + 'Human Designed Systems', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hds200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hds/hds200.cpp"]}'::jsonb + ), + ( + 'head-on-2-players', + 'Head On (2 players)', + 'Gremlin', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["headon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'head-on-irem-m-15-hardware', + 'Head On (Irem, M-15 Hardware)', + 'Irem', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["headoni"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m10.cpp"]}'::jsonb + ), + ( + 'head-on-2', + 'Head On 2', + 'Sega', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["headon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'head-panic', + 'Head Panic', + 'ESD', + 2000, + array['Head Panic (ver. 0117, 17/01/2000)'], + array['Arcade'], + '{"mame":["hedpanic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'heart-attack', + 'Heart Attack', + 'Century Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["heartatk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'heat-of-eleven-98', + 'Heat of Eleven ''98', + 'Konami', + 1998, + array['Heat of Eleven ''98 (ver EAA)'], + array['Arcade'], + '{"mame":["heatof11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamim2.cpp"]}'::jsonb + ), + ( + 'heat-up-hockey-image', + 'Heat Up Hockey Image', + 'Sega', + 2019, + array['Heat Up Hockey Image (Ver.1.003R)'], + array['Arcade'], + '{"mame":["huhimage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'heated-barrel', + 'Heated Barrel', + 'TAD Corporation', + 1992, + array['Heated Barrel (World version 3)'], + array['Arcade'], + '{"mame":["heatbrl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/legionna.cpp"]}'::jsonb + ), + ( + 'heathkit-h8-digital-computer', + 'Heathkit H8 Digital Computer', + 'Heath Company', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["h8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["heathzenith/h8.cpp"]}'::jsonb + ), + ( + 'heathkit-model-et-3400-microprocessor-trainer', + 'Heathkit Model ET-3400 Microprocessor Trainer', + 'Heath Company', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["et3400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["heathzenith/et3400.cpp"]}'::jsonb + ), + ( + 'heavy-barrel', + 'Heavy Barrel', + 'Data East Corporation', + 1987, + array['Heavy Barrel (World)'], + array['Arcade'], + '{"mame":["hbarrel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'heavy-metal-315-5135', + 'Heavy Metal (315-5135)', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hvymetal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'heavy-metal-geomatrix', + 'Heavy Metal: Geomatrix', + 'Capcom', + 2001, + array['Heavy Metal: Geomatrix (Rev B)'], + array['Arcade'], + '{"mame":["hmgeo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'heavy-smash', + 'Heavy Smash', + 'Data East Corporation', + 1993, + array['Heavy Smash (Europe version -2)'], + array['Arcade'], + '{"mame":["hvysmsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco156.cpp"]}'::jsonb + ), + ( + 'heavy-unit', + 'Heavy Unit', + 'Kaneko / Taito', + 1988, + array['Heavy Unit (World)'], + array['Arcade'], + '{"mame":["hvyunit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/hvyunit.cpp"]}'::jsonb + ), + ( + 'heavyweight-champ', + 'Heavyweight Champ', + 'Sega', + 1987, + array['Heavyweight Champ (set 1)'], + array['Arcade'], + '{"mame":["hwchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'hebereke-no-popoon', + 'Hebereke no Popoon', + 'Sunsoft / Atlus', + 1994, + array['Hebereke no Popoon (Japan)'], + array['Arcade'], + '{"mame":["heberpop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shangha3.cpp"]}'::jsonb + ), + ( + 'hector-2hr', + 'Hector 2HR+', + 'Micronique', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hec2hrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hec2hrp/hec2hrp.cpp"]}'::jsonb + ), + ( + 'heiankyo-alien', + 'Heiankyo Alien', + 'Denki Onkyo', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["heiankyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'hektor-ii', + 'Hektor II', + 'The Open University', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hektor2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["openuni/hektor.cpp"]}'::jsonb + ), + ( + 'hektor-iii', + 'Hektor III', + 'The Open University', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["hektor3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["openuni/hektor.cpp"]}'::jsonb + ), + ( + 'helifire', + 'HeliFire', + 'Nintendo', + 1980, + array['HeliFire (set 1)'], + array['Arcade'], + '{"mame":["helifire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/n8080.cpp"]}'::jsonb + ), + ( + 'hellfire', + 'Hellfire', + 'Toaplan (Taito license)', + 1989, + array['Hellfire (2P set)'], + array['Arcade'], + '{"mame":["hellfire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/toaplan1.cpp"]}'::jsonb + ), + ( + 'hello-kitty-koi-no-shugoshin-uranai', + 'Hello Kitty Koi no Shugoshin Uranai', + 'Taito Corporation', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["hkuranai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/dinoking.cpp"]}'::jsonb + ), + ( + 'hengsheng-36-in-1-black-pad', + 'HengSheng 36-in-1 (Black pad)', + 'HengSheng', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["hs36blk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'hengsheng-36-in-1-red-pad', + 'HengSheng 36-in-1 (Red pad)', + 'HengSheng', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["hs36red"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'hero', + 'Hero', + 'Seatongrove UK, Ltd.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["hero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'heuk-sun-baek-sa', + 'Heuk Sun Baek Sa', + 'Oksan / F2 System', + 1997, + array['Heuk Sun Baek Sa (Korea)'], + array['Arcade'], + '{"mame":["heuksun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/crospang.cpp"]}'::jsonb + ), + ( + 'hexa', + 'Hexa', + 'D.R. Korea', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["hexa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/arkanoid.cpp"]}'::jsonb + ), + ( + 'hexion', + 'Hexion', + 'Konami', + 1992, + array['Hexion (Japan ver JAB)'], + array['Arcade'], + '{"mame":["hexion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hexion.cpp"]}'::jsonb + ), + ( + 'hi-pai-paradise', + 'Hi Pai Paradise', + 'Aruze / Seta', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["hipai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'hi-pai-paradise-2', + 'Hi Pai Paradise 2', + 'Aruze / Seta / Paon', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["hipai2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'hidden-catch-tul-lin-gu-lim-chat-ki-98', + 'Hidden Catch / Tul Lin Gu Lim Chat Ki ''98', + 'Eolith', + 1998, + array['Hidden Catch (World) / Tul Lin Gu Lim Chat Ki ''98 (Korea) (pcb ver 3.03)'], + array['Arcade'], + '{"mame":["hidnctch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'hidden-catch-2-kor-eng-at89c52-protected', + 'Hidden Catch 2 (Kor/Eng) (AT89c52 protected)', + 'Eolith', + 1999, + array['Hidden Catch 2 (pcb ver 3.03) (Kor/Eng) (AT89c52 protected)'], + array['Arcade'], + '{"mame":["hidctch2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'hidden-catch-2000-at89c52-protected', + 'Hidden Catch 2000 (AT89c52 protected)', + 'Eolith', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["hidnc2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'hidden-catch-3', + 'Hidden Catch 3', + 'Eolith', + 2000, + array['Hidden Catch 3 (ver 1.00 / pcb ver 3.05)'], + array['Arcade'], + '{"mame":["hidctch3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'hide-and-seek', + 'Hide & Seek', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hideseek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/hideseek.cpp"]}'::jsonb + ), + ( + 'high-impact-football', + 'High Impact Football', + 'Williams', + 1990, + array['High Impact Football (rev LA5 02/15/91)'], + array['Sports'], + '{"mame":["hiimpact"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'high-roller', + 'High Roller', + 'bootleg?', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["highroll"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'high-seas-havoc', + 'High Seas Havoc', + 'Data East Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["hshavoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hshavoc.cpp"]}'::jsonb + ), + ( + 'high-voltage', + 'High Voltage', + 'Alpha Denshi Co.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hvoltage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/splendor.cpp"]}'::jsonb + ), + ( + 'high-way-race', + 'High Way Race', + 'Taito Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hwrace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'highway-chase', + 'Highway Chase', + 'Data East Corporation', + 1980, + array['Highway Chase (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["chwy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'higurashi-no-naku-koro-ni-jong', + 'Higurashi no Naku Koro ni Jong', + 'AQ Interactive', + 2009, + array['Higurashi no Naku Koro ni Jong (Japan)'], + array['Arcade'], + '{"mame":["higurashi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/y2.cpp"]}'::jsonb + ), + ( + 'hikaru-check-rom-board', + 'Hikaru Check ROM Board', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["hikcheck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.006.sql b/supabase/seed-data/mame-game-catalog.generated.006.sql new file mode 100644 index 0000000..16c5bc2 --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.006.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'himeshikibu', + 'Himeshikibu', + 'Hi-Soft', + 1989, + array['Himeshikibu (Japan)'], + array['Arcade'], + '{"mame":["himesiki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nasco/himesiki.cpp"]}'::jsonb + ), + ( + 'hippodrome', + 'Hippodrome', + 'Data East USA', + 1989, + array['Hippodrome (US)'], + array['Arcade'], + '{"mame":["hippodrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'hit-n-miss', + 'Hit ''n Miss', + 'Exidy', + 1987, + array['Hit ''n Miss (version 3.0)'], + array['Arcade'], + '{"mame":["hitnmiss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'hit-me', + 'Hit Me', + 'Ramtek', + 1976, + array['Hit Me (set 1)'], + array['Arcade'], + '{"mame":["hitme"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/hitme.cpp"]}'::jsonb + ), + ( + 'hit-the-ice', + 'Hit the Ice', + 'Taito Corporation (Williams license)', + 1990, + array['Hit the Ice (US)'], + array['Arcade'], + '{"mame":["hitice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'hk1000', + 'HK1000', + 'Orla', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hk1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orla/hk1000.cpp"]}'::jsonb + ), + ( + 'hkb-502-268-in-1', + 'HKB-502 268-in-1', + '', + null, + array['HKB-502 268-in-1 (set 1)'], + array['Arcade'], + '{"mame":["hkb502"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'hkt-0120-sega-dreamcast-development-box', + 'HKT-0120 Sega Dreamcast Development Box', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["dcdev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dccons.cpp"]}'::jsonb + ), + ( + 'hoccer-newer', + 'Hoccer (newer)', + 'Eastern Micro Electronics, Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hoccer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'hockey-ramtek', + 'Hockey (Ramtek)', + 'Ramtek', + 1973, + '{}'::text[], + array['Arcade'], + '{"mame":["hockyrmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/ramtek.cpp"]}'::jsonb + ), + ( + 'hog-wild', + 'Hog Wild', + 'Uniana', + 2003, + array['Hog Wild (US)'], + array['Arcade'], + '{"mame":["hogwild"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/unianapc.cpp"]}'::jsonb + ), + ( + 'hogan-s-alley-playchoice-10', + 'Hogan''s Alley (PlayChoice-10)', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_hgaly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'hold-and-draw', + 'Hold & Draw', + 'Amstar', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["holddraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amstarz80.cpp"]}'::jsonb + ), + ( + 'hold-and-spin-i', + 'Hold & Spin I', + 'Amcoe', + 2000, + array['Hold & Spin I (Version 2.7T, set 1)'], + array['Arcade'], + '{"mame":["hldspin1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'hold-and-spin-ii', + 'Hold & Spin II', + 'Amcoe', + 2000, + array['Hold & Spin II (Version 2.8R, set 1)'], + array['Arcade'], + '{"mame":["hldspin2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'hole-land', + 'Hole Land', + 'Tecfri', + 1984, + array['Hole Land (Japan)'], + array['Arcade'], + '{"mame":["holeland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/holeland.cpp"]}'::jsonb + ), + ( + 'holosseum', + 'Holosseum', + 'Sega', + 1992, + array['Holosseum (US, Rev A)'], + array['Arcade'], + '{"mame":["holo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'home-run-classic-v1-21-12-feb-1997', + 'Home Run Classic (v1.21 12-feb-1997)', + 'Creative Electronics And Software', + 1997, + '{}'::text[], + array['Classic'], + '{"mame":["hrclass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/cesclass.cpp"]}'::jsonb + ), + ( + 'homebrew-z80-computer', + 'Homebrew Z80 Computer', + 'Kun-Szabo Marton', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["homez80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/homez80.cpp"]}'::jsonb + ), + ( + 'homelab-2-aircomp-16', + 'Homelab 2 / Aircomp 16', + 'Jozsef and Endre Lukacs', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["homelab2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homelab/homelab.cpp"]}'::jsonb + ), + ( + 'homura-v2-04j', + 'Homura (v2.04J)', + 'SKonec Entertainment', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["homura"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'honey-doll', + 'Honey Doll', + 'Barko Corp.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["honeydol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'hong-mayi', + 'Hong Mayi', + 'bootleg', + null, + array['Hong Mayi (bootleg of Super Star 97)'], + array['Arcade'], + '{"mame":["hongmayi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'hook', + 'Hook', + 'Irem', + 1992, + array['Hook (World)'], + array['Arcade'], + '{"mame":["hook"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'hoops-96', + 'Hoops ''96', + 'Data East Corporation', + 1996, + array['Hoops ''96 (Europe/Asia 2.0)'], + array['Arcade'], + '{"mame":["hoops96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_mlc.cpp"]}'::jsonb + ), + ( + 'hopper-robo', + 'Hopper Robo', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hopprobo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'hopping-mappy', + 'Hopping Mappy', + 'Namco', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["hopmappy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos86.cpp"]}'::jsonb + ), + ( + 'horizon-irem', + 'Horizon (Irem)', + 'Irem', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["horizon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'horizon-north-star-computers-4mhz', + 'Horizon (North Star Computers, 4MHz)', + 'North Star Computers', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["nshrz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["northstar/horizon.cpp"]}'::jsonb + ), + ( + 'horses-for-courses', + 'Horses For Courses', + 'Konami', + 2000, + array['Horses For Courses (NSW, Australia)'], + array['Arcade'], + '{"mame":["horses4c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'host-invaders', + 'Host Invaders', + 'The Game Room', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["hostinv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/calchase.cpp"]}'::jsonb + ), + ( + 'hot-blocks-tetrix-ii', + 'Hot Blocks - Tetrix II', + 'NIX?', + 1993, + array['Hot Blocks - Tetrix II (set 1)'], + array['Arcade'], + '{"mame":["hotblock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/hotblock.cpp"]}'::jsonb + ), + ( + 'hot-body-i', + 'Hot Body I', + 'Gameace', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["hotbody"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gameace.cpp"]}'::jsonb + ), + ( + 'hot-body-ii', + 'Hot Body II', + 'Gameace', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["hotbody2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gameace.cpp"]}'::jsonb + ), + ( + 'hot-chase', + 'Hot Chase', + 'Konami', + 1988, + array['Hot Chase (set 1)'], + array['Arcade'], + '{"mame":["hotchase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/wecleman.cpp"]}'::jsonb + ), + ( + 'hot-chilli-95103-v0104', + 'Hot Chilli (95103, v0104)', + 'Pacific Gaming Pty Ltd.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["hotchili"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/hotchili.cpp"]}'::jsonb + ), + ( + 'hot-mind', + 'Hot Mind', + 'Playmark', + 1995, + array['Hot Mind (Hard Times hardware, set 1)'], + array['Arcade'], + '{"mame":["hotmind"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/playmark.cpp"]}'::jsonb + ), + ( + 'hot-rod', + 'Hot Rod', + 'Sega', + 1988, + array['Hot Rod (World, 3 Players, Turbo set 1, Floppy Based)'], + array['Arcade'], + '{"mame":["hotrod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'hot-shocker', + 'Hot Shocker', + 'E.G. Felaco (Domino license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hotshock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'hot-shots-tennis-v1-1', + 'Hot Shots Tennis (v1.1)', + 'Strata / Incredible Technologies', + 1990, + '{}'::text[], + array['Sports'], + '{"mame":["hstennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'hot-slots-6-00', + 'Hot Slots (6.00)', + 'Impera', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["hotslots"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'hot-spot-2', + 'Hot Spot 2', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hspot2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'hot-spot-3', + 'Hot Spot 3', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hspot3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'hot-toppings-english', + 'Hot Toppings (English)', + 'WMS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["hottop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'hotdog-storm', + 'Hotdog Storm', + 'Marble (Ace International license)', + 1996, + array['Hotdog Storm (Korea)'], + array['Arcade'], + '{"mame":["hotdogst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'hou-ye-leyuan-s103cn', + 'Hou Ye Leyuan (S103CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hyleyuan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'house-mannequin', + 'House Mannequin', + 'Nichibutsu', + 1987, + array['House Mannequin (Japan 870217)'], + array['Arcade'], + '{"mame":["housemnq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'house-mannequin-roppongi-live-hen', + 'House Mannequin Roppongi Live hen', + 'Nichibutsu', + 1987, + array['House Mannequin Roppongi Live hen (Japan 870418)'], + array['Arcade'], + '{"mame":["housemn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'hp-16500a', + 'HP 16500a', + 'Hewlett Packard', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["hp165ka0"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp16500.cpp"]}'::jsonb + ), + ( + 'hp-16500b', + 'HP 16500b', + 'Hewlett Packard', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["hp16500b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp16500.cpp"]}'::jsonb + ), + ( + 'hp-1650b', + 'HP 1650b', + 'Hewlett Packard', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["hp1650b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp16500.cpp"]}'::jsonb + ), + ( + 'hp-1651b', + 'HP 1651b', + 'Hewlett Packard', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["hp1651b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp16500.cpp"]}'::jsonb + ), + ( + 'hp-2100', + 'HP 2100', + 'Hewlett-Packard', + 1966, + '{}'::text[], + array['Arcade'], + '{"mame":["hp2100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp2100.cpp"]}'::jsonb + ), + ( + 'hp-2641a', + 'HP 2641A', + 'Hewlett-Packard', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["hp2641"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp2640.cpp"]}'::jsonb + ), + ( + 'hp-2645a', + 'HP 2645A', + 'Hewlett-Packard', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["hp2645"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp2640.cpp"]}'::jsonb + ), + ( + 'hp-3478a-multimeter', + 'HP 3478A Multimeter', + 'HP', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hp3478a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp3478a.cpp"]}'::jsonb + ), + ( + 'hp-620lx', + 'HP 620LX', + 'Hewlett-Packard', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["hp620lx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp620lx.cpp"]}'::jsonb + ), + ( + 'hp-64000', + 'HP 64000', + 'HP', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["hp64k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp64k.cpp"]}'::jsonb + ), + ( + 'hp-7596a-draftmaster-ii', + 'HP 7596A DraftMaster II', + 'Hewlett-Packard', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["hp7596a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp7596a.cpp"]}'::jsonb + ), + ( + 'hp-85', + 'HP 85', + 'HP', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["hp85"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp80.cpp"]}'::jsonb + ), + ( + 'hp-86b', + 'HP 86B', + 'HP', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hp86b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp80.cpp"]}'::jsonb + ), + ( + 'hp-95lx', + 'HP 95LX', + 'Hewlett-Packard', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["hp95lx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp95lx.cpp"]}'::jsonb + ), + ( + 'hp-9816', + 'HP 9816', + 'Hewlett Packard', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9816"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k.cpp"]}'::jsonb + ), + ( + 'hp-9816a', + 'HP 9816A', + 'Hewlett-Packard', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9816a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp98x6.cpp"]}'::jsonb + ), + ( + 'hp-9825a', + 'HP 9825A', + 'Hewlett-Packard', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9825a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9825.cpp"]}'::jsonb + ), + ( + 'hp-9825b', + 'HP 9825B', + 'Hewlett-Packard', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9825b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9825.cpp"]}'::jsonb + ), + ( + 'hp-9825t', + 'HP 9825T', + 'Hewlett-Packard', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9825t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9825.cpp"]}'::jsonb + ), + ( + 'hp-9826a', + 'HP 9826A', + 'Hewlett-Packard', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9826a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp98x6.cpp"]}'::jsonb + ), + ( + 'hp-9831a', + 'HP 9831A', + 'Hewlett-Packard', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9831"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9825.cpp"]}'::jsonb + ), + ( + 'hp-9836a', + 'HP 9836A', + 'Hewlett-Packard', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9836a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp98x6.cpp"]}'::jsonb + ), + ( + 'hp-9836c', + 'HP 9836C', + 'Hewlett-Packard', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9836c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp98x6.cpp"]}'::jsonb + ), + ( + 'hp-2622a', + 'HP-2622A', + 'HP', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hp2622a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp2620.cpp"]}'::jsonb + ), + ( + 'hp38g', + 'HP38G', + 'Hewlett Packard', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["hp38g"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp48.cpp"]}'::jsonb + ), + ( + 'hp39g', + 'HP39G', + 'Hewlett Packard', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["hp39g"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp48.cpp"]}'::jsonb + ), + ( + 'hp48gx', + 'HP48GX', + 'Hewlett Packard', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["hp48gx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp48.cpp"]}'::jsonb + ), + ( + 'hp48sx', + 'HP48SX', + 'Hewlett Packard', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["hp48sx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp48.cpp"]}'::jsonb + ), + ( + 'hp49g', + 'HP49G', + 'Hewlett Packard', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["hp49g","hp49gp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp48.cpp","hp/hp49gp.cpp"]}'::jsonb + ), + ( + 'hp9000-310', + 'HP9000/310', + 'Hewlett-Packard', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9k310"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k_3xx.cpp"]}'::jsonb + ), + ( + 'hp9000-320', + 'HP9000/320', + 'Hewlett-Packard', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9k320"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k_3xx.cpp"]}'::jsonb + ), + ( + 'hp9000-330', + 'HP9000/330', + 'Hewlett-Packard', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9k330"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k_3xx.cpp"]}'::jsonb + ), + ( + 'hp9000-332', + 'HP9000/332', + 'Hewlett-Packard', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9k332"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k_3xx.cpp"]}'::jsonb + ), + ( + 'hp9000-380', + 'HP9000/380', + 'Hewlett-Packard', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9k380"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k_3xx.cpp"]}'::jsonb + ), + ( + 'hp9000-382', + 'HP9000/382', + 'Hewlett-Packard', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9k382"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k_3xx.cpp"]}'::jsonb + ), + ( + 'hr-84', + 'HR-84', + 'Iskra', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hr84"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/hr84.cpp"]}'::jsonb + ), + ( + 'ht-6000', + 'HT-6000', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["ht6000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ht6000.cpp"]}'::jsonb + ), + ( + 'hu-lu-wang-ii-v100ki', + 'Hu Lu Wang II (v100KI)', + 'IGS', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["huluw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'hua-shen-ii-v120di', + 'Hua Shen II (v120DI)', + 'IGS', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["hsheng2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'huahua-shijie-5-feixing-shijie-v107cn', + 'Huahua Shijie 5 / Feixing Shijie (V107CN)', + 'IGS', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["huahuas5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027_033vid.cpp"]}'::jsonb + ), + ( + 'huahua-shijie-ii', + 'Huahua Shijie II', + 'IGS', + 1995, + array['Huahua Shijie II (v100FI, set 1)'], + array['Arcade'], + '{"mame":["huahuas2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'huangguan-leyuan-990726-crg1-1', + 'Huangguan Leyuan (990726 CRG1.1)', + 'GMS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["hgly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'huangpai-zuqiu-plus-chaoji-shuangxing-plus-v103cn', + 'Huangpai Zuqiu Plus / Chaoji Shuangxing Plus (V103CN)', + 'IGS', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["cjsxp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'huanle-dou-dizhu-v104cn', + 'Huanle Dou Dizhu (V104CN)', + 'IGS', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["hlddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'huanle-liuhe-yi-happy-6-in-1', + 'Huanle Liuhe Yi (Happy 6-in-1)', + 'IGS', + 2004, + array['Huanle Liuhe Yi (Happy 6-in-1) (M68K ver. V101, ARM ver. V102CN)'], + array['Arcade'], + '{"mame":["happy6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'huanqiu-dafuweng', + 'Huanqiu Dafuweng', + 'Hai Wei Technology', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["hqdf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/haiwei.cpp"]}'::jsonb + ), + ( + 'hudie-meng-97', + 'Hudie Meng 97', + 'bootleg (KKK)', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["bdream97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'hummer-extreme', + 'Hummer Extreme', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["hummerxt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'hunchback', + 'Hunchback', + 'Century Electronics', + 1983, + array['Hunchback (set 1)'], + array['Arcade'], + '{"mame":["hunchbak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'hunchback-olympic', + 'Hunchback Olympic', + 'Seatongrove UK, Ltd.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["huncholy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'huo-qilin-v116cn', + 'Huo Qilin (V116CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["huoqilin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'husky', + 'Husky', + 'DVW Microelectronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["husky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["husky/husky.cpp"]}'::jsonb + ), + ( + 'husky-hawk', + 'Husky Hawk', + 'Husky Computers Ltd', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["hawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["husky/hawk.cpp"]}'::jsonb + ), + ( + 'husky-hunter-16', + 'Husky Hunter 16', + 'Husky Computers Ltd', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["hunter16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["husky/hunter16.cpp"]}'::jsonb + ), + ( + 'husky-hunter-2', + 'Husky Hunter 2', + 'Husky Computers Ltd', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["hunter2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["husky/hunter2.cpp"]}'::jsonb + ), + ( + 'hustle', + 'Hustle', + 'Gremlin', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["hustle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/blockade.cpp"]}'::jsonb + ), + ( + 'hyakujuu-sentai-gaoranger-soul-bird-animal-kyuushutsu-daisakusen', + 'Hyakujuu Sentai Gaoranger Soul Bird: Animal Kyuushutsu Daisakusen', + 'Bandai', + 2001, + array['Hyakujuu Sentai Gaoranger Soul Bird: Animal Kyuushutsu Daisakusen (Japan)'], + array['Arcade'], + '{"mame":["soulbird"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'hydra', + 'Hydra', + 'Atari Games', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["hydra"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarig1.cpp"]}'::jsonb + ), + ( + 'hydro-thunder', + 'Hydro Thunder', + 'Midway Games', + 1999, + '{}'::text[], + array['Racing'], + '{"mame":["hydrthnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midqslvr.cpp"]}'::jsonb + ), + ( + 'hyper-athlete', + 'Hyper Athlete', + 'Konami', + 1996, + array['Hyper Athlete (GV021 Japan 1.00)'], + array['Arcade'], + '{"mame":["hyperath"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'hyper-bishi-bashi-champ', + 'Hyper Bishi Bashi Champ', + 'Konami', + 1998, + array['Hyper Bishi Bashi Champ (GQ876 VER. EAA)'], + array['Arcade'], + '{"mame":["hyperbbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'hyper-bishi-bashi-champ-2-player', + 'Hyper Bishi Bashi Champ - 2 Player', + 'Konami', + 1999, + array['Hyper Bishi Bashi Champ - 2 Player (GX908 1999/08/24 VER. JAA)'], + array['Arcade'], + '{"mame":["hypbbc2p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'hyper-crash', + 'Hyper Crash', + 'Konami', + 1987, + array['Hyper Crash (version D)'], + array['Arcade'], + '{"mame":["hcrash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'hyper-duel', + 'Hyper Duel', + 'Technosoft', + 1993, + array['Hyper Duel (Japan set 1)'], + array['Arcade'], + '{"mame":["hyprduel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/hyprduel.cpp"]}'::jsonb + ), + ( + 'hyper-dyne-side-arms', + 'Hyper Dyne Side Arms', + 'Capcom', + 1986, + array['Hyper Dyne Side Arms (World, 861129)'], + array['Arcade'], + '{"mame":["sidearms"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/sidearms.cpp"]}'::jsonb + ), + ( + 'hyper-pacman', + 'Hyper Pacman', + 'SemiCom', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["hyperpac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'hyper-sports', + 'Hyper Sports', + 'Konami (Centuri license)', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["hyperspt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hyperspt.cpp"]}'::jsonb + ), + ( + 'hyper-street-fighter-ii-the-anniversary-edition', + 'Hyper Street Fighter II: The Anniversary Edition', + 'Capcom', + 2004, + array['Hyper Street Fighter II: The Anniversary Edition (USA 040202)'], + array['Fighting'], + '{"mame":["hsf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'hyper-v2-global-vr-install-06-12-02', + 'Hyper V2 (Global VR) Install - 06/12/02', + 'Global VR', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["hyperv2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'hyper-v2-global-vr-install-09-30-01', + 'Hyper V2 (Global VR) Install - 09/30/01', + 'Global VR', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["hyperv2a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'hyperdrive', + 'Hyperdrive', + 'Midway Games', + 1998, + array['Hyperdrive (ver 1.40, Oct 23 1998)'], + array['Arcade'], + '{"mame":["hyprdriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'i-c-cash-atronic', + 'I C Cash (Atronic)', + 'Atronic', + 2002, + array['I C Cash (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["iccash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'i-c-money-atronic', + 'I C Money (Atronic)', + 'Atronic', + null, + array['I C Money (Atronic) (set 1)'], + array['Arcade'], + '{"mame":["atricmon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'i-robot', + 'I, Robot', + 'Atari', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["irobot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/irobot.cpp"]}'::jsonb + ), + ( + 'i-m-sorry', + 'I''m Sorry', + 'Coreland / Sega', + 1985, + array['I''m Sorry (315-5110, US)'], + array['Arcade'], + '{"mame":["imsorry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'ibara', + 'Ibara', + 'Cave (AMI license)', + 2005, + array['Ibara (Japan, 2005/03/22 MASTER VER.., ''06. 3. 7 ver.)'], + array['Arcade'], + '{"mame":["ibara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'ibara-kuro-black-label', + 'Ibara Kuro Black Label', + 'Cave (AMI license)', + 2006, + array['Ibara Kuro Black Label (Japan, 2006/02/06. MASTER VER.)'], + array['Arcade'], + '{"mame":["ibarablk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'ibm-5100', + 'IBM 5100', + 'International Business Machines', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["ibm5100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/ibm5100.cpp"]}'::jsonb + ), + ( + 'ibm-5110', + 'IBM 5110', + 'International Business Machines', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["ibm5110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/ibm5100.cpp"]}'::jsonb + ), + ( + 'ibm-6580-displaywriter', + 'IBM 6580 Displaywriter', + 'IBM', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ibm6580"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/ibm6580.cpp"]}'::jsonb + ), + ( + 'ibm-rt-pc-model-010', + 'IBM RT PC Model 010', + 'International Business Machines', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["rtpc010"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/rtpc.cpp"]}'::jsonb + ), + ( + 'ibm-rt-pc-model-015', + 'IBM RT PC Model 015', + 'International Business Machines', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["rtpc015"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/rtpc.cpp"]}'::jsonb + ), + ( + 'ibm-rt-pc-model-020', + 'IBM RT PC Model 020', + 'International Business Machines', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["rtpc020"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/rtpc.cpp"]}'::jsonb + ), + ( + 'ibm-rt-pc-model-025', + 'IBM RT PC Model 025', + 'International Business Machines', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["rtpc025"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/rtpc.cpp"]}'::jsonb + ), + ( + 'ibm-rt-pc-model-a25', + 'IBM RT PC Model A25', + 'International Business Machines', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["rtpca25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/rtpc.cpp"]}'::jsonb + ), + ( + 'icescape-v104fa', + 'Icescape (V104FA)', + 'IGS', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["icescape"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_fear.cpp"]}'::jsonb + ), + ( + 'ichi-ban-jyan', + 'Ichi Ban Jyan', + 'Excel', + 1993, + array['Ichi Ban Jyan (Ver 3.05)'], + array['Arcade'], + '{"mame":["ichiban"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'icm-3216', + 'ICM-3216', + 'National Semiconductor', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["icm3216"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["natsemi/icm3216.cpp"]}'::jsonb + ), + ( + 'idol-janshi-suchie-pai-3', + 'Idol Janshi Suchie-Pai 3', + 'Jaleco', + 1999, + array['Idol Janshi Suchie-Pai 3 (Japan)'], + array['Arcade'], + '{"mame":["suchie3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'idol-janshi-suchie-pai-ii', + 'Idol Janshi Suchie-Pai II', + 'Jaleco', + 1994, + array['Idol Janshi Suchie-Pai II (ver 1.1)'], + array['Arcade'], + '{"mame":["suchie2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'idol-janshi-suchie-pai-special', + 'Idol Janshi Suchie-Pai Special', + 'Jaleco', + 1993, + array['Idol Janshi Suchie-Pai Special (Japan)'], + array['Arcade'], + '{"mame":["suchiesp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/jalmah.cpp"]}'::jsonb + ), + ( + 'idol-no-himitsu', + 'Idol no Himitsu', + 'Digital Soft', + 1989, + array['Idol no Himitsu (Japan 890304)'], + array['Arcade'], + '{"mame":["idhimitu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'iemoto', + 'Iemoto', + 'Nichibutsu', + 1987, + array['Iemoto (Japan 871020)'], + array['Arcade'], + '{"mame":["iemoto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'igmo', + 'IGMO', + 'Epos Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["igmo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'igor-excalibur', + 'Igor (Excalibur)', + 'Excalibur Electronics', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["igor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excalibur/ivant.cpp"]}'::jsonb + ), + ( + 'igrosoft-multigame-bootleg-10-games', + 'Igrosoft Multigame Bootleg (10 Games)', + 'bootleg', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["igromult"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish_boot.cpp"]}'::jsonb + ), + ( + 'ikari-iii-the-rescue', + 'Ikari III - The Rescue', + 'SNK', + 1989, + array['Ikari III - The Rescue (World version 1, 8-Way Joystick)'], + array['Arcade'], + '{"mame":["ikari3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk68.cpp"]}'::jsonb + ), + ( + 'ikari-warriors', + 'Ikari Warriors', + 'SNK', + 1986, + array['Ikari Warriors (US JAMMA)'], + array['Arcade'], + '{"mame":["ikari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'ikaruga-gdl-0010', + 'Ikaruga (GDL-0010)', + 'Treasure', + 2001, + '{}'::text[], + array['Shooter'], + '{"mame":["ikaruga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'ikki', + 'Ikki', + 'Sun Electronics', + 1985, + array['Ikki (Japan)'], + array['Arcade'], + '{"mame":["ikki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/ikki.cpp"]}'::jsonb + ), + ( + 'il-galeone', + 'Il Galeone', + 'San Remo Games', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["galeone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'il-pagliaccio', + 'Il Pagliaccio', + '', + null, + array['Il Pagliaccio (Italy, Ver. 2.7C)'], + array['Arcade'], + '{"mame":["ilpag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'illvelo-illmatic-envelope', + 'Illvelo (Illmatic Envelope)', + 'Milestone', + 2008, + array['Illvelo (Illmatic Envelope) (Japan)'], + array['Arcade'], + '{"mame":["illvelo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'image-fight', + 'Image Fight', + 'Irem', + 1988, + array['Image Fight (World)'], + array['Arcade'], + '{"mame":["imgfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'imago', + 'Imago', + 'Acom', + 1984, + array['Imago (cocktail set)'], + array['Arcade'], + '{"mame":["imago"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/fastfred.cpp"]}'::jsonb + ), + ( + 'imola-grand-prix', + 'Imola Grand Prix', + 'RB Bologna', + null, + array['Imola Grand Prix (set 1)'], + array['Arcade'], + '{"mame":["imolagp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/imolagp.cpp"]}'::jsonb + ), + ( + 'in-the-hunt', + 'In The Hunt', + 'Irem', + 1993, + array['In The Hunt (World)'], + array['Arcade'], + '{"mame":["inthunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'in-your-face', + 'In Your Face', + 'Jaleco', + 1991, + array['In Your Face (North America, prototype)'], + array['Arcade'], + '{"mame":["inyourfa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'inca', + 'Inca', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["inca"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'incan-pyramid', + 'Incan Pyramid', + 'Konami', + null, + array['Incan Pyramid (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["incanp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'indian-battle', + 'Indian Battle', + 'Taito', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["indianbt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'indiana-jones-and-the-temple-of-doom', + 'Indiana Jones and the Temple of Doom', + 'Atari Games', + 1985, + array['Indiana Jones and the Temple of Doom (set 1)'], + array['Arcade'], + '{"mame":["indytemp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy1.cpp"]}'::jsonb + ), + ( + 'indoor-soccer', + 'Indoor Soccer', + 'Universal', + 1985, + array['Indoor Soccer (set 1)'], + array['Sports'], + '{"mame":["idsoccer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/docastle.cpp"]}'::jsonb + ), + ( + 'indy-4', + 'Indy 4', + 'Atari/Kee', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["indy4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'indy-500-twin', + 'INDY 500 Twin', + 'Sega', + 1995, + array['INDY 500 Twin (Revision A, Newer)'], + array['Arcade'], + '{"mame":["indy500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'indy-800', + 'Indy 800', + 'Atari/Kee', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["indy800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'inferno-meadows', + 'Inferno (Meadows)', + 'Meadows Games, Inc.', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["minferno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadows.cpp"]}'::jsonb + ), + ( + 'inferno-williams', + 'Inferno (Williams)', + 'Williams', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["inferno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'informer-207-100', + 'Informer 207/100', + 'Informer Computer Terminals', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["in207100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["informer/informer_207_100.cpp"]}'::jsonb + ), + ( + 'informer-207-376', + 'Informer 207/376', + 'Informer Computer Terminals', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["in207376"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["informer/informer_207_376.cpp"]}'::jsonb + ), + ( + 'informer-213', + 'Informer 213', + 'Informer Computer Terminals', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["in213"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["informer/informer_213.cpp"]}'::jsonb + ), + ( + 'informer-213-ae', + 'Informer 213 AE', + 'Informer Computer Terminals', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["in213ae"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["informer/informer_213.cpp"]}'::jsonb + ), + ( + 'infowindow-3477', + 'InfoWindow 3477', + 'IBM', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["ibm3477"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/ibm3477.cpp"]}'::jsonb + ), + ( + 'initial-d-arcade-stage-gds-0020b', + 'Initial D Arcade Stage (GDS-0020B)', + 'Sega', + 2002, + array['Initial D Arcade Stage (Japan, Rev B) (GDS-0020B)'], + array['Racing'], + '{"mame":["initd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'initial-d-arcade-stage-gds-0025a', + 'Initial D Arcade Stage (GDS-0025A)', + 'Sega', + 2002, + array['Initial D Arcade Stage (Export, Rev A) (GDS-0025A)'], + array['Racing'], + '{"mame":["initdexp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'initial-d-arcade-stage-ver-2-gds-0026b', + 'Initial D Arcade Stage Ver. 2 (GDS-0026B)', + 'Sega', + 2003, + array['Initial D Arcade Stage Ver. 2 (Japan, Rev B) (GDS-0026B)'], + array['Racing'], + '{"mame":["initdv2j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'initial-d-arcade-stage-ver-3-export-gds-0033', + 'Initial D Arcade Stage Ver. 3 (Export) (GDS-0033)', + 'Sega', + 2004, + '{}'::text[], + array['Racing'], + '{"mame":["initdv3e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'initial-d-arcade-stage-ver-3-gds-0032c', + 'Initial D Arcade Stage Ver. 3 (GDS-0032C)', + 'Sega', + 2004, + array['Initial D Arcade Stage Ver. 3 (Japan, Rev C) (GDS-0032C)'], + array['Racing'], + '{"mame":["initdv3j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'initial-d-arcade-stage-ver-3-cycraft-edition-gds-0039b', + 'Initial D Arcade Stage Ver. 3 Cycraft Edition (GDS-0039B)', + 'Sega', + 2006, + array['Initial D Arcade Stage Ver. 3 Cycraft Edition (Export, Rev B) (GDS-0039B)'], + array['Racing'], + '{"mame":["inidv3cy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'initial-d4', + 'Initial D4', + 'Sega', + 2007, + array['Initial D4 (Rev D)'], + array['Arcade'], + '{"mame":["initiad4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'insector', + 'Insector', + 'Gottlieb', + 1982, + array['Insector (prototype)'], + array['Arcade'], + '{"mame":["insector"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'insector-x', + 'Insector X', + 'Taito Corporation Japan', + 1989, + array['Insector X (World)'], + array['Arcade'], + '{"mame":["insectx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'instant-winner', + 'Instant Winner', + 'WMS', + 1998, + array['Instant Winner (Russian)'], + array['Arcade'], + '{"mame":["inwinner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'integral-personal-computer-9807a', + 'Integral Personal Computer 9807A', + 'Hewlett-Packard', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hp_ipc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp_ipc.cpp"]}'::jsonb + ), + ( + 'integral-personal-computer-9808a', + 'Integral Personal Computer 9808A', + 'Hewlett-Packard', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9808a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp_ipc.cpp"]}'::jsonb + ), + ( + 'intellec-4-mod-4', + 'INTELLEC 4/MOD 4', + 'Intel', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["intlc44"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/intellec4.cpp"]}'::jsonb + ), + ( + 'intellec-4-mod-40', + 'INTELLEC 4/MOD 40', + 'Intel', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["intlc440"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/intellec4.cpp"]}'::jsonb + ), + ( + 'intellec-8', + 'intellec 8', + 'Intel', + 1973, + '{}'::text[], + array['Arcade'], + '{"mame":["intlc8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/intellec8.cpp"]}'::jsonb + ), + ( + 'intellec-8-mod-80', + 'intellec 8/Mod 80', + 'Intel', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["intlc8m80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/intellec8.cpp"]}'::jsonb + ), + ( + 'intellec-mds-ii', + 'Intellec MDS-II', + 'Intel', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["imds2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/imds2.cpp"]}'::jsonb + ), + ( + 'intelligent-game-mpt-03', + 'Intelligent Game MPT-03', + 'Intelligent Game', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["intmpt03"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["arcadia/arcadia.cpp"]}'::jsonb + ), + ( + 'inter-stellar-laser-fantasy', + 'Inter Stellar (Laser Fantasy)', + 'Funai/Gakken', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["istellar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/istellar.cpp"]}'::jsonb + ), + ( + 'inter-stellar-zangus-laser-fantasy-vol-2', + 'Inter Stellar Zangus (Laser Fantasy vol. 2)', + 'Funai/Gakken', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["istellar2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/istellar.cpp"]}'::jsonb + ), + ( + 'interact-32-in-1', + 'InterAct 32-in-1', + 'Intec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ii32in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'interact-8-in-1', + 'InterAct 8-in-1', + 'Intec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ii8in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'interact-complete-video-game-111-games-and-42-songs-g5410', + 'InterAct Complete Video Game - 111 Games & 42 Songs (G5410)', + 'Intec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["intg5410"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'interact-complete-video-game-89-in-1', + 'InterAct Complete Video Game - 89-in-1', + 'Intec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["intact89"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'interact-family-computer', + 'Interact Family Computer', + 'Interact Electronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["interact"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hec2hrp/hec2hrp.cpp"]}'::jsonb + ), + ( + 'interactive-coloring-book-disney-pixar-cars', + 'Interactive Coloring Book: Disney / Pixar Cars', + 'Techno Source', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["icb_car"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'interactive-coloring-book-disney-pixar-toy-story', + 'Interactive Coloring Book: Disney / Pixar Toy Story', + 'Techno Source', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["icb_ts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'interactive-coloring-book-disney-princess', + 'Interactive Coloring Book: Disney Princess', + 'Techno Source', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["icb_dp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'intergirl', + 'Intergirl', + 'Barko', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["intrgirl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'international-cup-94', + 'International Cup ''94', + 'Taito Corporation Japan', + 1994, + array['International Cup ''94 (Ver 2.2O 1994/05/26)'], + array['Arcade'], + '{"mame":["intcup94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-20x0', + 'InterPro/InterServe 20x0', + 'Intergraph', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ip2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-24x0', + 'InterPro/InterServe 24x0', + 'Intergraph', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ip2400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-25x0', + 'InterPro/InterServe 25x0', + 'Intergraph', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ip2500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-27x0', + 'InterPro/InterServe 27x0', + 'Intergraph', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ip2700"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-28x0', + 'InterPro/InterServe 28x0', + 'Intergraph', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["ip2800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-60x0', + 'InterPro/InterServe 60x0', + 'Intergraph', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ip6000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-64x0', + 'InterPro/InterServe 64x0', + 'Intergraph', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ip6400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-67x0', + 'InterPro/InterServe 67x0', + 'Intergraph', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ip6700"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-68x0', + 'InterPro/InterServe 68x0', + 'Intergraph', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ip6800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'intersecti', + 'Intersecti', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["intrscti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/intrscti.cpp"]}'::jsonb + ), + ( + 'intrepid', + 'Intrepid', + 'Nova Games Ltd.', + 1983, + array['Intrepid (set 1)'], + array['Arcade'], + '{"mame":["intrepid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'inu-no-osanpo-dog-walking', + 'Inu no Osanpo / Dog Walking', + 'Wow Entertainment / Sega', + 2001, + array['Inu no Osanpo / Dog Walking (Japan, Export, Rev A)'], + array['Arcade'], + '{"mame":["inunoos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'invader-s-revenge', + 'Invader''s Revenge', + 'Zenitone-Microsec Ltd.', + null, + array['Invader''s Revenge (set 1)'], + array['Arcade'], + '{"mame":["invrvnge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'invasion-the-abductors', + 'Invasion: The Abductors', + 'Midway', + 1999, + array['Invasion: The Abductors (version 5.0)'], + array['Arcade'], + '{"mame":["invasnab"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midzeus.cpp"]}'::jsonb + ), + ( + 'invinco', + 'Invinco', + 'Sega', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["invinco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'invinco-car-hunt-germany', + 'Invinco / Car Hunt (Germany)', + 'Sega', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["invcarht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'invinco-deep-scan', + 'Invinco / Deep Scan', + 'Sega', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["invds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'invinco-head-on-2', + 'Invinco / Head On 2', + 'Sega', + 1979, + array['Invinco / Head On 2 (set 1)'], + array['Arcade'], + '{"mame":["invho2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'iowa-premium-player-2131-21-u5-1', + 'Iowa Premium Player (2131-21, U5-1)', + 'Merit', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["iowapp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'ipb', + 'iPB', + 'Intel', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ipb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/ipc.cpp"]}'::jsonb + ), + ( + 'ipds', + 'iPDS', + 'Intel', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["ipds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/ipds.cpp"]}'::jsonb + ), + ( + 'ipm-invader', + 'IPM Invader', + 'IPM', + 1979, + array['IPM Invader (M10, set 1)'], + array['Arcade'], + '{"mame":["ipminvad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m10.cpp"]}'::jsonb + ), + ( + 'ippatsu-gyakuten', + 'Ippatsu Gyakuten', + 'Public Software / Paradais', + 1986, + array['Ippatsu Gyakuten (Japan)'], + array['Arcade'], + '{"mame":["ippatsu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'iq-pipe', + 'IQ Pipe', + 'AMT', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["iqpipe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system16.cpp"]}'::jsonb + ), + ( + 'iq-151', + 'IQ-151', + 'ZPA Novy Bor', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["iq151"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zpa/iq151.cpp"]}'::jsonb + ), + ( + 'iq-block-v100u', + 'IQ-Block (V100U)', + 'IGS', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["iqblock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/iqblock.cpp"]}'::jsonb + ), + ( + 'iquest-4-0', + 'IQuest 4.0', + 'LeapFrog', + 2004, + array['IQuest 4.0 (US)'], + array['Arcade'], + '{"mame":["iquest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'iron', + 'Iron', + 'bootleg', + 1996, + array['Iron (SNES bootleg)'], + array['Arcade'], + '{"mame":["iron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'iron-fortress', + 'Iron Fortress', + 'Eolith', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["ironfort"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'iron-horse', + 'Iron Horse', + 'Konami', + 1986, + array['Iron Horse (version K)'], + array['Arcade'], + '{"mame":["ironhors"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ironhors.cpp"]}'::jsonb + ), + ( + 'ironman-ivan-stewart-s-super-off-road', + 'Ironman Ivan Stewart''s Super Off-Road', + 'Leland Corporation', + 1989, + array['Ironman Ivan Stewart''s Super Off-Road (rev 4)'], + array['Arcade'], + '{"mame":["offroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'ironman-ivan-stewart-s-super-off-road-track-pak', + 'Ironman Ivan Stewart''s Super Off-Road Track-Pak', + 'Leland Corporation', + 1989, + array['Ironman Ivan Stewart''s Super Off-Road Track-Pak (rev 4?)'], + array['Arcade'], + '{"mame":["offroadt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'isbc-286', + 'iSBC 286', + 'Intel', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc286"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'isbc-286-10', + 'iSBC 286/10', + 'Intel', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc2861"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'isbc-286-12', + 'iSBC 286/12', + 'Intel', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc28612"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'isbc-660', + 'iSBC 660', + 'Intel', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc660"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc660.cpp"]}'::jsonb + ), + ( + 'isbc-80-10', + 'iSBC 80/10', + 'Intel', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc8010"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc8010.cpp"]}'::jsonb + ), + ( + 'isbc-80-30', + 'iSBC 80/30', + 'Intel', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc8030"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc8030.cpp"]}'::jsonb + ), + ( + 'isbc-86-05', + 'iSBC 86/05', + 'Intel', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc8605"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'isbc-86-12a', + 'iSBC 86/12A', + 'Intel', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc86"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'isbc-86-30', + 'iSBC 86/30', + 'Intel', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc8630"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'island', + 'Island', + 'Igrosoft', + 2005, + array['Island (050713 World)'], + array['Arcade'], + '{"mame":["island"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'island-2', + 'Island 2', + 'Igrosoft', + 2006, + array['Island 2 (060529 World)'], + array['Arcade'], + '{"mame":["island2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'isshoni-wanwan-waiwai-puppy-2008', + 'Isshoni Wanwan Waiwai Puppy 2008', + 'Sega', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["isshoni"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'itazura-cockroach', + 'Itazura Cockroach', + 'Amuzy Corporation', + 2007, + array['Itazura Cockroach (Japan, ver 1.02)'], + array['Arcade'], + '{"mame":["itazurac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'itazura-daisuki-sushimaru-kun', + 'Itazura Daisuki! Sushimaru Kun', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["sushimar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'itazura-monkey', + 'Itazura Monkey', + 'Sammy', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["itazuram"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'itazura-tenshi', + 'Itazura Tenshi', + 'Nichibutsu / Alice', + 1984, + array['Itazura Tenshi (Japan)'], + array['Arcade'], + '{"mame":["itaten"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/dacholer.cpp"]}'::jsonb + ), + ( + 'ivan-the-terrible', + 'Ivan The Terrible', + 'Excalibur Electronics', + 1997, + array['Ivan The Terrible (H8/3216 version)'], + array['Arcade'], + '{"mame":["ivant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excalibur/ivant.cpp"]}'::jsonb + ), + ( + 'ivory-tusk', + 'Ivory Tusk', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ivorytsk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'ixion', + 'Ixion', + 'Sega', + 1983, + array['Ixion (prototype)'], + array['Arcade'], + '{"mame":["ixion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/zaxxon.cpp"]}'::jsonb + ), + ( + 'j-league-soccer-v-shoot', + 'J-League Soccer V-Shoot', + 'Namco', + 1994, + array['J-League Soccer V-Shoot (Japan)'], + array['Sports'], + '{"mame":["vshoot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'j-j-squawkers', + 'J. J. Squawkers', + 'Athena / Able', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["jjsquawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'jack-house', + 'Jack House', + 'Chain Leisure Co., Ltd', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["jackhous"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jackhouse.cpp"]}'::jsonb + ), + ( + 'jack-rabbit', + 'Jack Rabbit', + 'Zaccaria', + 1984, + array['Jack Rabbit (set 1)'], + array['Arcade'], + '{"mame":["jackrabt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/zaccaria.cpp"]}'::jsonb + ), + ( + 'jack-the-giantkiller', + 'Jack the Giantkiller', + 'Hara Industries (Cinematronics license)', + 1982, + array['Jack the Giantkiller (set 1)'], + array['Arcade'], + '{"mame":["jack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ), + ( + 'jack-s-venture-inca-treasure', + 'Jack''s Venture - Inca Treasure', + 'Astro Corp.', + 2010, + array['Jack''s Venture - Inca Treasure (US.02.01.A, 2010/01/21)'], + array['Arcade'], + '{"mame":["jackvent"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/hummer.cpp"]}'::jsonb + ), + ( + 'jackal', + 'Jackal', + 'Konami', + 1986, + array['Jackal (World, 8-way Joystick)'], + array['Arcade'], + '{"mame":["jackal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/jackal.cpp"]}'::jsonb + ), + ( + 'jackie-chan-the-kung-fu-master', + 'Jackie Chan - The Kung-Fu Master', + 'Kaneko', + 1995, + array['Jackie Chan - The Kung-Fu Master (rev 4?)'], + array['Arcade'], + '{"mame":["jchan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/jchan.cpp"]}'::jsonb + ), + ( + 'jackie-chan-in-fists-of-fire', + 'Jackie Chan in Fists of Fire', + 'Kaneko', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["jchan2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/jchan.cpp"]}'::jsonb + ), + ( + 'jackpot-bowling', + 'Jackpot Bowling', + 'Electronic Projects', + 1998, + array['Jackpot Bowling (Ver 16.16L)'], + array['Sports'], + '{"mame":["jackpot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jackpot.cpp"]}'::jsonb + ), + ( + 'jackpot-cards-jackpot-pool-italy', + 'Jackpot Cards / Jackpot Pool (Italy)', + 'Electronic Projects', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["jackpool"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jackpool.cpp"]}'::jsonb + ), + ( + 'jackpot-knight-v1-1', + 'Jackpot Knight (V1.1)', + 'Dyna / R-Stone', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["jpknight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'jackpot-party', + 'Jackpot Party', + 'WMS', + 1998, + array['Jackpot Party (Russian)'], + array['Arcade'], + '{"mame":["jptparty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'jaguar-ntsc', + 'Jaguar (NTSC)', + 'Atari', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["jaguar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'jail-break', + 'Jail Break', + 'Konami', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["jailbrek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/jailbrek.cpp"]}'::jsonb + ), + ( + 'jambo-safari', + 'Jambo! Safari', + 'Sega', + 1999, + array['Jambo! Safari (Rev A)'], + array['Arcade'], + '{"mame":["jambo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'jaminator', + 'Jaminator', + 'Noise Toys Inc.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["jaminator"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jaminator.cpp"]}'::jsonb + ), + ( + 'jammin', + 'Jammin''', + 'Atari Games', + 1985, + array['Jammin'' (prototype)'], + array['Arcade'], + '{"mame":["jammin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'jan-jan-paradise', + 'Jan Jan Paradise', + 'Electro Design', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["jjparads"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'jan-jan-paradise-2', + 'Jan Jan Paradise 2', + 'Electro Design', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["jjparad2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'jan-mu', + 'Jan Mu', + 'Wing Co., Ltd', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["janmu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/pinkiri8.cpp"]}'::jsonb + ), + ( + 'jan-oh', + 'Jan Oh', + 'Toaplan', + 1984, + array['Jan Oh (set 1)'], + array['Arcade'], + '{"mame":["janoh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'jang-taku-v-1-3', + 'Jang Taku (V 1.3)', + 'Dyna Computer', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["jangtaku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'jangou', + 'Jangou', + 'Nichibutsu', + 1983, + array['Jangou (Japan)'], + array['Arcade'], + '{"mame":["jangou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/jangou.cpp"]}'::jsonb + ), + ( + 'jangou-lady', + 'Jangou Lady', + 'Nichibutsu', + 1984, + array['Jangou Lady (Japan)'], + array['Arcade'], + '{"mame":["jngolady"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/jangou.cpp"]}'::jsonb + ), + ( + 'janken-game-acchi-muite-hoi', + 'Janken Game Acchi Muite Hoi!', + 'Data East Corporation', + 1995, + array['Janken Game Acchi Muite Hoi! (Japan 1.3)'], + array['Arcade'], + '{"mame":["acchi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_mlc.cpp"]}'::jsonb + ), + ( + 'janken-man-kattara-ageru', + 'Janken Man Kattara Ageru', + 'Sunwise', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["jankenmn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunwise/jankenmn.cpp"]}'::jsonb + ), + ( + 'janpai-puzzle-choukou', + 'Janpai Puzzle Choukou', + 'Mitchell (Capcom license)', + 2001, + array['Janpai Puzzle Choukou (Japan 010820)'], + array['Puzzle'], + '{"mame":["choko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'janputer-96', + 'Janputer ''96', + 'Dynax', + 1996, + array['Janputer ''96 (Japan)'], + array['Arcade'], + '{"mame":["janptr96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'janputer-special', + 'Janputer Special', + 'Dynax', + 1997, + array['Janputer Special (Japan)'], + array['Arcade'], + '{"mame":["janptrsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'janshi', + 'Janshi', + 'Eagle', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["janshi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/pinkiri8.cpp"]}'::jsonb + ), + ( + 'janshin-densetsu-quest-of-jongmaster', + 'Janshin Densetsu - Quest of Jongmaster', + 'Aicom', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["janshin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'jansou', + 'Jansou', + 'Dyna Computer', + 1985, + array['Jansou (set 1)'], + array['Arcade'], + '{"mame":["jansou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'jester-chance', + 'Jester Chance', + 'Tranex Australia Pty Ltd.', + 1987, + array['Jester Chance (dual 6809 GI Australasia PCB)'], + array['Arcade'], + '{"mame":["jesterch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gi6809.cpp"]}'::jsonb + ), + ( + 'jester-magic', + 'Jester Magic', + 'Konami', + null, + array['Jester Magic (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["jestmagi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'jet-fighter-jet-fighter-cocktail-launch-aircraft', + 'Jet Fighter/Jet Fighter Cocktail/Launch Aircraft', + 'Atari', + 1975, + array['Jet Fighter/Jet Fighter Cocktail/Launch Aircraft (set 1)'], + array['Arcade'], + '{"mame":["jetfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'jet-wave-eab-euro-v1-04', + 'Jet Wave (EAB, Euro v1.04)', + 'Konami', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["jetwave"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/zr107.cpp"]}'::jsonb + ), + ( + 'jikkyou-pawafuru-puro-yakyu-ex', + 'Jikkyou Pawafuru Puro Yakyu EX', + 'Konami', + 1998, + array['Jikkyou Pawafuru Puro Yakyu EX (GX802 VER. JAB)'], + array['Arcade'], + '{"mame":["powyakex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'jikkyou-pawafuru-puro-yakyu-ex-98', + 'Jikkyou Pawafuru Puro Yakyu EX ''98', + 'Konami', + 1998, + array['Jikkyou Pawafuru Puro Yakyu EX ''98 (GC811 VER. JAA)'], + array['Arcade'], + '{"mame":["jppyex98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'jikkyou-powerful-pro-yakyuu-96', + 'Jikkyou Powerful Pro Yakyuu ''96', + 'Konami', + 1996, + array['Jikkyou Powerful Pro Yakyuu ''96 (GV017 Japan 1.03)'], + array['Arcade'], + '{"mame":["powyak96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'jin', + 'Jin', + 'Falcon', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["jin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'jin-hu-lu-ii-v412gs', + 'Jin Hu Lu II (v412GS)', + 'IGS', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["jinhulu2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'jin-hua-zhengba-v113cn', + 'Jin Hua Zhengba (V113CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jhzb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'jin-huangguan', + 'Jin Huangguan', + 'IGS', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["jinhuang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'jin-huangguan-3-dai-v445cn', + 'Jin Huangguan 3-dai (V445CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jhg3d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'jin-huangguan-ii-v310cn', + 'Jin Huangguan II (V310CN)', + 'IGS', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["jinhuang2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'jin-sanse', + 'Jin Sanse', + 'Sealy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jinsanse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_8031.cpp"]}'::jsonb + ), + ( + 'jin-zuanshi', + 'Jin Zuanshi', + 'Sealy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["jzuanshi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_z80.cpp"]}'::jsonb + ), + ( + 'jingi-storm-the-arcade-gdl-0037', + 'Jingi Storm - The Arcade (GDL-0037)', + 'Atrativa Japan', + 2006, + array['Jingi Storm - The Arcade (Japan) (GDL-0037)'], + array['Arcade'], + '{"mame":["jingystm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'jingle-bell', + 'Jingle Bell', + 'IGS', + 1997, + array['Jingle Bell (v200US)'], + array['Arcade'], + '{"mame":["jbell"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'jinpai-suoha-show-hand', + 'Jinpai Suoha - Show Hand', + 'GMS', + 2004, + array['Jinpai Suoha - Show Hand (Chinese version 2004-09-22)'], + array['Arcade'], + '{"mame":["jinpaish"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'jinxiu-zhonghua', + 'Jinxiu Zhonghua', + 'BMC', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["jxzh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/koftball.cpp"]}'::jsonb + ), + ( + 'jipin-dou-dizhu', + 'Jipin Dou Dizhu', + 'Sealy', + 2005, + array['Jipin Dou Dizhu (set 1)'], + array['Arcade'], + '{"mame":["jpddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/menghong.cpp"]}'::jsonb + ), + ( + 'jitsuryoku-pro-yakyuu', + 'Jitsuryoku!! Pro Yakyuu', + 'Jaleco', + 1989, + array['Jitsuryoku!! Pro Yakyuu (Japan)'], + array['Arcade'], + '{"mame":["jitsupro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'jixiang-ruyi-v116cn', + 'Jixiang Ruyi (V116CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jxry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'jockey-club-v1-18', + 'Jockey Club (v1.18)', + 'Seta (Visco license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["jockeyc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'jockey-club-ii-v1-12x-older-hardware', + 'Jockey Club II (v1.12X, older hardware)', + 'Seta', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["jclub2v112"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/jclub2.cpp"]}'::jsonb + ), + ( + 'jockey-grand-prix', + 'Jockey Grand Prix', + 'Sun Amusement / BrezzaSoft', + 2001, + array['Jockey Grand Prix (set 1)'], + array['Arcade'], + '{"mame":["jockeygp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'joe-and-mac-returns', + 'Joe & Mac Returns', + 'Data East Corporation', + 1994, + array['Joe & Mac Returns (World, Version 1.1, 1994.05.27)'], + array['Arcade'], + '{"mame":["joemacr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/simpl156.cpp"]}'::jsonb + ), + ( + 'joe-montana-ii-sports-talk-football-mega-tech', + 'Joe Montana II: Sports Talk Football (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Sports'], + '{"mame":["mt_stf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'john-elway-s-team-quarterback', + 'John Elway''s Team Quarterback', + 'Leland Corporation', + 1988, + array['John Elway''s Team Quarterback (rev 3)'], + array['Arcade'], + '{"mame":["teamqb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'johnny-nero-action-hero-v01-01-08', + 'Johnny Nero Action Hero (v01.01.08)', + 'ICE/Play Mechanix', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["jnero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/vp101.cpp"]}'::jsonb + ), + ( + 'joinem', + 'Joinem', + 'Global Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["joinem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ), + ( + 'jojo-s-bizarre-adventure', + 'JoJo''s Bizarre Adventure', + 'Capcom', + 1999, + array['JoJo''s Bizarre Adventure (Europe 991015, NO CD)'], + array['Arcade'], + '{"mame":["jojoba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'jojo-s-venture', + 'JoJo''s Venture', + 'Capcom', + 1998, + array['JoJo''s Venture (Europe 990128)'], + array['Arcade'], + '{"mame":["jojo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'joker-bonus', + 'Joker Bonus', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jkrbonus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'joker-card-encrypted', + 'Joker Card (encrypted)', + 'Fun World', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["jokercrdf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'joker-card-inter-games', + 'Joker Card (Inter Games)', + 'Inter Games', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["intrgmes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'joker-card-multi-card-epoxy-brick-cpu', + 'Joker Card / Multi Card (Epoxy brick CPU)', + 'Fun World', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["jokcrdep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'joker-card-300', + 'Joker Card 300', + 'Amatic Trading', + 1993, + array['Joker Card 300 (Ver.A267BC, encrypted)'], + array['Arcade'], + '{"mame":["jokercrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'joker-lady', + 'Joker Lady', + 'Videos A A', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jokrlady"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videosaa.cpp"]}'::jsonb + ), + ( + 'joker-master-2000-special-edition-v515', + 'Joker Master 2000 Special Edition (V515)', + 'Pick-A-Party USA', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["jkrmast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'joker-s-wild', + 'Joker''s Wild', + 'Sigma', + 1991, + array['Joker''s Wild (B52 system, BP55114-V1104, Ver.054NMV)', 'Joker''s Wild (Rev. B)'], + array['Arcade'], + '{"mame":["jwildb52","segajw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab52.cpp","sega/segajw.cpp"]}'::jsonb + ), + ( + 'joker-s-wild-encrypted', + 'Joker''s Wild (encrypted)', + 'Sigma', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["jokrwild"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jokrwild.cpp"]}'::jsonb + ), + ( + 'jolli-witch', + 'Jolli Witch', + 'Video Klein', + 1994, + array['Jolli Witch (Export, 6T/12T ver 1.57D)'], + array['Arcade'], + '{"mame":["witchjol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'jolly-card', + 'Jolly Card', + 'TAB Austria', + 1985, + array['Jolly Card (German, set 1)'], + array['Arcade'], + '{"mame":["jollycrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'jolly-jogger', + 'Jolly Jogger', + 'Taito Corporation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["jollyjgr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/jollyjgr.cpp"]}'::jsonb + ), + ( + 'jolly-joker', + 'Jolly Joker', + 'Impera', + null, + array['Jolly Joker (98bet, set 1)'], + array['Arcade'], + '{"mame":["jolyjokr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'jong-shin', + 'Jong Shin', + 'Dyna Electronics', + 1986, + array['Jong Shin (Japan)'], + array['Arcade'], + '{"mame":["jongshin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'jong-tou-ki', + 'Jong Tou Ki', + 'Dynax', + 1990, + array['Jong Tou Ki (Japan)'], + array['Arcade'], + '{"mame":["jantouki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'jong-yu-ki', + 'Jong Yu Ki', + 'Dynax', + 1988, + array['Jong Yu Ki (Japan)'], + array['Arcade'], + '{"mame":["janyuki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'jongkyo', + 'Jongkyo', + 'Sanritsu / Kiwako', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["jongkyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/jongkyo.cpp"]}'::jsonb + ), + ( + 'jongputer', + 'Jongputer', + 'Alpha Denshi Co.', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["jongpute"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/route16.cpp"]}'::jsonb + ), + ( + 'jornada-720', + 'Jornada 720', + 'Hewlett Packard', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["jorn720"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/jornada.cpp"]}'::jsonb + ), + ( + 'joryuu-syougi-kyoushitsu', + 'Joryuu Syougi Kyoushitsu', + 'Visco', + 1997, + array['Joryuu Syougi Kyoushitsu (Japan)'], + array['Arcade'], + '{"mame":["jsk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'joshi-volleyball', + 'Joshi Volleyball', + 'Allumer / Taito Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["josvolly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/gsword.cpp"]}'::jsonb + ), + ( + 'journey', + 'Journey', + 'Bally Midway', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["journey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'joust-green-label', + 'Joust (Green label)', + 'Williams', + 1982, + '{}'::text[], + array['Platformer', 'Classic'], + '{"mame":["joust"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'joust-2-survival-of-the-fittest', + 'Joust 2 - Survival of the Fittest', + 'Williams', + 1986, + array['Joust 2 - Survival of the Fittest (revision 2)'], + array['Platformer', 'Classic'], + '{"mame":["joust2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'joy-stand-private', + 'Joy Stand Private', + 'Yuvo', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["joystand"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/joystand.cpp"]}'::jsonb + ), + ( + 'joyful-road', + 'Joyful Road', + 'SNK', + 1983, + array['Joyful Road (Japan)'], + array['Arcade'], + '{"mame":["joyfulr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/munchmo.cpp"]}'::jsonb + ), + ( + 'joypad-65', + 'Joypad 65', + 'WinFun / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["joypad65"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'joystick-30', + 'Joystick 30', + 'WinFun / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["joysti30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'joystick88', + 'Joystick88', + 'Play Vision', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["88in1joy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'jr-100', + 'JR-100', + 'National', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["jr100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["matsushita/jr100.cpp"]}'::jsonb + ), + ( + 'jr-200', + 'JR-200', + 'National', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["jr200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["matsushita/jr200.cpp"]}'::jsonb + ), + ( + 'jr-pac-man-11-9-83', + 'Jr. Pac-Man (11/9/83)', + 'Bally Midway', + 1983, + '{}'::text[], + array['Classic'], + '{"mame":["jrpacman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/jrpacman.cpp"]}'::jsonb + ), + ( + 'judge-dredd', + 'Judge Dredd', + 'Midway', + 1993, + array['Judge Dredd (rev TA1 7/12/92, location test)'], + array['Arcade'], + '{"mame":["jdreddp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midtunit.cpp"]}'::jsonb + ), + ( + 'juezhan-tianhuang', + 'Juezhan Tianhuang', + '', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["jzth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_ybox.cpp"]}'::jsonb + ), + ( + 'jumanji-v502', + 'Jumanji (V502)', + 'I.A.M.', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["jumanji"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/39in1.cpp"]}'::jsonb + ), + ( + 'jumbo-godzilla', + 'Jumbo Godzilla', + 'Namco', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["jumbogod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'jump-bug', + 'Jump Bug', + 'Hoei (Rock-Ola license)', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["jumpbug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'jump-coaster', + 'Jump Coaster', + 'Kaneko Elc. Co.', + 1983, + array['Jump Coaster (World)'], + array['Arcade'], + '{"mame":["jumpcoas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/fastfred.cpp"]}'::jsonb + ), + ( + 'jump-jump', + 'Jump Jump', + 'dgPIX Entertainment Inc.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["jumpjump"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'jump-kids', + 'Jump Kids', + 'Comad', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["jumpkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'jump-kun', + 'Jump Kun', + 'Kaneko', + 1984, + array['Jump Kun (prototype)'], + array['Arcade'], + '{"mame":["jumpkun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/pitnrun.cpp"]}'::jsonb + ), + ( + 'jump-shot', + 'Jump Shot', + 'Bally Midway', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["jumpshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'jumping-break', + 'Jumping Break', + 'F2 System', + 1999, + array['Jumping Break (set 1)'], + array['Arcade'], + '{"mame":["jmpbreak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'jumping-cross', + 'Jumping Cross', + 'SNK', + 1984, + array['Jumping Cross (set 1)'], + array['Arcade'], + '{"mame":["jcross"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'jumping-jack', + 'Jumping Jack', + 'Universal', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["jjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/docastle.cpp"]}'::jsonb + ), + ( + 'jumping-jackpots-atronic', + 'Jumping Jackpots (Atronic)', + 'Atronic', + 2002, + array['Jumping Jackpots (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["jumpjkpt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'jumping-pop', + 'Jumping Pop', + 'Nics', + 1992, + array['Jumping Pop (Nics, Korean hack of Plump Pop)', 'Jumping Pop (set 1)'], + array['Arcade'], + '{"mame":["jpopnics","jumppop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp","misc/esd16.cpp"]}'::jsonb + ), + ( + 'junai-manatsu-no-first-kiss', + 'Junai - Manatsu no First Kiss', + 'Nichibutsu/eic', + 1998, + array['Junai - Manatsu no First Kiss (Japan)'], + array['Arcade'], + '{"mame":["junai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'junai-2-white-love-story', + 'Junai 2 - White Love Story', + 'Nichibutsu/eic', + 1998, + array['Junai 2 - White Love Story (Japan)'], + array['Arcade'], + '{"mame":["junai2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'jungle-italy-vi3-02', + 'Jungle (Italy VI3.02)', + 'Yonshi', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["jungleyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jungleyo.cpp"]}'::jsonb + ), + ( + 'jungle-king', + 'Jungle King', + 'IGS', + 1982, + array['Jungle King (V302US)', 'Jungle King (Japan)'], + array['Arcade'], + '{"mame":["jking302us","junglek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp","taito/taitosj.cpp"]}'::jsonb + ), + ( + 'jungle-king-2002', + 'Jungle King 2002', + 'IGS', + 2001, + array['Jungle King 2002 (V209US)'], + array['Arcade'], + '{"mame":["jking02"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'jungle-king-2004', + 'Jungle King 2004', + 'IGS', + 2003, + array['Jungle King 2004 (V101US)'], + array['Arcade'], + '{"mame":["jking04"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'jungle-s-animals-v3-0', + 'Jungle''s Animals (v3.0)', + 'New Impeuropex Corp. / New Chitarrina', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["jungleani"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'jungler', + 'Jungler', + 'Konami', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["jungler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rallyx.cpp"]}'::jsonb + ), + ( + 'junior-computer', + 'Junior Computer', + 'Elektor', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["junior"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektor/junior.cpp"]}'::jsonb + ), + ( + 'juno-first', + 'Juno First', + 'Konami', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["junofrst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/junofrst.cpp"]}'::jsonb + ), + ( + 'jupiter-ace', + 'Jupiter Ace', + 'Jupiter Cantab', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["jupace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cantab/jupace.cpp"]}'::jsonb + ), + ( + 'jupiter-ii', + 'Jupiter II', + 'Wave Mate', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["jupiter2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wavemate/jupiter.cpp"]}'::jsonb + ), + ( + 'jupiter-iii', + 'Jupiter III', + 'Wave Mate', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["jupiter3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wavemate/jupiter.cpp"]}'::jsonb + ), + ( + 'jurassic-park', + 'Jurassic Park', + 'Sega', + 1993, + array['Jurassic Park (World, Rev A)', 'Jurassic Park (bootleg of Mega Drive version)'], + array['Light gun'], + '{"mame":["jpark","jparkmb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp","sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'jurassic-park-iii', + 'Jurassic Park III', + 'Konami', + 2001, + array['Jurassic Park III (ver EBC)'], + array['Light gun'], + '{"mame":["jpark3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'jyangokushi-haoh-no-saihai', + 'Jyangokushi: Haoh no Saihai', + 'Capcom', + 1999, + array['Jyangokushi: Haoh no Saihai (Japan 990527)'], + array['Arcade'], + '{"mame":["jyangoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'k-2-8-talking-learning-computer-model-7-230', + 'K-2-8: Talking Learning Computer (model 7-230)', + 'Tiger Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["k28o"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tiger/k28o.cpp"]}'::jsonb + ), + ( + 'k-2-8-talking-learning-computer-model-7-232', + 'K-2-8: Talking Learning Computer (model 7-232)', + 'Tiger Electronics', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["k28"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tiger/k28.cpp"]}'::jsonb + ), + ( + 'k1-digital-multi-dimensional-synthesizer', + 'K1 Digital Multi-Dimensional Synthesizer', + 'Kawai Musical Instrument Manufacturing', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["k1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/k1.cpp"]}'::jsonb + ), + ( + 'k1003', + 'K1003', + 'Robotron', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["k1003"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/k1003.cpp"]}'::jsonb + ), + ( + 'k1rii-digital-multi-dimensional-synthesizer-module', + 'K1rII Digital Multi-Dimensional Synthesizer Module', + 'Kawai Musical Instrument Manufacturing', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["k1rii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/k1.cpp"]}'::jsonb + ), + ( + 'k2000', + 'K2000', + 'Kurzweil Music Systems', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["k2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kurzweil/krz2000.cpp"]}'::jsonb + ), + ( + 'k4-16-bit-digital-synthesizer', + 'K4 16-bit Digital Synthesizer', + 'Kawai Musical Instrument Manufacturing', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["k4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/k4.cpp"]}'::jsonb + ), + ( + 'k5-digital-multi-dimensional-synthesizer', + 'K5 Digital Multi-Dimensional Synthesizer', + 'Kawai Musical Instrument Manufacturing', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["k5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/k5.cpp"]}'::jsonb + ), + ( + 'k8915', + 'K8915', + 'Robotron', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["k8915"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/k8915.cpp"]}'::jsonb + ), + ( + 'kabuki-z', + 'Kabuki-Z', + 'Kaneko / Taito Corporation Japan', + 1988, + array['Kabuki-Z (World)'], + array['Arcade'], + '{"mame":["kabukiz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'kageki', + 'Kageki', + 'Kaneko / Taito Corporation', + 1988, + array['Kageki (World)'], + array['Arcade'], + '{"mame":["kageki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'kaimen-hu-bmc', + 'Kaimen Hu (BMC)', + 'BMC', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["kaimenhu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/koftball.cpp"]}'::jsonb + ), + ( + 'kaimen-hu-pan-electronics', + 'Kaimen Hu (PAN Electronics)', + 'PAN Electronics', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["kmhpan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'kaiser-knuckle', + 'Kaiser Knuckle', + 'Taito Corporation Japan', + 1994, + array['Kaiser Knuckle (Ver 2.1O 1994/07/29)'], + array['Arcade'], + '{"mame":["kaiserkn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'kaitei-takara-sagashi', + 'Kaitei Takara Sagashi', + 'K.K. Tokki', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["kaitei"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'kajot-card', + 'Kajot Card', + 'Amatic', + 1993, + array['Kajot Card (Version 1.01, Wien Euro)'], + array['Arcade'], + '{"mame":["kajotcrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'kamen-rider-ryuki-survival-fight', + 'Kamen Rider Ryuki: Survival Fight', + 'Bandai', + 2002, + array['Kamen Rider Ryuki: Survival Fight (Japan)'], + array['Arcade'], + '{"mame":["banmrid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_rad.cpp"]}'::jsonb + ), + ( + 'kamikaze', + 'Kamikaze', + 'Konami (Leijac Corporation license)', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["kamikaze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/astinvad.cpp"]}'::jsonb + ), + ( + 'kamikaze-cabbie', + 'Kamikaze Cabbie', + 'Data East Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["kamikcab"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/liberate.cpp"]}'::jsonb + ), + ( + 'kanatsuen-no-onna', + 'Kanatsuen no Onna', + 'Panac', + 1988, + array['Kanatsuen no Onna (Japan 880905)'], + array['Arcade'], + '{"mame":["kanatuen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'kangaroo', + 'Kangaroo', + 'Sun Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["kangaroo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/kangaroo.cpp"]}'::jsonb + ), + ( + 'kankoku-hanafuda-go-stop', + 'Kankoku Hanafuda Go-Stop', + 'Visco', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gostop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'kaos', + 'Kaos', + 'Pacific Polytechnical Corp. (Game Plan license)', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["kaos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/killcom.cpp"]}'::jsonb + ), + ( + 'karate-blazers', + 'Karate Blazers', + 'Video System Co.', + 1991, + array['Karate Blazers (World, set 1)'], + array['Arcade'], + '{"mame":["karatblz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pspikes.cpp"]}'::jsonb + ), + ( + 'karate-champ', + 'Karate Champ', + 'Data East USA', + 1984, + array['Karate Champ (US)'], + array['Arcade'], + '{"mame":["kchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/kchamp.cpp"]}'::jsonb + ), + ( + 'karate-champ-player-vs-player', + 'Karate Champ: Player Vs Player', + 'Data East USA', + 1984, + array['Karate Champ: Player Vs Player (US, set 1)'], + array['Arcade'], + '{"mame":["kchampvs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/kchamp.cpp"]}'::jsonb + ), + ( + 'karian-cross', + 'Karian Cross', + 'Deniam', + 1996, + array['Karian Cross (Rev. 1.0)'], + array['Arcade'], + '{"mame":["karianx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/deniam.cpp"]}'::jsonb + ), + ( + 'karnov', + 'Karnov', + 'Data East USA', + 1987, + array['Karnov (US, rev 6)'], + array['Arcade'], + '{"mame":["karnov"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/karnov.cpp"]}'::jsonb + ), + ( + 'karnov-s-revenge-fighter-s-history-dynamite', + 'Karnov''s Revenge / Fighter''s History Dynamite', + 'Data East Corporation', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["karnovr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'karous-gdl-0040', + 'Karous (GDL-0040)', + 'Milestone', + 2006, + array['Karous (Japan) (GDL-0040)'], + array['Arcade'], + '{"mame":["karous"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'kart-duel', + 'Kart Duel', + 'Gaps / Namco', + 2000, + array['Kart Duel (World, KTD2/VER.A)'], + array['Arcade'], + '{"mame":["kartduel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'kasei-channel-mars-tv', + 'Kasei Channel Mars TV', + 'Sega', + 1999, + array['Kasei Channel Mars TV (Japan)'], + array['Arcade'], + '{"mame":["marstv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'kasino-89', + 'Kasino ''89', + 'SFC S.R.L.', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["kas89"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/kas89.cpp"]}'::jsonb + ), + ( + 'katori-attack', + 'Katori Attack', + 'Amuzy Corporation', + 2005, + array['Katori Attack (Japan, ver 1.03)'], + array['Arcade'], + '{"mame":["katori"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'kattobase-power-pro-kun', + 'Kattobase Power Pro Kun', + 'Konami', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["kattobas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'kaypro-10-1983', + 'Kaypro 10 - 1983', + 'Non-Linear Systems', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["kaypro10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaypro/kaypro.cpp"]}'::jsonb + ), + ( + 'kaypro-4-84', + 'Kaypro 4/84', + 'Kaypro Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["kaypro484"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaypro/kaypro.cpp"]}'::jsonb + ), + ( + 'kaypro-ii-2-83', + 'Kaypro II - 2/83', + 'Non-Linear Systems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["kayproii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaypro/kaypro.cpp"]}'::jsonb + ), + ( + 'kaypro-new-2', + 'Kaypro New 2', + 'Kaypro Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["kaypronew2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaypro/kaypro.cpp"]}'::jsonb + ), + ( + 'kaypro-robie', + 'Kaypro Robie', + 'Kaypro Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["robie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaypro/kaypro.cpp"]}'::jsonb + ), + ( + 'keirin-ou', + 'Keirin Ou', + 'Excellent System', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["keirinou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/witch.cpp"]}'::jsonb + ), + ( + 'keks', + 'Keks', + 'Igrosoft', + 2006, + array['Keks (110816 World)'], + array['Arcade'], + '{"mame":["keks_6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'ken-sei-mogura-street-fighter-ii', + 'Ken Sei Mogura: Street Fighter II', + 'Capcom / Togo / Sigma', + 1994, + array['Ken Sei Mogura: Street Fighter II (Japan 940418, Ver 1.00)'], + array['Fighting'], + '{"mame":["kenseim"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/kenseim.cpp"]}'::jsonb + ), + ( + 'keno-21', + 'Keno 21', + 'Astro Corp.', + null, + array['Keno 21 (Ver. A-2.30)'], + array['Arcade'], + '{"mame":["keno21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'kero-kero-keroppi-s-let-s-play-together', + 'Kero Kero Keroppi''s Let''s Play Together', + 'American Sammy', + 1995, + array['Kero Kero Keroppi''s Let''s Play Together (USA, Version 2.0)'], + array['Arcade'], + '{"mame":["keroppi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'keroro-gunsou-pekopon-shinryaku-shirei-de-arimasu', + 'Keroro Gunsou: Pekopon Shinryaku Shirei...De Arimasu!', + 'Namco / Banpresto', + 2006, + array['Keroro Gunsou: Pekopon Shinryaku Shirei...De Arimasu! (KRG1 Ver.A)'], + array['Arcade'], + '{"mame":["keroro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'ketsui-kizuna-jigoku-tachi', + 'Ketsui: Kizuna Jigoku Tachi', + 'Cave (AMI license)', + 2002, + array['Ketsui: Kizuna Jigoku Tachi (2003/01/01. Master Ver.)'], + array['Arcade'], + '{"mame":["ket"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'keyboardmania', + 'Keyboardmania', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["kbm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'keyboardmania-2nd-mix', + 'Keyboardmania 2nd Mix', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["kbm2nd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'keyboardmania-3rd-mix', + 'Keyboardmania 3rd Mix', + 'Konami', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["kbm3rd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'kick-4-cash-export', + 'Kick ''4'' Cash (Export)', + 'Sega', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["kick4csh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'kick-upright', + 'Kick (upright)', + 'Midway', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["kick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'kick-and-kick', + 'Kick & Kick', + 'Konami', + 2001, + array['Kick & Kick (GNA36 VER. EAA)'], + array['Arcade'], + '{"mame":["kicknkick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'kick-and-run', + 'Kick and Run', + 'Taito Corporation', + 1986, + array['Kick and Run (World)'], + array['Arcade'], + '{"mame":["kicknrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/kikikai.cpp"]}'::jsonb + ), + ( + 'kick-ball', + 'Kick Ball', + 'Seoung Youn', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["kickball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pspikes.cpp"]}'::jsonb + ), + ( + 'kick-boy', + 'Kick Boy', + 'Nichibutsu', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["kickboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/dacholer.cpp"]}'::jsonb + ), + ( + 'kick-goal', + 'Kick Goal', + 'TCH / Proyesel', + 1995, + array['Kick Goal (set 1)'], + array['Arcade'], + '{"mame":["kickgoal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/kickgoal.cpp"]}'::jsonb + ), + ( + 'kick-off-jaleco-cup', + 'Kick Off: Jaleco Cup', + 'Jaleco', + 1988, + array['Kick Off: Jaleco Cup (Japan)'], + array['Arcade'], + '{"mame":["kickoff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'kick-rider', + 'Kick Rider', + 'Universal', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["kickridr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/docastle.cpp"]}'::jsonb + ), + ( + 'kick-start-wheelie-king', + 'Kick Start: Wheelie King', + 'Taito Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["kikstart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'kicker', + 'Kicker', + 'Konami', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["kicker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/shaolins.cpp"]}'::jsonb + ), + ( + 'kid-chameleon-mega-tech', + 'Kid Chameleon (Mega-Tech)', + 'Sega', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_kcham"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'kid-niki-radical-ninja', + 'Kid Niki - Radical Ninja', + 'Irem', + 1986, + array['Kid Niki - Radical Ninja (World)'], + array['Arcade'], + '{"mame":["kidniki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'kid-no-hore-hore-daisakusen', + 'Kid no Hore Hore Daisakusen', + 'Nichibutsu', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["horekid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/terracre.cpp"]}'::jsonb + ), + ( + 'kiki-kaikai', + 'KiKi KaiKai', + 'Taito Corporation', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["kikikai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/kikikai.cpp"]}'::jsonb + ), + ( + 'kiki-ippatsu-mayumi-chan', + 'Kiki-Ippatsu Mayumi-chan', + 'Victory L.L.C.', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mayumi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/chinsan.cpp"]}'::jsonb + ), + ( + 'killer-comet', + 'Killer Comet', + 'Centuri (Game Plan license)', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["killcom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/killcom.cpp"]}'::jsonb + ), + ( + 'killer-instinct', + 'Killer Instinct', + 'Rare / Nintendo (Midway license)', + 1994, + array['Killer Instinct (SNES bootleg)', 'Killer Instinct (SNES bootleg with timer)'], + array['Fighting'], + '{"mame":["kinst","kinstb","kinstsnes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rare/kinst.cpp","nintendo/snesb.cpp","nintendo/snesb51.cpp"]}'::jsonb + ), + ( + 'killer-instinct-2', + 'Killer Instinct 2', + 'Rare / Nintendo (Midway license)', + 1996, + '{}'::text[], + array['Fighting'], + '{"mame":["kinst2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rare/kinst.cpp"]}'::jsonb + ), + ( + 'kimble-double-hi-lo', + 'Kimble Double HI-LO', + 'Kimble Ireland', + null, + array['Kimble Double HI-LO (Z80 version, unencrypted)', 'Kimble Double HI-LO (Z80 version, encrypted)'], + array['Arcade'], + '{"mame":["hilokimb","kimbldhl","kimblz80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'king-and-balloon', + 'King & Balloon', + 'Namco', + 1980, + array['King & Balloon (US)'], + array['Arcade'], + '{"mame":["kingball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'king-derby-1981', + 'King Derby (1981)', + 'Tazmi', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["kingdrby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/kingdrby.cpp"]}'::jsonb + ), + ( + 'king-of-boxer', + 'King of Boxer', + 'Woodplace Inc.', + 1985, + array['King of Boxer (World)'], + array['Arcade'], + '{"mame":["kingofb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/kingobox.cpp"]}'::jsonb + ), + ( + 'king-of-dynast-gear', + 'King of Dynast Gear', + 'EZ Graphics', + 1999, + array['King of Dynast Gear (version 1.8)'], + array['Arcade'], + '{"mame":["kdynastg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'king-of-the-monsters', + 'King of the Monsters', + 'SNK', + 1991, + array['King of the Monsters (set 1)'], + array['Arcade'], + '{"mame":["kotm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'king-of-the-monsters-2-the-next-thing-ngm-039-ngh-039', + 'King of the Monsters 2 - The Next Thing (NGM-039 ~ NGH-039)', + 'SNK', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["kotm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'king-tut', + 'King Tut', + 'Konami', + null, + array['King Tut (NSW, Australia)'], + array['Arcade'], + '{"mame":["kingtut"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'kingdom-grandprix', + 'Kingdom Grandprix', + 'Raizing / Eighting', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["kingdmgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/raizing.cpp"]}'::jsonb + ), + ( + 'kingpin', + 'Kingpin', + 'ACL Manufacturing', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["kingpin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/kingpin.cpp"]}'::jsonb + ), + ( + 'kinnikuman-muscle-grand-prix', + 'Kinnikuman Muscle Grand Prix', + 'Namco', + 2006, + array['Kinnikuman Muscle Grand Prix (KN1 Ver. A)'], + array['Arcade'], + '{"mame":["kinniku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'kinnikuman-muscle-grand-prix-2', + 'Kinnikuman Muscle Grand Prix 2', + 'Namco', + 2007, + array['Kinnikuman Muscle Grand Prix 2 (KN2 Ver. A)'], + array['Arcade'], + '{"mame":["kinniku2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'kirameki-star-road', + 'Kirameki Star Road', + 'Taito Corporation', + 1997, + array['Kirameki Star Road (Ver 2.10J 1997/08/29)'], + array['Arcade'], + '{"mame":["kirameki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'kisekae-hanafuda', + 'Kisekae Hanafuda', + 'I''Max', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["kisekaeh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/macs.cpp"]}'::jsonb + ), + ( + 'kiss-site', + 'Kiss-Site', + 'Tomy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["kisssite"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tomy/kisssite.cpp"]}'::jsonb + ), + ( + 'kitten-kaboodle', + 'Kitten Kaboodle', + 'Konami', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["kittenk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'kizuna-encounter-super-tag-battle-fu-un-super-tag-battle', + 'Kizuna Encounter - Super Tag Battle / Fu''un Super Tag Battle', + 'SNK', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["kizuna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'kkot-no-li-kill-the-bees', + 'Kkot No Li (Kill the Bees)', + 'hack', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["kkotnoli"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'kkotbinyeo-special', + 'Kkotbinyeo Special', + 'Dynax / Shinwhajin', + 1997, + array['Kkotbinyeo Special (Korea)'], + array['Arcade'], + '{"mame":["kotbinsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'klad-labyrinth-photon-system', + 'Klad / Labyrinth (Photon System)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["phklad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/photon.cpp"]}'::jsonb + ), + ( + 'klax', + 'Klax', + 'Atari Games', + 1990, + array['Klax (version 6)'], + array['Arcade'], + '{"mame":["klax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/klax.cpp"]}'::jsonb + ), + ( + 'klondike', + 'KlonDike+', + 'Eolith', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["klondkp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith16.cpp"]}'::jsonb + ), + ( + 'knightmare', + 'Knightmare', + 'Gottlieb', + 1983, + array['Knightmare (prototype)'], + array['Arcade'], + '{"mame":["kngtmare"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'knights-in-armor', + 'Knights in Armor', + 'Project Support Engineering', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["knightar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pse.cpp"]}'::jsonb + ), + ( + 'knights-of-the-round', + 'Knights of the Round', + 'Capcom', + 1991, + array['Knights of the Round (World 911127)'], + array['Arcade'], + '{"mame":["knights"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-the-seven-spirits', + 'Knights of Valour - The Seven Spirits', + 'IGS / Sammy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["kov7sprt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-sanguo-zhan-ji-sangoku-senki', + 'Knights of Valour / Sanguo Zhan Ji / Sangoku Senki', + 'IGS', + 1999, + array['Knights of Valour / Sanguo Zhan Ji / Sangoku Senki (ver. 117, Hong Kong)'], + array['Arcade'], + '{"mame":["kov"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-2-sanguo-zhan-ji-2-sangoku-senki-2', + 'Knights of Valour 2 / Sanguo Zhan Ji 2 / Sangoku Senki 2', + 'IGS', + 2000, + array['Knights of Valour 2 / Sanguo Zhan Ji 2 / Sangoku Senki 2 (ver. 107, 102, 100HK)'], + array['Arcade'], + '{"mame":["kov2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-2-new-legend-sanguo-zhan-ji-2-guang-sao-yu-jun', + 'Knights of Valour 2 New Legend / Sanguo Zhan Ji 2 Guang Sao Yu Jun', + 'IGS', + 2008, + array['Knights of Valour 2 New Legend / Sanguo Zhan Ji 2 Guang Sao Yu Jun (V302, Oversea)'], + array['Arcade'], + '{"mame":["kov2nl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm2.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-2-plus-nine-dragons-sanguo-zhan-ji-2-qunxiong-zhengba-sanguo-zhan-ji-2-f', + 'Knights of Valour 2 Plus - Nine Dragons / Sanguo Zhan Ji 2 Qunxiong Zhengba / Sanguo Zhan Ji 2 Feilong Zai Tian / Sangoku Senki Busyou Souha', + 'IGS', + 2001, + array['Knights of Valour 2 Plus - Nine Dragons / Sanguo Zhan Ji 2 Qunxiong Zhengba / Sanguo Zhan Ji 2 Feilong Zai Tian / Sangoku Senki Busyou Souha (ver. M205XX, 200, 100CN)'], + array['Arcade'], + '{"mame":["kov2p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-3-sanguo-zhan-ji-3', + 'Knights of Valour 3 / Sanguo Zhan Ji 3', + 'IGS (Huatong license)', + 2011, + array['Knights of Valour 3 / Sanguo Zhan Ji 3 (V104, China, Hong Kong, Taiwan)'], + array['Arcade'], + '{"mame":["kov3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm2.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-3-hd-m-105cn-13-07-04-18-54-01', + 'Knights of Valour 3 HD (M-105CN 13-07-04 18:54:01)', + 'IGS', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["kov3hd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm3.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-plus-sanguo-zhan-ji-zhengzong-plus-sangoku-senki-masamune-plus', + 'Knights of Valour Plus / Sanguo Zhan Ji Zhengzong Plus / Sangoku Senki Masamune Plus', + 'IGS', + 1999, + array['Knights of Valour Plus / Sanguo Zhan Ji Zhengzong Plus / Sangoku Senki Masamune Plus (ver. 119, set 1)'], + array['Arcade'], + '{"mame":["kovplus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-super-heroes-sanguo-zhan-ji-fengyun-zaiqi-sangoku-senki-super-heroes', + 'Knights of Valour Super Heroes / Sanguo Zhan Ji Fengyun Zaiqi / Sangoku Senki Super Heroes', + 'IGS', + 1999, + array['Knights of Valour Super Heroes / Sanguo Zhan Ji Fengyun Zaiqi / Sangoku Senki Super Heroes (ver. 104, CN)'], + array['Arcade'], + '{"mame":["kovsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-super-heroes-sanguo-zhan-ji-fengyun-zaiqi-sangoku-senki-super-heroes-san', + 'Knights of Valour Super Heroes / Sanguo Zhan Ji Fengyun Zaiqi / Sangoku Senki Super Heroes (SANGO EX+)', + 'IGS', + 1999, + array['Knights of Valour Super Heroes / Sanguo Zhan Ji Fengyun Zaiqi / Sangoku Senki Super Heroes (SANGO EX+) (ver. 201 ''Yitong Zhongyuan'', China)'], + array['Arcade'], + '{"mame":["kovytzy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-super-heroes-plus-sanguo-zhan-ji-luanshi-xiaoxiong', + 'Knights of Valour Super Heroes Plus / Sanguo Zhan Ji Luanshi Xiaoxiong', + 'IGS', + 2004, + array['Knights of Valour Super Heroes Plus / Sanguo Zhan Ji Luanshi Xiaoxiong (ver. 101)'], + array['Arcade'], + '{"mame":["kovshp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knock-down-2001', + 'Knock Down 2001', + 'Namco', + 2001, + array['Knock Down 2001 (Japan, KD11 Ver. B)'], + array['Arcade'], + '{"mame":["kd2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'knuckle-bash', + 'Knuckle Bash', + 'Toaplan / Atari', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["kbash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/kbash.cpp"]}'::jsonb + ), + ( + 'knuckle-bash-2', + 'Knuckle Bash 2', + 'bootleg', + 1999, + array['Knuckle Bash 2 (bootleg of Knuckle Bash)'], + array['Arcade'], + '{"mame":["kbash2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/kbash.cpp"]}'::jsonb + ), + ( + 'knuckle-heads', + 'Knuckle Heads', + 'Namco', + 1992, + array['Knuckle Heads (World)'], + array['Arcade'], + '{"mame":["knckhead"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'knuckle-joe', + 'Knuckle Joe', + 'Seibu Kaihatsu (Taito license)', + 1985, + array['Knuckle Joe (set 1)'], + array['Arcade'], + '{"mame":["kncljoe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/kncljoe.cpp"]}'::jsonb + ), + ( + 'kodai-ouja-kyouryuu-king-mezame-yo-arata-naru-chikara-mda-c0061', + 'Kodai Ouja Kyouryuu King - Mezame yo! Arata-naru Chikara!! (MDA-C0061)', + 'Sega', + 2008, + array['Kodai Ouja Kyouryuu King - Mezame yo! Arata-naru Chikara!! (Japan, Ver 4.000) (MDA-C0061)'], + array['Arcade'], + '{"mame":["dinoki4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'kof-sky-stage-v1-00j', + 'KOF Sky Stage (v1.00J)', + 'Moss / SNK Playmore', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["kofskyst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'koi-koi', + 'Koi Koi', + 'Chubukiko / Best Data System', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["koikoi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/koikoi.cpp"]}'::jsonb + ), + ( + 'koi-koi-part-2', + 'Koi Koi Part 2', + 'Sanritsu / Kiwako', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["koikoip2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/koikoi.cpp"]}'::jsonb + ), + ( + 'koi-koi-shimasho-super-real-hanafuda', + 'Koi Koi Shimasho - Super Real Hanafuda', + 'Visco', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["koikois"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'koi-koi-shimasho-2-super-real-hanafuda', + 'Koi Koi Shimasho 2 - Super Real Hanafuda', + 'Visco', + 1997, + array['Koi Koi Shimasho 2 - Super Real Hanafuda (Japan)'], + array['Arcade'], + '{"mame":["koikois2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'kokontouzai-eto-monogatari', + 'Kokontouzai Eto Monogatari', + 'Visco', + 1994, + array['Kokontouzai Eto Monogatari (Japan)'], + array['Arcade'], + '{"mame":["eto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'konami-80-s-ac-special', + 'Konami 80''s AC Special', + 'Konami', + 1998, + array['Konami 80''s AC Special (GC826 VER. EAA)'], + array['Arcade'], + '{"mame":["konam80s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'konami-collector-s-series-arcade-advanced', + 'Konami Collector''s Series Arcade Advanced', + 'Majesco (licensed from Konami) / JungleTac', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["majkon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'konami-gt', + 'Konami GT', + 'Konami', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["konamigt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.007.sql b/supabase/seed-data/mame-game-catalog.generated.007.sql new file mode 100644 index 0000000..5497bcd --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.007.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'konami-test-board', + 'Konami Test Board', + 'Konami', + null, + array['Konami Test Board (GX800, Japan)'], + array['Arcade'], + '{"mame":["kontest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kontest.cpp"]}'::jsonb + ), + ( + 'konami-s-open-golf-championship', + 'Konami''s Open Golf Championship', + 'Konami', + 1994, + array['Konami''s Open Golf Championship (ver EAE)'], + array['Sports'], + '{"mame":["opengolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'konami-s-ping-pong', + 'Konami''s Ping-Pong', + 'Konami', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pingpong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/pingpong.cpp"]}'::jsonb + ), + ( + 'kong', + 'Kong', + 'Taito do Brasil', + null, + array['Kong (Donkey Kong conversion on Galaxian hardware)'], + array['Arcade'], + '{"mame":["kong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'kong-ball', + 'Kong Ball', + 'TCH / Digital Dreams Multimedia', + 1997, + array['Kong Ball (prototype)'], + array['Arcade'], + '{"mame":["kongball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/wheelfir.cpp"]}'::jsonb + ), + ( + 'konin', + 'Konin', + 'Mera-Elzab', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["konin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mera/konin.cpp"]}'::jsonb + ), + ( + 'konkyuu-no-hoshi', + 'Konkyuu no Hoshi', + 'BMC', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["bmcbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/bmcbowl.cpp"]}'::jsonb + ), + ( + 'konnano-hajimete', + 'Konnano Hajimete!', + 'Nichibutsu/Love Factory', + 2001, + array['Konnano Hajimete! (Japan)'], + array['Arcade'], + '{"mame":["konhaji"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'kono-e-tako', + 'Kono e Tako', + 'Mitchell', + 2003, + array['Kono e Tako (10021 Ver.A)'], + array['Arcade'], + '{"mame":["konotako"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'kontiki-100', + 'KONTIKI 100', + 'Kontiki Data A/S', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["kontiki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tiki/tiki100.cpp"]}'::jsonb + ), + ( + 'koro-koro-quest', + 'Koro Koro Quest', + 'Takumi', + 1999, + array['Koro Koro Quest (Japan)'], + array['Arcade'], + '{"mame":["korokoro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'korokoro-pensuke', + 'Korokoro Pensuke', + 'Konami', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["koropens"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'kotoba-no-puzzle-mojipittan', + 'Kotoba no Puzzle Mojipittan', + 'Namco', + 2001, + array['Kotoba no Puzzle Mojipittan (Japan, KPM1 Ver.A)'], + array['Puzzle'], + '{"mame":["knpuzzle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'koutetsu-yousai-strahl', + 'Koutetsu Yousai Strahl', + 'UPL', + 1992, + array['Koutetsu Yousai Strahl (World)'], + array['Arcade'], + '{"mame":["strahl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'kozmik-kroozr', + 'Kozmik Kroozr', + 'Bally Midway', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["kroozr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'kozure-ookami', + 'Kozure Ookami', + 'Nichibutsu', + 1987, + array['Kozure Ookami (Japan)'], + array['Arcade'], + '{"mame":["kozure"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/armedf.cpp"]}'::jsonb + ), + ( + 'kram', + 'Kram', + 'Taito America Corporation', + 1982, + array['Kram (rev 1)'], + array['Arcade'], + '{"mame":["kram"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'kramer-mc', + 'Kramer MC', + 'Manfred Kramer', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["kramermc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/kramermc.cpp"]}'::jsonb + ), + ( + 'krazy-bowl', + 'Krazy Bowl', + 'American Sammy', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["krzybowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'krazy-keno', + 'Krazy Keno', + 'IGS', + 2006, + array['Krazy Keno (V105US)'], + array['Arcade'], + '{"mame":["krzykeno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'krull', + 'Krull', + 'Gottlieb', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["krull"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'ksp10-digital-piano', + 'KSP10 Digital Piano', + 'Kawai Musical Instruments Manufacturing', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ksp10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/ksp10.cpp"]}'::jsonb + ), + ( + 'kt-76', + 'KT-76', + 'Ensoniq', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["kt76"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqkt.cpp"]}'::jsonb + ), + ( + 'ktm-3', + 'KTM-3', + 'Synertek Systems', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ktm3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["synertek/ktm3.cpp"]}'::jsonb + ), + ( + 'kung-fu-playchoice-10', + 'Kung Fu (PlayChoice-10)', + 'Irem (Nintendo license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_kngfu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'kung-fu-fighters-igs-v202n', + 'Kung Fu Fighters (IGS, v202N)', + 'IGS', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["kungfu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/jackie.cpp"]}'::jsonb + ), + ( + 'kung-fu-master', + 'Kung-Fu Master', + 'Irem', + 1984, + array['Kung-Fu Master (World)'], + array['Arcade'], + '{"mame":["kungfum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'kung-fu-roushi', + 'Kung-Fu Roushi', + 'Namco', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["kungfur"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/kungfur.cpp"]}'::jsonb + ), + ( + 'kung-fu-taikun', + 'Kung-Fu Taikun', + 'Seibu Kaihatsu', + 1984, + array['Kung-Fu Taikun (set 1)'], + array['Arcade'], + '{"mame":["kungfut"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/wiz.cpp"]}'::jsonb + ), + ( + 'kuri-kinton', + 'Kuri Kinton', + 'Taito Corporation Japan', + 1988, + array['Kuri Kinton (World)'], + array['Arcade'], + '{"mame":["kurikint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'kuru-kuru-pyon-pyon', + 'Kuru Kuru Pyon Pyon', + 'Success / Taiyo Jidoki', + 1990, + array['Kuru Kuru Pyon Pyon (Japan)'], + array['Arcade'], + '{"mame":["kurukuru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/kurukuru.cpp"]}'::jsonb + ), + ( + 'kurukuru-chameleon-gdl-0034', + 'Kurukuru Chameleon (GDL-0034)', + 'Able', + 2006, + array['Kurukuru Chameleon (Japan) (GDL-0034)'], + array['Arcade'], + '{"mame":["kurucham"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'kurukuru-fever', + 'Kurukuru Fever', + 'Aruze / Takumi', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["kurufev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'kusayakyuu', + 'Kusayakyuu', + 'Taito Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ksayakyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/ksayakyu.cpp"]}'::jsonb + ), + ( + 'kyber-minus', + 'Kyber Minus', + 'Kyber Calcolatori', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["kminus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kyber/kminus.cpp"]}'::jsonb + ), + ( + 'kyotronic-85', + 'Kyotronic 85', + 'Kyosei', + 1983, + array['Kyotronic 85 (Japan)'], + array['Arcade'], + '{"mame":["kc85"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kyocera/kyocera.cpp"]}'::jsonb + ), + ( + 'kyros', + 'Kyros', + 'Alpha Denshi Co. (World Games Inc. license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["kyros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k_n.cpp"]}'::jsonb + ), + ( + 'kyuukai-douchuuki', + 'Kyuukai Douchuuki )', + 'Namco', + 1990, + array['Kyuukai Douchuuki (Japan, new version (Rev B))'], + array['Arcade'], + '{"mame":["kyukaidk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'kyuukoukabakugekitai-dive-bomber-squad', + 'Kyuukoukabakugekitai - Dive Bomber Squad', + 'Konami', + 1989, + array['Kyuukoukabakugekitai - Dive Bomber Squad (Japan, prototype)'], + array['Arcade'], + '{"mame":["divebomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/divebomb.cpp"]}'::jsonb + ), + ( + 'kyuukyoku-no-othello', + 'Kyuukyoku no Othello', + 'Success', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["kothello"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shanghai.cpp"]}'::jsonb + ), + ( + 'l-a-machineguns', + 'L.A. Machineguns', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["lamachin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'la-m-quina-del-tiempo', + 'La Máquina del Tiempo', + 'Unidesa/Cirsa', + 2015, + '{}'::text[], + array['Arcade'], + '{"mame":["maquinati"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cirsa/cirsa2080606.cpp"]}'::jsonb + ), + ( + 'la-perla-del-caribe-v1-0-catalonia', + 'La Perla del Caribe (V1.0, Catalonia)', + 'Unidesa/Cirsa', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["perlacrb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cirsa/neptunp2.cpp"]}'::jsonb + ), + ( + 'la-perla-nera', + 'La Perla Nera', + 'Nazionale Elettronica', + 2002, + array['La Perla Nera (Ver 2.0)'], + array['Arcade'], + '{"mame":["laperla"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'la-perla-nera-gold', + 'La Perla Nera Gold', + 'Nazionale Elettronica', + 2001, + array['La Perla Nera Gold (Ver 2.0)'], + array['Arcade'], + '{"mame":["laperlag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'la-r-gence', + 'La Régence', + 'France Double R / Intelligent Software', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["regence"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/regence.cpp"]}'::jsonb + ), + ( + 'labyrinth', + 'Labyrinth', + 'Nazionale Elettronica', + 2001, + array['Labyrinth (Ver 1.5)'], + array['Arcade'], + '{"mame":["labrinth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'lady-bug', + 'Lady Bug', + 'Universal', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["ladybug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/ladybug.cpp"]}'::jsonb + ), + ( + 'lady-frog', + 'Lady Frog', + 'Mondial Games', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ladyfrog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ladyfrog.cpp"]}'::jsonb + ), + ( + 'lady-gum', + 'Lady Gum', + 'Videos A A', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ladygum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videosaa.cpp"]}'::jsonb + ), + ( + 'lady-killer', + 'Lady Killer', + 'Yanyaka (Mitchell license)', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ladykill"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'lady-liner', + 'Lady Liner', + 'TAB Austria', + null, + array['Lady Liner (set 1)'], + array['Arcade'], + '{"mame":["ladylinr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'lady-master-of-kung-fu', + 'Lady Master of Kung Fu', + 'Kaneko / Taito', + 1985, + array['Lady Master of Kung Fu (rev 1)'], + array['Arcade'], + '{"mame":["ladymstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tsamurai.cpp"]}'::jsonb + ), + ( + 'laguna-racer', + 'Laguna Racer', + 'Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["lagunar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'land-breaker-miss-tang-ja-ru-gi', + 'Land Breaker / Miss Tang Ja Ru Gi', + 'Eolith', + 1999, + array['Land Breaker (World) / Miss Tang Ja Ru Gi (Korea) (pcb ver 3.02)'], + array['Arcade'], + '{"mame":["landbrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'land-maker', + 'Land Maker', + 'Taito Corporation', + 1998, + array['Land Maker (Ver 2.02O 1998/06/02)'], + array['Arcade'], + '{"mame":["landmakr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'land-sea-air-squad-riku-kai-kuu-saizensen', + 'Land Sea Air Squad / Riku Kai Kuu Saizensen', + 'Taito', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["lsasquad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/lsasquad.cpp"]}'::jsonb + ), + ( + 'landing-gear', + 'Landing Gear', + 'Taito', + 1995, + array['Landing Gear (Ver 4.2 O)'], + array['Arcade'], + '{"mame":["landgear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitojc.cpp"]}'::jsonb + ), + ( + 'landing-high-japan', + 'Landing High Japan', + 'Taito', + 1999, + array['Landing High Japan (VER.2.01OK, single monitor)'], + array['Arcade'], + '{"mame":["landhigh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'las-vegas', + 'Las Vegas', + 'Jeutel', + null, + array['Las Vegas (Jeutel, set 1)'], + array['Arcade'], + '{"mame":["jlasvegas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tmspoker.cpp"]}'::jsonb + ), + ( + 'las-vegas-girl-girl-94', + 'Las Vegas Girl (Girl ''94)', + 'Comad', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["lvgirl94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["comad/zerozone.cpp"]}'::jsonb + ), + ( + 'laser-2001', + 'Laser 2001', + '', + 2001, + array['Laser 2001 (Ver 1.2)'], + array['Arcade'], + '{"mame":["laser2k1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'laser-battle', + 'Laser Battle', + 'Zaccaria', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["laserbat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/laserbat.cpp"]}'::jsonb + ), + ( + 'laser-ghost-fd1094-317-0166', + 'Laser Ghost (FD1094 317-0166)', + 'Sega', + 1990, + array['Laser Ghost (World) (FD1094 317-0166)'], + array['Arcade'], + '{"mame":["lghost"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'laser-grand-prix', + 'Laser Grand Prix', + 'Taito', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["lgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/lgp.cpp"]}'::jsonb + ), + ( + 'laser-strixx-2', + 'Laser Strixx 2', + 'CD Express', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["lasstixx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'laseractive-with-genesis-pack-pac-s10', + 'LaserActive with Genesis Pack PAC-S10', + 'Pioneer / Sega', + 1993, + array['LaserActive with Genesis Pack PAC-S10 (USA, NTSC)'], + array['Arcade'], + '{"mame":["laseract"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'lasso', + 'Lasso', + 'SNK', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["lasso"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/lasso.cpp"]}'::jsonb + ), + ( + 'last-bank-v1-16', + 'Last Bank (v1.16)', + 'Excellent System', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["lastbank"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'last-battle-mega-tech', + 'Last Battle (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_lastb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'last-bronx', + 'Last Bronx', + 'Sega', + 1996, + array['Last Bronx (Export, Revision A)'], + array['Arcade'], + '{"mame":["lastbrnx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'last-duel', + 'Last Duel', + 'Capcom', + 1988, + array['Last Duel (US New Ver.)'], + array['Arcade'], + '{"mame":["lastduel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lastduel.cpp"]}'::jsonb + ), + ( + 'last-fighting', + 'Last Fighting', + 'Subsino', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["lastfght"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/lastfght.cpp"]}'::jsonb + ), + ( + 'last-fortress-toride', + 'Last Fortress - Toride', + 'Metro', + 1994, + array['Last Fortress - Toride (Japan, VG420 PCB)'], + array['Arcade'], + '{"mame":["lastfort"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'last-four-09-12-16-01-2001', + 'Last Four (09:12 16/01/2001)', + 'B.R.L.', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["lastfour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/galaxi.cpp"]}'::jsonb + ), + ( + 'last-hope', + 'Last Hope', + 'NG:DEV.TEAM', + 2005, + array['Last Hope (bootleg AES to MVS conversion, no coin support)'], + array['Arcade'], + '{"mame":["lasthope"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'last-km', + 'Last KM', + 'Gaelco / Zeus', + 1995, + array['Last KM (ver 1.0.0275, checksum 13bff751, prototype)'], + array['Arcade'], + '{"mame":["lastkm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp"]}'::jsonb + ), + ( + 'last-mission', + 'Last Mission', + 'Data East Corporation', + 1986, + array['Last Mission (World revision 8)'], + array['Arcade'], + '{"mame":["lastmisn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'last-resort', + 'Last Resort', + 'SNK', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["lresort"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'last-striker-kyuukyoku-no-striker', + 'Last Striker / Kyuukyoku no Striker', + 'East Technology', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["kyustrkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_x.cpp"]}'::jsonb + ), + ( + 'last-survivor-fd1094-317-0083', + 'Last Survivor (FD1094 317-0083)', + 'Sega', + 1989, + array['Last Survivor (Japan) (FD1094 317-0083)'], + array['Arcade'], + '{"mame":["lastsurv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'lazer-command', + 'Lazer Command', + 'Meadows Games, Inc.', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["lazercmd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/lazercmd.cpp"]}'::jsonb + ), + ( + 'ld-50', + 'LD-50', + 'Casio', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["ld50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ld50.cpp"]}'::jsonb + ), + ( + 'le-grandchamps', + 'Le Grandchamps', + 'Isermatic France S.A.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["legrandc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/corona.cpp"]}'::jsonb + ), + ( + 'le-mans', + 'Le Mans', + 'Atari', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["lemans"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'le-mans-24', + 'Le Mans 24', + 'Sega', + 1997, + array['Le Mans 24 (Revision B)'], + array['Arcade'], + '{"mame":["lemans24"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'le-pendu', + 'Le Pendu', + 'Avenir Amusement Inc.', + null, + array['Le Pendu (Bilingue, Version 04)'], + array['Arcade'], + '{"mame":["lependu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/lependu.cpp"]}'::jsonb + ), + ( + 'le-super-pendu', + 'Le Super Pendu', + 'Voyageur de L''Espace Inc.', + null, + array['Le Super Pendu (V1, words set #1)', 'Le Super Pendu (V1, words set #2)'], + array['Arcade'], + '{"mame":["lespendu","lespenduj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'leader', + 'Leader', + 'bootleg', + 1995, + array['Leader (version Z 2E, Greece)'], + array['Arcade'], + '{"mame":["leader"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'leader-board-golf', + 'Leader Board Golf', + 'Arcadia Systems', + 1988, + array['Leader Board Golf (Arcadia, set 1, V 2.5)'], + array['Sports'], + '{"mame":["ar_ldrb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'league-bowling-ngm-019-ngh-019', + 'League Bowling (NGM-019 ~ NGH-019)', + 'SNK', + 1990, + '{}'::text[], + array['Sports'], + '{"mame":["lbowling"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'leappad', + 'LeapPad', + 'LeapFrog', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["leappad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/leappad.cpp"]}'::jsonb + ), + ( + 'leappad-plus-microphone', + 'LeapPad Plus Microphone', + 'LeapFrog', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["leappadmic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/leappad.cpp"]}'::jsonb + ), + ( + 'leapster', + 'Leapster', + 'LeapFrog', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["leapster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/leapster.cpp"]}'::jsonb + ), + ( + 'leapster-explorer', + 'Leapster Explorer', + 'LeapFrog', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["leapexpr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/leapster_explorer.cpp"]}'::jsonb + ), + ( + 'led-storm-rally-2011', + 'Led Storm Rally 2011', + 'Capcom', + 1988, + array['Led Storm Rally 2011 (World)'], + array['Arcade'], + '{"mame":["leds2011"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lastduel.cpp"]}'::jsonb + ), + ( + 'lee-trevino-s-fighting-golf', + 'Lee Trevino''s Fighting Golf', + 'SNK', + 1988, + array['Lee Trevino''s Fighting Golf (World?)'], + array['Sports'], + '{"mame":["fitegolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'legend', + 'Legend', + 'Kyugo / Sega', + 1986, + array['Legend (SNES bootleg)'], + array['Arcade'], + '{"mame":["legend","legendsb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/kyugo.cpp","nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'legend-of-hero-tonma', + 'Legend of Hero Tonma', + 'Irem', + 1989, + array['Legend of Hero Tonma (World)'], + array['Arcade'], + '{"mame":["loht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'legend-of-heroes', + 'Legend of Heroes', + 'Limenko', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["legendoh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/limenko.cpp"]}'::jsonb + ), + ( + 'legend-of-makai', + 'Legend of Makai', + 'Jaleco', + 1988, + array['Legend of Makai (World)'], + array['Arcade'], + '{"mame":["lomakai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'legend-of-success-joe-ashita-no-joe-densetsu', + 'Legend of Success Joe / Ashita no Joe Densetsu', + 'SNK / Wave', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["legendos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'legendary-wings', + 'Legendary Wings', + 'Capcom', + 1986, + array['Legendary Wings (US, rev. C)'], + array['Arcade'], + '{"mame":["lwings"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lwings.cpp"]}'::jsonb + ), + ( + 'legion-spinner-87', + 'Legion - Spinner-87', + 'Nichibutsu', + 1987, + array['Legion - Spinner-87 (World ver 2.03)'], + array['Arcade'], + '{"mame":["legion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/armedf.cpp"]}'::jsonb + ), + ( + 'legionnaire', + 'Legionnaire', + 'TAD Corporation', + 1992, + array['Legionnaire (World)'], + array['Arcade'], + '{"mame":["legionna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/legionna.cpp"]}'::jsonb + ), + ( + 'lemmings', + 'Lemmings', + 'Data East USA', + 1991, + array['Lemmings (US prototype)'], + array['Arcade'], + '{"mame":["lemmings"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/lemmings.cpp"]}'::jsonb + ), + ( + 'leprechaun', + 'Leprechaun', + 'Pacific Polytechnical Corp.', + 1982, + array['Leprechaun (set 1)'], + array['Arcade'], + '{"mame":["leprechn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/killcom.cpp"]}'::jsonb + ), + ( + 'leprechaun-s-gold', + 'Leprechaun''s Gold', + 'WMS', + 2001, + array['Leprechaun''s Gold (Russian)'], + array['Arcade'], + '{"mame":["leprgld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'lerncomputer-lc-80', + 'Lerncomputer LC 80', + 'VEB Mikroelektronik "Karl Marx" Erfurt', + 1984, + array['Lerncomputer LC 80 (set 1)'], + array['Arcade'], + '{"mame":["lc80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/lc80.cpp"]}'::jsonb + ), + ( + 'les-fiches', + 'Les Fiches', + 'Minivideo', + null, + array['Les Fiches (ver 1.3)'], + array['Arcade'], + '{"mame":["fiches"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/minivideo.cpp"]}'::jsonb + ), + ( + 'let-s-attack-crazy-cross', + 'Let''s Attack Crazy Cross', + 'Konami', + 1996, + array['Let''s Attack Crazy Cross (GV027 Asia 1.10)'], + array['Arcade'], + '{"mame":["lacrazyc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'let-s-dance', + 'Let''s Dance', + 'dgPIX Entertainment Inc.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["letsdnce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'let-s-go-jungle-export', + 'Let''s Go Jungle (Export)', + 'Sega', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["letsgoju"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'let-s-play-game-machine-240-in-1', + 'Let''s Play! Game Machine 240 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lpgm240"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'lethal-crash-race-bakuretsu-crash-race', + 'Lethal Crash Race / Bakuretsu Crash Race', + 'Video System Co.', + 1993, + array['Lethal Crash Race / Bakuretsu Crash Race (set 1)'], + array['Arcade'], + '{"mame":["crshrace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/crshrace.cpp"]}'::jsonb + ), + ( + 'lethal-enforcers', + 'Lethal Enforcers', + 'Konami', + 1992, + array['Lethal Enforcers (ver UAE, 11/19/92 15:04)'], + array['Light gun'], + '{"mame":["lethalen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/lethal.cpp"]}'::jsonb + ), + ( + 'lethal-enforcers-ii-gun-fighters', + 'Lethal Enforcers II: Gun Fighters', + 'Konami', + 1994, + array['Lethal Enforcers II: Gun Fighters (ver EAA)'], + array['Light gun'], + '{"mame":["le2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'lethal-justice', + 'Lethal Justice', + 'The Game Room', + 1996, + array['Lethal Justice (Version 2.3)'], + array['Arcade'], + '{"mame":["lethalj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/lethalj.cpp"]}'::jsonb + ), + ( + 'lethal-thunder', + 'Lethal Thunder', + 'Irem', + 1991, + array['Lethal Thunder (World)'], + array['Arcade'], + '{"mame":["lethalth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'lethal-weapon-nintendo-super-system', + 'Lethal Weapon (Nintendo Super System)', + 'Ocean', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_lwep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'levers', + 'Levers', + 'Rock-Ola', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["levers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'libble-rabble', + 'Libble Rabble', + 'Namco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["liblrabl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/toypop.cpp"]}'::jsonb + ), + ( + 'liberation', + 'Liberation', + 'Data East Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["liberate"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/liberate.cpp"]}'::jsonb + ), + ( + 'liberator', + 'Liberator', + 'Atari', + 1982, + array['Liberator (version 2)'], + array['Arcade'], + '{"mame":["liberatr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/liberatr.cpp"]}'::jsonb + ), + ( + 'libero-grande', + 'Libero Grande', + 'Namco', + 1997, + array['Libero Grande (World, LG2/VER.A)'], + array['Arcade'], + '{"mame":["lbgrande"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'life-of-luxury', + 'Life of Luxury', + 'WMS', + 2000, + array['Life of Luxury (Russian)'], + array['Arcade'], + '{"mame":["lol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'light-bringer', + 'Light Bringer', + 'Taito Corporation Japan', + 1993, + array['Light Bringer (Ver 2.2O 1994/04/08)'], + array['Arcade'], + '{"mame":["lightbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'lightning-fighters', + 'Lightning Fighters', + 'Konami', + 1990, + array['Lightning Fighters (World)'], + array['Arcade'], + '{"mame":["lgtnfght"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'lightning-swords', + 'Lightning Swords', + 'Irem', + 1991, + array['Lightning Swords (World)'], + array['Arcade'], + '{"mame":["ltswords"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'line-of-fire-bakudan-yarou-fd1094-317-0136', + 'Line of Fire / Bakudan Yarou (FD1094 317-0136)', + 'Sega', + 1989, + array['Line of Fire / Bakudan Yarou (World) (FD1094 317-0136)'], + array['Arcade'], + '{"mame":["loffire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'link-480z', + 'LINK 480Z', + 'Research Machines', + 1981, + array['LINK 480Z (set 1)'], + array['Arcade'], + '{"mame":["rm480z"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rm/rm480z.cpp"]}'::jsonb + ), + ( + 'linky-pipe', + 'Linky Pipe', + 'Eolith', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["linkypip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'linndrum', + 'LinnDrum', + 'Linn Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["linndrum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["linn/linndrum.cpp"]}'::jsonb + ), + ( + 'linux-4004', + 'Linux/4004', + 'Dmitry Grinberg', + 2024, + '{}'::text[], + array['Arcade'], + '{"mame":["lnux4004"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/linux4004.cpp"]}'::jsonb + ), + ( + 'liquid-kids', + 'Liquid Kids', + 'Taito Corporation Japan', + 1990, + array['Liquid Kids (World)'], + array['Arcade'], + '{"mame":["liquidk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'little-big-board-6000-series', + 'Little Big Board (6000 series)', + 'Pulsar', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["pulsarlb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/pulsar.cpp"]}'::jsonb + ), + ( + 'little-board-186', + 'Little Board/186', + 'Ampro Computers', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["lb186"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ampro/lb186.cpp"]}'::jsonb + ), + ( + 'little-board-pc', + 'Little Board/PC', + 'Ampro Computers', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["lbpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ampro/lbpc.cpp"]}'::jsonb + ), + ( + 'little-robin', + 'Little Robin', + 'TCH', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["littlerb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/littlerb.cpp"]}'::jsonb + ), + ( + 'little-touch-leappad', + 'Little Touch LeapPad', + 'LeapFrog', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["ltleappad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/leappad.cpp"]}'::jsonb + ), + ( + 'little-z80-board', + 'Little Z80 Board', + 'Ampro', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ampro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ampro/ampro.cpp"]}'::jsonb + ), + ( + 'live-gal', + 'Live Gal', + 'Central Denshi', + 1987, + array['Live Gal (Japan 870530)'], + array['Arcade'], + '{"mame":["livegal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'lizard-wizard', + 'Lizard Wizard', + 'Techstar (Sunn license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["lizwiz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'llc-1', + 'LLC-1', + 'SCCH', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["llc1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/llc1.cpp"]}'::jsonb + ), + ( + 'lock-on-philko', + 'Lock On (Philko)', + 'Philko', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["lockonph"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'lock-on', + 'Lock-On', + 'Tatsumi', + 1986, + array['Lock-On (rev. E)'], + array['Arcade'], + '{"mame":["lockon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/lockon.cpp"]}'::jsonb + ), + ( + 'lock-n-chase', + 'Lock''n''Chase', + 'Data East Corporation', + 1981, + array['Lock''n''Chase (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["clocknch","lnc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp","dataeast/btime.cpp"]}'::jsonb + ), + ( + 'locked-n-loaded', + 'Locked ''n Loaded', + 'Data East Corporation', + 1994, + array['Locked ''n Loaded (World)'], + array['Arcade'], + '{"mame":["lockload"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco32.cpp"]}'::jsonb + ), + ( + 'loco-motion', + 'Loco-Motion', + 'Konami (Centuri license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["locomotn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rallyx.cpp"]}'::jsonb + ), + ( + 'lode-runner', + 'Lode Runner', + 'Irem (licensed from Broderbund)', + 1984, + array['Lode Runner (set 1)'], + array['Arcade'], + '{"mame":["ldrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'lode-runner-the-dig-fight', + 'Lode Runner - The Dig Fight', + 'Psikyo', + 2000, + array['Lode Runner - The Dig Fight (ver. B)'], + array['Arcade'], + '{"mame":["loderndf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo4.cpp"]}'::jsonb + ), + ( + 'lode-runner-ii-the-bungeling-strikes-back', + 'Lode Runner II - The Bungeling Strikes Back', + 'Irem (licensed from Broderbund)', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["ldrun2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'lode-runner-iii-the-golden-labyrinth', + 'Lode Runner III - The Golden Labyrinth', + 'Irem (licensed from Broderbund)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ldrun3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'lode-runner-iv-teikoku-karano-dasshutsu', + 'Lode Runner IV - Teikoku Karano Dasshutsu', + 'Irem (licensed from Broderbund)', + 1986, + array['Lode Runner IV - Teikoku Karano Dasshutsu (Japan)'], + array['Arcade'], + '{"mame":["ldrun4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'logger', + 'Logger', + 'Century Electronics', + 1982, + array['Logger (Rev.3)'], + array['Arcade'], + '{"mame":["logger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'logic-pro-2', + 'Logic Pro 2', + 'Deniam', + 1997, + array['Logic Pro 2 (Japan)'], + array['Arcade'], + '{"mame":["logicpr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/deniam.cpp"]}'::jsonb + ), + ( + 'lola-8', + 'Lola 8', + 'Institut Ivo Lola Ribar', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["lola8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/lola8a.cpp"]}'::jsonb + ), + ( + 'long-beach', + 'Long Beach', + 'Seletron / Olympia', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["lbeach"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympia/lbeach.cpp"]}'::jsonb + ), + ( + 'long-hu-bang', + 'Long Hu Bang', + 'IGS', + 1995, + array['Long Hu Bang (China, V035C)'], + array['Arcade'], + '{"mame":["lhb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs011.cpp"]}'::jsonb + ), + ( + 'long-hu-da-manguan-v102c3m', + 'Long Hu Da Manguan (V102C3M)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["lhdmg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'long-hu-da-manguan-duizhan-jiaqiang-ban-v400c3m', + 'Long Hu Da Manguan Duizhan Jiaqiang Ban (V400C3M)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["lhdmgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'long-hu-feng-yun-gao-qing-ban-v206cn', + 'Long Hu Feng Yun Gao Qing Ban (V206CN)', + 'IGS', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["lhfy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'long-hu-tebie-ban-s101cn', + 'Long Hu Tebie Ban (S101CN)', + 'IGS', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["lhtb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba', + 'Long Hu Zhengba', + 'IGS', + 1998, + array['Long Hu Zhengba (China, VS105M, set 1)'], + array['Arcade'], + '{"mame":["lhzb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-2', + 'Long Hu Zhengba 2', + 'IGS', + 1998, + array['Long Hu Zhengba 2 (China, set 1)'], + array['Arcade'], + '{"mame":["lhzb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-4-v104cn', + 'Long Hu Zhengba 4 (V104CN)', + 'IGS', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["lhzb4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-4-dui-hua-ban-v203cn', + 'Long Hu Zhengba 4 Dui Hua Ban (V203CN)', + 'IGS', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["lhzb4dhb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-gao-qing-ban-v105cn', + 'Long Hu Zhengba Gao Qing Ban (V105CN)', + 'IGS', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["lhzbgqb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-iii-v400cn', + 'Long Hu Zhengba III (V400CN)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["lhzb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-iii-shengji-ban-v300c5', + 'Long Hu Zhengba III Shengji Ban (V300C5)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["lhzb3sjb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-san-he-yi-v100cn', + 'Long Hu Zhengba San He Yi (V100CN)', + 'IGS', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["lhzb3in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'long-teng-hu-yao-duizhan-jiaqiang-ban-s104cn', + 'Long Teng Hu Yao Duizhan Jiaqiang Ban (S104CN)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["lthyp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'looping', + 'Looping', + 'Video Games GmbH', + 1982, + array['Looping (Europe)'], + array['Arcade'], + '{"mame":["looping"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["videogames/looping.cpp"]}'::jsonb + ), + ( + 'loopy', + 'Loopy', + 'Casio', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["casloopy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/casloopy.cpp"]}'::jsonb + ), + ( + 'lord-of-gun', + 'Lord of Gun', + 'IGS', + 1994, + array['Lord of Gun (World)'], + array['Arcade'], + '{"mame":["lordgun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/lordgun.cpp"]}'::jsonb + ), + ( + 'lost-tomb-easy', + 'Lost Tomb (easy)', + 'Stern Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["losttomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'lost-treasure-v1-03', + 'Lost Treasure (V1.03)', + '', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["losttrea"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/chsuper.cpp"]}'::jsonb + ), + ( + 'lot-lot', + 'Lot Lot', + 'Irem (licensed from Tokuma Shoten)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["lotlot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'loto-play', + 'Loto-Play', + 'Gaelco / Covielsa', + null, + array['Loto-Play (MC68705, set 1)'], + array['Arcade'], + '{"mame":["lotoplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/lotoplay.cpp"]}'::jsonb + ), + ( + 'lotto-fun', + 'Lotto Fun', + 'HAR Management', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["lottofun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'lotto-fun-2', + 'Lotto Fun 2', + 'HAR Management', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["lottof2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dcheese.cpp"]}'::jsonb + ), + ( + 'love-and-berry-1st-2nd-collection', + 'Love And Berry - 1st-2nd Collection', + 'Sega', + 2006, + array['Love And Berry - 1st-2nd Collection (Export, Ver 2.000)'], + array['Arcade'], + '{"mame":["lovebery"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'love-and-berry-3rd-5th-collection-mda-c0042', + 'Love And Berry - 3rd-5th Collection (MDA-C0042)', + 'Sega', + 2007, + array['Love And Berry - 3rd-5th Collection (USA, Export, Ver 1.002) (MDA-C0042)'], + array['Arcade'], + '{"mame":["loveber3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'love-to-win', + 'Love To Win', + 'WMS', + 2001, + array['Love To Win (Russian)'], + array['Arcade'], + '{"mame":["lovewin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'lovely-cards', + 'Lovely Cards', + 'Tehkan', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["lvcards"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/lvcards.cpp"]}'::jsonb + ), + ( + 'lover-boy', + 'Lover Boy', + 'G.T Enterprise Inc', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["loverboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ), + ( + 'lsi-octopus', + 'LSI Octopus', + 'Digital Microsystems', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["octopus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["lsi/octopus.cpp"]}'::jsonb + ), + ( + 'lucky-and-wild', + 'Lucky & Wild', + 'Namco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["luckywld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'lucky-21', + 'Lucky 21', + 'Wing Co., Ltd.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["lucky21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky37.cpp"]}'::jsonb + ), + ( + 'lucky-21-d', + 'Lucky 21-D', + 'Wing Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lucky21d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky37.cpp"]}'::jsonb + ), + ( + 'lucky-25', + 'Lucky 25', + 'Wing Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lucky25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky37.cpp"]}'::jsonb + ), + ( + 'lucky-37', + 'Lucky 37', + 'Wing Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lucky37"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky37.cpp"]}'::jsonb + ), + ( + 'lucky-7', + 'Lucky 7', + 'Impera', + 1991, + array['Lucky 7 (Impera, V04/91a, set 1)'], + array['Arcade'], + '{"mame":["lucky7i"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'lucky-74', + 'Lucky 74', + 'Wing Co., Ltd.', + 1988, + array['Lucky 74 (bootleg, set 1)'], + array['Arcade'], + '{"mame":["lucky74"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky74.cpp"]}'::jsonb + ), + ( + 'lucky-75', + 'Lucky 75', + 'Wing Co., Ltd.', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["lucky75"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky37.cpp"]}'::jsonb + ), + ( + 'lucky-88-wing', + 'Lucky 88 (Wing)', + 'Wing Co., Ltd.', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["lucky88w"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky74.cpp"]}'::jsonb + ), + ( + 'lucky-9', + 'Lucky 9', + 'Nibble', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["l9nibble"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/nibble.cpp"]}'::jsonb + ), + ( + 'lucky-ball-96', + 'Lucky Ball 96', + 'Sielcon Games', + 1999, + array['Lucky Ball 96 (Ver 4.01)'], + array['Arcade'], + '{"mame":["luckybal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/luckybal.cpp"]}'::jsonb + ), + ( + 'lucky-bar-w-4-with-mc68705-mcu', + 'Lucky Bar (W-4 with MC68705 MCU)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["luckybar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'lucky-boom', + 'Lucky Boom', + 'Playmark', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["luckboom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'lucky-cross-v106sa', + 'Lucky Cross (V106SA)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["luckycrs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'lucky-fountain', + 'Lucky Fountain', + 'Konami', + null, + array['Lucky Fountain (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["luckfoun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'lucky-full-house', + 'Lucky Full House', + '', + 1996, + array['Lucky Full House (ver 1.16, data ver 1.05)'], + array['Arcade'], + '{"mame":["lfhouse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'lucky-girl-newer-z180-based-hardware', + 'Lucky Girl (newer Z180-based hardware)', + 'Wing Co., Ltd.', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["luckgrln"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/luckgrln.cpp"]}'::jsonb + ), + ( + 'lucky-girl-wing', + 'Lucky Girl (Wing)', + 'Wing Co., Ltd.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["luckygrl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/jangou.cpp"]}'::jsonb + ), + ( + 'lucky-haunter', + 'Lucky Haunter', + 'Igrosoft', + 2003, + array['Lucky Haunter (040825 World)'], + array['Arcade'], + '{"mame":["lhaunt_6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'lucky-lady-wing-encrypted', + 'Lucky Lady (Wing, encrypted)', + 'Wing Co., Ltd.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["luckylad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'lucky-lady-s-charm', + 'Lucky Lady''s Charm', + 'Novotech', + null, + array['Lucky Lady''s Charm (set 1)'], + array['Arcade'], + '{"mame":["llcharm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'lucky-line-iii', + 'Lucky Line III', + 'bootleg', + 1993, + array['Lucky Line III (ver 2.00, Wang QL-1 v3.03, set 1)'], + array['Arcade'], + '{"mame":["ll3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'lucky-pierrot', + 'Lucky Pierrot', + 'Cobra', + null, + array['Lucky Pierrot (Japan, v1.1.0B)'], + array['Arcade'], + '{"mame":["lpierrot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'lucky-roulette-plus-6-players-spanish', + 'Lucky Roulette Plus (6-players, Spanish)', + '', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["luckyrlt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/corona.cpp"]}'::jsonb + ), + ( + 'lucky-shell-ukraine-v-42-25', + 'Lucky Shell (Ukraine, V. 42.25)', + 'Extrema', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["luckshel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'lucky-spin-1999', + 'Lucky Spin 1999', + 'Astro Corp.', + 1999, + array['Lucky Spin 1999 (Ver. A.1)'], + array['Arcade'], + '{"mame":["luckys99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'lucky-star', + 'Lucky Star', + 'Wing Co., Ltd.', + 1991, + array['Lucky Star (newer Z180-based hardware, set 1)'], + array['Arcade'], + '{"mame":["luckstrn","luckystr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/luckgrln.cpp","wing/lucky37.cpp"]}'::jsonb + ), + ( + 'lucky-today', + 'Lucky Today', + 'Sigma', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["luctoday"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'luna', + 'Luna', + 'Omron', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["luna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omron/luna_68k.cpp"]}'::jsonb + ), + ( + 'luna-88k', + 'Luna 88K', + 'Omron', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["luna88k","luna88k2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omron/luna_88k.cpp"]}'::jsonb + ), + ( + 'luna-park', + 'Luna Park', + '', + 1998, + array['Luna Park (set 1, dual program)', 'Luna Park (ver. 1.2)'], + array['Arcade'], + '{"mame":["lunapark","lunaprk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp","misc/magic10.cpp"]}'::jsonb + ), + ( + 'lunar-lander', + 'Lunar Lander', + 'Atari', + 1979, + array['Lunar Lander (rev 2)'], + array['Arcade'], + '{"mame":["llander"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/asteroid.cpp"]}'::jsonb + ), + ( + 'lunar-rescue', + 'Lunar Rescue', + 'Taito', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["lrescue"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'lung-fu-bong-ii-hong-kong-v185h', + 'Lung Fu Bong II (Hong Kong, V185H)', + 'IGS', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["lhb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs011.cpp"]}'::jsonb + ), + ( + 'lupin-iii', + 'Lupin III', + 'Taito', + 1980, + array['Lupin III (set 1)'], + array['Arcade'], + '{"mame":["lupin3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'lupin-the-third-the-shooting-gds-0018a', + 'Lupin The Third - The Shooting (GDS-0018A)', + 'Sega / Eighting', + 2001, + array['Lupin The Third - The Shooting (Rev A) (GDS-0018A)'], + array['Arcade'], + '{"mame":["lupinsho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'lupin-the-third-the-typing-gds-0021a', + 'Lupin The Third - The Typing (GDS-0021A)', + 'Sega', + 2002, + array['Lupin The Third - The Typing (Rev A) (GDS-0021A)'], + array['Arcade'], + '{"mame":["luptype"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'lw-30', + 'LW-30', + 'Brother', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["lw30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/lw30.cpp"]}'::jsonb + ), + ( + 'lw-350', + 'LW-350', + 'Brother', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["lw350"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/lw350.cpp"]}'::jsonb + ), + ( + 'lw-450', + 'LW-450', + 'Brother', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["lw450"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/lw350.cpp"]}'::jsonb + ), + ( + 'lw-700i', + 'LW-700i', + 'Brother', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["lw700i"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/lw700i.cpp"]}'::jsonb + ), + ( + 'lw-840ic', + 'LW-840ic', + 'Brother', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["lw840"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/lw840.cpp"]}'::jsonb + ), + ( + 'lynx', + 'Lynx', + 'Atari', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["lynx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/lynx.cpp"]}'::jsonb + ), + ( + 'lynx-48k', + 'Lynx 48k', + 'Camputers', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["lynx48k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["camputers/camplynx.cpp"]}'::jsonb + ), + ( + 'm-4', + 'M-4', + 'Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["m4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'm-79-ambush', + 'M-79 Ambush', + 'Ramtek', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["m79amb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/m79amb.cpp"]}'::jsonb + ), + ( + 'm-disk-comp-a', + 'M-Disk Comp.-A', + 'mupid', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mdisk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mupid/mdisk.cpp"]}'::jsonb + ), + ( + 'm-three', + 'M-THREE', + 'LSI', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["m3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["lsi/m3.cpp"]}'::jsonb + ), + ( + 'm-5', + 'm.5', + 'Sord', + 1983, + array['m.5 (Japan)'], + array['Arcade'], + '{"mame":["m5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sord/m5.cpp"]}'::jsonb + ), + ( + 'm-a-c-h-3', + 'M.A.C.H. 3', + 'Mylstar', + 1983, + array['M.A.C.H. 3 (set 1)'], + array['Arcade'], + '{"mame":["mach3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'm-i-a-missing-in-action', + 'M.I.A. - Missing in Action', + 'Konami', + 1989, + array['M.I.A. - Missing in Action (version T)'], + array['Arcade'], + '{"mame":["mia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt.cpp"]}'::jsonb + ), + ( + 'm1-music-workstation', + 'M1 Music Workstation', + 'Korg', + 1988, + array['M1 Music Workstation (Rev 19)'], + array['Arcade'], + '{"mame":["korgm1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgm1.cpp"]}'::jsonb + ), + ( + 'm3001', + 'M3001', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["m3001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segafruit.cpp"]}'::jsonb + ), + ( + 'm3004', + 'M3004', + 'Sega', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["m3004"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segafruit.cpp"]}'::jsonb + ), + ( + 'm4001', + 'M4001', + 'Sega', + 1990, + array['M4001 (rev. A)'], + array['Arcade'], + '{"mame":["m4001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segafruit.cpp"]}'::jsonb + ), + ( + 'm4002', + 'M4002', + 'Sega', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["m4002"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segafruit.cpp"]}'::jsonb + ), + ( + 'm5001', + 'M5001', + 'Sega', + null, + array['M5001 (rev. A)'], + array['Arcade'], + '{"mame":["m5001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segafruit.cpp"]}'::jsonb + ), + ( + 'm6800-exorciser-m68sdt', + 'M6800 EXORciser (M68SDT)', + 'Motorola', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["exorciser"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/exorciser.cpp"]}'::jsonb + ), + ( + 'm68hc05evs', + 'M68HC05EVS', + 'Motorola', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["m6805evs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/m6805evs.cpp"]}'::jsonb + ), + ( + 'm8-game-selectable-working-product-display', + 'M8 Game Selectable Working Product Display', + 'Nintendo', + 1986, + array['M8 Game Selectable Working Product Display (US, set 1)'], + array['Arcade'], + '{"mame":["nesm8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_m8.cpp"]}'::jsonb + ), + ( + 'm8120', + 'M8120', + 'Motorola', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["m8120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/m8120.cpp"]}'::jsonb + ), + ( + 'm82-game-selectable-working-product-display', + 'M82 Game Selectable Working Product Display', + 'Nintendo', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["m82"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_m82.cpp"]}'::jsonb + ), + ( + 'm912', + 'M912', + 'PC-Chips', + 1994, + array['M912 (UMC UM8498F & UM8496 chipset)'], + array['Arcade'], + '{"mame":["pccm912"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["umc/pc486vl.cpp"]}'::jsonb + ), + ( + 'mace-the-dark-age-boot-rom-1-0ce-hdd-1-0b', + 'Mace: The Dark Age (boot ROM 1.0ce, HDD 1.0b)', + 'Atari Games', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'mach-breakers', + 'Mach Breakers', + 'Namco', + 1995, + array['Mach Breakers (World, MB2)'], + array['Arcade'], + '{"mame":["machbrkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'macheonlu', + 'Macheonlu', + 'SemiCom / AceVer', + 1999, + array['Macheonlu (Korea)'], + array['Arcade'], + '{"mame":["mcheonru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'machinedrum-sps-1-mk2', + 'Machinedrum SPS-1 MK2', + 'Elektron', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["machdrum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektron/elektronmono.cpp"]}'::jsonb + ), + ( + 'macho-mouse', + 'Macho Mouse', + 'Techstar', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["machomou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'macross-plus', + 'Macross Plus', + 'MOSS / Banpresto', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["macrossp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/macrossp.cpp"]}'::jsonb + ), + ( + 'mad-alien', + 'Mad Alien', + 'Data East Corporation', + 1980, + array['Mad Alien (set 1)'], + array['Arcade'], + '{"mame":["madalien"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/madalien.cpp"]}'::jsonb + ), + ( + 'mad-ball-v2-0', + 'Mad Ball (V2.0)', + 'Yun Sung', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["madball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'mad-crasher', + 'Mad Crasher', + 'SNK', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["madcrash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'mad-dog-ii-the-lost-gold-3do-hardware', + 'Mad Dog II: The Lost Gold (3DO hardware)', + 'American Laser Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["md23do"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + 'mad-dog-ii-the-lost-gold-v2-04', + 'Mad Dog II: The Lost Gold (v2.04)', + 'American Laser Games', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["maddog2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'mad-dog-mccree', + 'Mad Dog McCree', + 'American Laser Games', + 1990, + array['Mad Dog McCree (v2.03 board rev.B)'], + array['Arcade'], + '{"mame":["maddog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'mad-donna', + 'Mad Donna', + 'Promat (Tuning license)', + 1995, + array['Mad Donna (Tuning, set 1)'], + array['Arcade'], + '{"mame":["maddonna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/oneshot.cpp"]}'::jsonb + ), + ( + 'mad-gear', + 'Mad Gear', + 'Capcom', + 1989, + array['Mad Gear (US)'], + array['Arcade'], + '{"mame":["madgear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lastduel.cpp"]}'::jsonb + ), + ( + 'mad-motor', + 'Mad Motor', + 'Mitchell', + 1989, + array['Mad Motor (prototype, set 1)'], + array['Arcade'], + '{"mame":["madmotor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/madmotor.cpp"]}'::jsonb + ), + ( + 'mad-planets', + 'Mad Planets', + 'Gottlieb', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mplanets"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'mad-shark', + 'Mad Shark', + 'Allumer', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["madshark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'mad-zoo', + 'Mad Zoo', + 'Bordun International', + 1995, + array['Mad Zoo (version U450C)'], + array['Arcade'], + '{"mame":["madzoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'mag-max', + 'Mag Max', + 'Nichibutsu', + 1985, + array['Mag Max (set 1)'], + array['Arcade'], + '{"mame":["magmax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/magmax.cpp"]}'::jsonb + ), + ( + 'magic-bomb', + 'Magic Bomb', + 'Astro Corp.', + 2000, + array['Magic Bomb (Ver. L3.5S)', 'Magic Bomb (Version 1)'], + array['Arcade'], + '{"mame":["magibomb","magicbom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp","misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'magic-bubble', + 'Magic Bubble', + 'Yun Sung', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["magicbub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsun16.cpp"]}'::jsonb + ), + ( + 'magic-card-v1-10-14-09-94', + 'Magic Card (v1.10 14.09.94)', + 'Impera', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["magicrd1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'magic-card-v2-01', + 'Magic Card (v2.01)', + 'Impera', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["magicard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'magic-card-export-94', + 'Magic Card Export 94', + 'Impera', + 1994, + array['Magic Card Export 94 (v2.11a, set 1)'], + array['Arcade'], + '{"mame":["magicrde"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'magic-card-ii-bulgarian', + 'Magic Card II (Bulgarian)', + 'Impera', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["magicrd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'magic-card-iii-jackpot-v4-01-6-98', + 'Magic Card III Jackpot (V4.01 6/98)', + 'Impera', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["magicrdj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'magic-class', + 'Magic Class', + '', + null, + array['Magic Class (Ver 2.2)'], + array['Arcade'], + '{"mame":["mclass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'magic-colors', + 'Magic Colors', + 'ABM Games', + 1999, + array['Magic Colors (ver. 1.7a)'], + array['Arcade'], + '{"mame":["mcolors"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'magic-drink', + 'Magic Drink', + '', + 2001, + array['Magic Drink (Ver 1.2)'], + array['Arcade'], + '{"mame":["mdrink"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'magic-fly', + 'Magic Fly', + 'P&A Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["magicfly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicfly.cpp"]}'::jsonb + ), + ( + 'magic-johnson-s-fast-break-arcadia-v-2-8', + 'Magic Johnson''s Fast Break (Arcadia, V 2.8)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_fast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'magic-joker-v1-25-10-2000', + 'Magic Joker (v1.25.10.2000)', + 'B.R.L.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["magjoker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/galaxi.cpp"]}'::jsonb + ), + ( + 'magic-lotto-export-5-03', + 'Magic Lotto Export (5.03)', + 'Impera', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["magicle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'magic-number', + 'Magic Number', + 'CD Express', + 1995, + array['Magic Number (Italian gambling game, Ver 1.5)'], + array['Arcade'], + '{"mame":["mgnumber","mnumitg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp","misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'magic-premium-v1-1', + 'Magic Premium (v1.1)', + 'CD Express', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mgprem11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'magic-purple', + 'Magic Purple', + 'Unico', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["magipur"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'magic-reels', + 'Magic Reels', + 'Play System', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["magreel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magreel.cpp"]}'::jsonb + ), + ( + 'magic-sticks', + 'Magic Sticks', + 'Playmark', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["magicstk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/powerbal.cpp"]}'::jsonb + ), + ( + 'magic-sword-heroic-fantasy', + 'Magic Sword: Heroic Fantasy', + 'Capcom', + 1990, + array['Magic Sword: Heroic Fantasy (World 900725)'], + array['Arcade'], + '{"mame":["msword"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'magic-the-gathering-armageddon', + 'Magic the Gathering: Armageddon', + 'Acclaim', + 1997, + array['Magic the Gathering: Armageddon (set 1)'], + array['Arcade'], + '{"mame":["magictg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magictg.cpp"]}'::jsonb + ), + ( + 'magic-touch-v-28-05', + 'Magic Touch (v. 28.05)', + 'Playmark', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["magictch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'magic-train', + 'Magic Train', + 'Subsino', + 1997, + array['Magic Train (Ver. 1.4)'], + array['Arcade'], + '{"mame":["mtrain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'magic-s-10', + 'Magic''s 10', + 'A.W.P. Games', + 1995, + array['Magic''s 10 (ver. 16.55)'], + array['Arcade'], + '{"mame":["magic10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'magic-s-10-2', + 'Magic''s 10 2', + 'ABM Games', + 1997, + array['Magic''s 10 2 (ver. 1.1)'], + array['Arcade'], + '{"mame":["magic102"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'magical-butterfly', + 'Magical Butterfly', + 'Bordun International', + 1999, + array['Magical Butterfly (version U350C, protected)'], + array['Arcade'], + '{"mame":["mbutrfly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'magical-cat-adventure', + 'Magical Cat Adventure', + 'Wintechno', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mcatadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mcatadv.cpp"]}'::jsonb + ), + ( + 'magical-crystals', + 'Magical Crystals', + 'Kaneko', + 1991, + array['Magical Crystals (World, 92/01/10)'], + array['Arcade'], + '{"mame":["mgcrystl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'magical-drop-ii', + 'Magical Drop II', + 'Data East Corporation', + 1996, + '{}'::text[], + array['Puzzle'], + '{"mame":["magdrop2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'magical-drop-iii', + 'Magical Drop III', + 'Data East Corporation', + 1997, + '{}'::text[], + array['Puzzle'], + '{"mame":["magdrop3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'magical-error-wo-sagase', + 'Magical Error wo Sagase', + 'Technosoft / Jaleco', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["magerror"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/hyprduel.cpp"]}'::jsonb + ), + ( + 'magical-jack-va-4-00', + 'Magical Jack (VA 4.00)', + 'Global', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["magjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jungleyo.cpp"]}'::jsonb + ), + ( + 'magical-jack-plus-va-6-03', + 'Magical Jack Plus (VA 6.03)', + 'Global', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["magjackp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jungleyo.cpp"]}'::jsonb + ), + ( + 'magical-kengo-2005', + 'Magical Kengo 2005', + 'Herb Home', + 2005, + array['Magical Kengo 2005 (Ver. 1.2)'], + array['Arcade'], + '{"mame":["magkengo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/popobear.cpp"]}'::jsonb + ), + ( + 'magical-odds', + 'Magical Odds', + 'Pal Company / Micro Manufacturing Inc.', + 1992, + array['Magical Odds (set 1)'], + array['Arcade'], + '{"mame":["magodds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'magical-poppins', + 'Magical Poppins', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["magicpop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'magical-pumpkin-puroland-de-daibouken', + 'Magical Pumpkin: Puroland de Daibouken', + 'Capcom', + 1996, + array['Magical Pumpkin: Puroland de Daibouken (Japan 960712)'], + array['Arcade'], + '{"mame":["mpumpkin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'magical-speed', + 'Magical Speed', + 'Allumer', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["magspeed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'magical-spot', + 'Magical Spot', + 'Universal', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["magspot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmic.cpp"]}'::jsonb + ), + ( + 'magical-spot-ii', + 'Magical Spot II', + 'Universal', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["magspot2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmic.cpp"]}'::jsonb + ), + ( + 'magical-tetris-challenge', + 'Magical Tetris Challenge', + 'Capcom', + 1998, + array['Magical Tetris Challenge (981009 Japan)'], + array['Puzzle'], + '{"mame":["mtetrisc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'magical-tonic-part-2', + 'Magical Tonic Part 2', + 'Pal Company', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mtonic2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'magical-touch', + 'Magical Touch', + 'Micro Manufacturing', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["magtouch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magtouch.cpp"]}'::jsonb + ), + ( + 'magical-truck-adventure-export', + 'Magical Truck Adventure (Export)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["magtruck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'magical-zunou-power-j-961031-v1-000', + 'Magical Zunou Power (J 961031 V1.000)', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["magzun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'magicball-fighting', + 'Magicball Fighting', + 'SemiCom', + 1994, + array['Magicball Fighting (Korea)'], + array['Arcade'], + '{"mame":["magicbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'magician-lord-ngm-005', + 'Magician Lord (NGM-005)', + 'Alpha Denshi Co.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["maglord"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'magistr16', + 'Magistr16', + 'New Game', + 2001, + array['Magistr16 (Russia)'], + array['Arcade'], + '{"mame":["magistr16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/magistr16.cpp"]}'::jsonb + ), + ( + 'magix-rock', + 'Magix / Rock', + 'Yun Sung', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["magix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsung8.cpp"]}'::jsonb + ), + ( + 'magnet-system', + 'Magnet System', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["cedmag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'magnum', + 'Magnum', + 'Dulmont', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["magnum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/magnum.cpp"]}'::jsonb + ), + ( + 'magnum-3000', + 'Magnum 3000', + 'MIPS', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["rs3230"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mips/mips_r3030.cpp"]}'::jsonb + ), + ( + 'magnum-r4000-be', + 'Magnum R4000 (be)', + 'MIPS', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["mmr4000be"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microsoft/jazz.cpp"]}'::jsonb + ), + ( + 'magnum-r4000-le', + 'Magnum R4000 (le)', + 'MIPS', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["mmr4000le"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microsoft/jazz.cpp"]}'::jsonb + ), + ( + 'mahou-no-lamp-v-jaa02', + 'Mahou no Lamp (v. JAA02)', + 'BMC', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mjmaglmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/bmcpokr.cpp"]}'::jsonb + ), + ( + 'maikobana', + 'Maikobana', + 'Nichibutsu', + 1990, + array['Maikobana (Japan 900802)', 'Maikobana (Japan 900911, medal)'], + array['Arcade'], + '{"mame":["maiko","mmaiko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'main-event-1984', + 'Main Event (1984)', + 'SNK', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mainsnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/mainsnk.cpp"]}'::jsonb + ), + ( + 'majiang-xingyun-shenlong', + 'Majiang Xingyun Shenlong', + 'Dynax', + 1996, + array['Majiang Xingyun Shenlong (China, D121)'], + array['Arcade'], + '{"mame":["mjxysl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'majiang-zhengba-v103cn', + 'Majiang Zhengba (V103CN)', + 'IGS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["mjzb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_fear.cpp"]}'::jsonb + ), + ( + 'majiang-zhizun-s100cn', + 'Majiang Zhizun (S100CN)', + 'IGS', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["mjzhizun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'major-havoc', + 'Major Havoc', + 'Atari', + 1983, + array['Major Havoc (rev 3)'], + array['Arcade'], + '{"mame":["mhavoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/mhavoc.cpp"]}'::jsonb + ), + ( + 'major-league', + 'Major League', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mjleague"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'major-title', + 'Major Title', + 'Irem', + 1990, + array['Major Title (World)'], + array['Arcade'], + '{"mame":["majtitle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'major-title-2', + 'Major Title 2', + 'Irem', + 1992, + array['Major Title 2 (World, set 1, 017 sound CPU)'], + array['Arcade'], + '{"mame":["majtitl2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'makaijan', + 'Makaijan', + 'Dynax', + 1987, + array['Makaijan (Japan)'], + array['Arcade'], + '{"mame":["makaijan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'maldaliza', + 'Maldaliza', + 'Big A Korea', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["maldaiza"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'mallet-madness-v2-1', + 'Mallet Madness (v2.1)', + 'Hanaho Games (Capcom license)', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["maletmad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tickee.cpp"]}'::jsonb + ), + ( + 'malzak', + 'Malzak', + 'Kitronix', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["malzak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/malzak.cpp"]}'::jsonb + ), + ( + 'mambo-a-go-go', + 'Mambo A Go-Go', + 'Konami', + 2001, + array['Mambo A Go-Go (GQA40 VER. JAB)'], + array['Arcade'], + '{"mame":["mamboagg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'mamoru-kun-wa-norowarete-shimatta', + 'Mamoru-kun wa Norowarete Shimatta!', + 'G.Rev', + 2008, + array['Mamoru-kun wa Norowarete Shimatta! (Japan)'], + array['Arcade'], + '{"mame":["mamonoro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mang-chi', + 'Mang-Chi', + 'Afega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mangchi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'manguan-caishen', + 'Manguan Caishen', + 'IGS', + 1998, + array['Manguan Caishen (China, V103CS)'], + array['Arcade'], + '{"mame":["mgcs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'manguan-caishen-2', + 'Manguan Caishen 2', + 'IGS', + 1999, + array['Manguan Caishen 2 (link version, host)', 'Manguan Caishen 2 (link version, extension, S110CN)'], + array['Arcade'], + '{"mame":["mgcs2h","mgcs2l"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027_link.cpp"]}'::jsonb + ), + ( + 'manguan-caishen-3-v101cn', + 'Manguan Caishen 3 (V101CN)', + 'IGS', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["mgcs3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'manguan-daheng', + 'Manguan Daheng', + 'IGS', + 1997, + array['Manguan Daheng (Taiwan, V125T1)'], + array['Arcade'], + '{"mame":["mgdh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'manguan-fuxing-v104t', + 'Manguan Fuxing (V104T)', + 'IGS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mgfx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'manguan-zhizun-v101cn', + 'Manguan Zhizun (V101CN)', + 'IGS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["mgzz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'manhattan', + 'Manhattan', + 'Data East Corporation', + 1981, + array['Manhattan (DECO Cassette) (Japan)'], + array['Arcade'], + '{"mame":["cmanhat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'mania-challenge', + 'Mania Challenge', + 'Technos Japan (Taito America license)', + 1986, + array['Mania Challenge (set 1)'], + array['Arcade'], + '{"mame":["maniach"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/matmania.cpp"]}'::jsonb + ), + ( + 'maniac-square', + 'Maniac Square', + 'Gaelco', + 1992, + array['Maniac Square (ver 1.0, checksum b602, prototype)', 'Maniac Square (unprotected, version 1.0, checksum BB73)'], + array['Arcade'], + '{"mame":["maniacsp","maniacsq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp","gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'manic-panic-ghosts', + 'Manic Panic Ghosts!', + 'Sega', + 2007, + array['Manic Panic Ghosts! (USA, Export)'], + array['Arcade'], + '{"mame":["manicpnc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mann-oh-mann', + 'Mann, oh-Mann', + 'Merkur', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["manohman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/manohman.cpp"]}'::jsonb + ), + ( + 'manpuku-suizokukan', + 'Manpuku Suizokukan', + 'Sega', + 2013, + '{}'::text[], + array['Arcade'], + '{"mame":["manpuku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'manx-tt-superbike-dx-twin', + 'Manx TT Superbike - DX/Twin', + 'Sega', + 1995, + array['Manx TT Superbike - DX/Twin (Revision D)'], + array['Arcade'], + '{"mame":["manxtt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'many-block', + 'Many Block', + 'Bee-Oh', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["manybloc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'map-1010', + 'MAP-1010', + 'Seiko', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["map1010"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanyo/phc25.cpp"]}'::jsonb + ), + ( + 'mappy', + 'Mappy', + 'Namco', + 1983, + array['Mappy (US)'], + array['Arcade'], + '{"mame":["mappy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'maque-da-zhonghua-quan', + 'Maque Da Zhonghua Quan', + 'Dynax', + 1995, + array['Maque Da Zhonghua Quan (Taiwan, D111)'], + array['Arcade'], + '{"mame":["mjdchuka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'maque-wangchao-chaoji-da-manguan-2-jiaqiang-ban', + 'Maque Wangchao / Chaoji Da Manguan 2 - Jiaqiang Ban', + 'IGS', + 2000, + array['Maque Wangchao / Chaoji Da Manguan 2 - Jiaqiang Ban (China, V100C)'], + array['Arcade'], + '{"mame":["sdmg2p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'maque-zhonghua-ernu', + 'Maque Zhonghua Ernu', + 'Dynax', + 1998, + array['Maque Zhonghua Ernu (Taiwan)'], + array['Arcade'], + '{"mame":["mjchuuka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'marbella-vice', + 'Marbella Vice', + 'Picmatic', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["marvice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'marbella-vice-100hz-display', + 'Marbella Vice (100Hz display)', + 'Picmatic', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["marvice100hz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'marble-madness', + 'Marble Madness', + 'Atari Games', + 1984, + array['Marble Madness (set 1)'], + array['Arcade'], + '{"mame":["marble"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy1.cpp"]}'::jsonb + ), + ( + 'marble-madness-ii', + 'Marble Madness II', + 'Atari Games', + 1991, + array['Marble Madness II (prototype)'], + array['Arcade'], + '{"mame":["marblmd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/marblmd2.cpp"]}'::jsonb + ), + ( + 'marchen-maze', + 'Marchen Maze', + 'Namco', + 1988, + array['Marchen Maze (Japan)'], + array['Arcade'], + '{"mame":["mmaze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'marine-boy', + 'Marine Boy', + 'Orca', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["marineb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'marine-date', + 'Marine Date', + 'Taito', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["marinedt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/marinedt.cpp"]}'::jsonb + ), + ( + 'mariner', + 'Mariner', + 'Amenip', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mariner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'mario-bros', + 'Mario Bros.', + 'Nintendo of America', + 1983, + array['Mario Bros. (US, revision E)'], + array['Platformer'], + '{"mame":["mario"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/mario.cpp"]}'::jsonb + ), + ( + 'mario-bros-playchoice-10', + 'Mario Bros. (PlayChoice-10)', + 'Nintendo', + 1983, + '{}'::text[], + array['Platformer'], + '{"mame":["pc_mario"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'mario-kart-arcade-gp', + 'Mario Kart Arcade GP', + 'Namco / Nintendo', + 2005, + array['Mario Kart Arcade GP (Japan, MKA1 Ver.A1)'], + array['Arcade'], + '{"mame":["mkartagp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'mario-kart-arcade-gp-2', + 'Mario Kart Arcade GP 2', + 'Namco / Nintendo', + 2007, + array['Mario Kart Arcade GP 2 (Japan, MK21 Ver.A)'], + array['Arcade'], + '{"mame":["mkartag2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'mario-lemieux-hockey-mega-tech', + 'Mario Lemieux Hockey (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_mlh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'mario-roulette', + 'Mario Roulette', + 'Konami', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mariorou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'mario-s-open-golf-playchoice-10', + 'Mario''s Open Golf (PlayChoice-10)', + 'Nintendo', + 1991, + '{}'::text[], + array['Sports'], + '{"mame":["pc_moglf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'mark-1-forth-computer', + 'Mark 1 FORTH Computer', + 'Andrew Holme', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["mk1forth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/mk1forth.cpp"]}'::jsonb + ), + ( + 'markham', + 'Markham', + 'Sun Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["markham"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/markham.cpp"]}'::jsonb + ), + ( + 'mars', + 'Mars', + 'Artic', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'mars-matrix-hyper-solid-shooting', + 'Mars Matrix: Hyper Solid Shooting', + 'Takumi (Capcom license)', + 2000, + array['Mars Matrix: Hyper Solid Shooting (USA 000412)'], + array['Arcade'], + '{"mame":["mmatrix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'martial-beat', + 'Martial Beat', + 'Konami', + 2002, + array['Martial Beat (G*B47 VER. JBA)'], + array['Arcade'], + '{"mame":["mrtlbeat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'martial-champion', + 'Martial Champion', + 'Konami', + 1993, + array['Martial Champion (ver EAB)'], + array['Arcade'], + '{"mame":["mtlchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mystwarr.cpp"]}'::jsonb + ), + ( + 'martial-masters-xing-yi-quan', + 'Martial Masters / Xing Yi Quan', + 'IGS', + 2001, + array['Martial Masters / Xing Yi Quan (ver. 104, 102, 102US)'], + array['Arcade'], + '{"mame":["martmast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'maru-chan-de-goo-j-971216-v1-000', + 'Maru-Chan de Goo! (J 971216 V1.000)', + 'Sega / Toyosuisan', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["maruchan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'marvel-land', + 'Marvel Land', + 'Namco', + 1989, + array['Marvel Land (Japan)'], + array['Arcade'], + '{"mame":["marvland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'marvel-super-heroes', + 'Marvel Super Heroes', + 'Capcom', + 1995, + array['Marvel Super Heroes (Europe 951024)'], + array['Arcade'], + '{"mame":["msh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'marvel-super-heroes-vs-street-fighter', + 'Marvel Super Heroes Vs. Street Fighter', + 'Capcom', + 1997, + array['Marvel Super Heroes Vs. Street Fighter (Europe 970625)'], + array['Fighting'], + '{"mame":["mshvsf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'marvel-vs-capcom-2-new-age-of-heroes', + 'Marvel Vs. Capcom 2: New Age of Heroes', + 'Capcom / Marvel', + 2000, + array['Marvel Vs. Capcom 2: New Age of Heroes (Export, Korea, Rev A)'], + array['Fighting'], + '{"mame":["mvsc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'marvel-vs-capcom-clash-of-super-heroes', + 'Marvel Vs. Capcom: Clash of Super Heroes', + 'Capcom', + 1998, + array['Marvel Vs. Capcom: Clash of Super Heroes (Europe 980123)'], + array['Fighting'], + '{"mame":["mvsc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'marvin-s-maze', + 'Marvin''s Maze', + 'SNK', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["marvins"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'masked-riders-club-battle-race-kamen-rider-club-battle-racer', + 'Masked Riders Club Battle Race / Kamen Rider Club Battle Racer', + 'Banpresto', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["kamenrid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'maski-show-ukraine-v-43-10', + 'Maski Show (Ukraine V. 43.10)', + 'Extrema', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["maski"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'master-chess-king', + 'Master (Chess King)', + 'Chess King / Intelligent Software', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["master"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chessking/master.cpp"]}'::jsonb + ), + ( + 'master-boy', + 'Master Boy', + 'Gaelco', + 1991, + array['Master Boy (Spain, set 1, checksum E49B)', 'Master Boy (1987, Z80 hardware, Covielsa, set 1)'], + array['Arcade'], + '{"mame":["mastboy","mastboyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/mastboy.cpp","gaelco/mastboyo.cpp"]}'::jsonb + ), + ( + 'master-of-weapon', + 'Master of Weapon', + 'Taito Corporation Japan', + 1989, + array['Master of Weapon (World)'], + array['Arcade'], + '{"mame":["masterw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'master-s-fury', + 'Master''s Fury', + 'Unico', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mastfury"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/drgnmst.cpp"]}'::jsonb + ), + ( + 'master-s-golf', + 'Master''s Golf', + 'Nasco', + 1985, + '{}'::text[], + array['Sports'], + '{"mame":["mastrglf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nasco/crgolf.cpp"]}'::jsonb + ), + ( + 'mat-mania', + 'Mat Mania', + 'Technos Japan (Taito America license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["matmania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/matmania.cpp"]}'::jsonb + ), + ( + 'match-98', + 'Match ''98', + 'Amcoe', + 1998, + array['Match ''98 (ver. 1.33)'], + array['Arcade'], + '{"mame":["match98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'match-games', + 'Match Games', + 'Merit', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mgames"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/mgames.cpp"]}'::jsonb + ), + ( + 'match-it', + 'Match It', + 'Tamtex', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["matchit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m80.cpp"]}'::jsonb + ), + ( + 'match-it-ii', + 'Match It II', + 'Tamtex', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["matchit2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m90.cpp"]}'::jsonb + ), + ( + 'match-em-up-6221-51-u5-1', + 'Match''em Up (6221-51, U5-1)', + 'Merit', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["matchem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'matrimelee-shin-gouketsuji-ichizoku-toukon-ngm-2660-ngh-2660', + 'Matrimelee / Shin Gouketsuji Ichizoku Toukon (NGM-2660 ~ NGH-2660)', + 'Noise Factory / Atlus', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["matrim"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'matrix', + 'Matrix', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["matrix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/matrix.cpp"]}'::jsonb + ), + ( + 'mausuke-no-ojama-the-world-j-960314-v1-000', + 'Mausuke no Ojama the World (J 960314 V1.000)', + 'Data East Corporation', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mausuke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'maverik', + 'Maverik', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["maverik"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'max-rpm', + 'Max RPM', + 'Bally Midway', + 1986, + array['Max RPM (ver 2)'], + array['Arcade'], + '{"mame":["maxrpm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'max-a-flex', + 'Max-A-Flex', + 'Exidy', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["maxaflex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/maxaflex.cpp"]}'::jsonb + ), + ( + 'maxi-dealer', + 'Maxi-Dealer', + 'ACL Manufacturing', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["maxideal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/kingpin.cpp"]}'::jsonb + ), + ( + 'maximum-force-v1-05', + 'Maximum Force v1.05', + 'Atari Games', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["maxforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'maximum-speed', + 'Maximum Speed', + 'SIMS / Sammy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["maxspeed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'maya', + 'Maya', + 'Promat', + 1994, + array['Maya (set 1)'], + array['Arcade'], + '{"mame":["maya"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'mayday', + 'Mayday', + 'Hoei', + 1980, + array['Mayday (set 1)'], + array['Arcade'], + '{"mame":["mayday"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'mayhem-2002', + 'Mayhem 2002', + 'Cinematronics', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mayhem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'mayjinsen', + 'Mayjinsen', + 'Seta', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mayjinsn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'mayjinsen-2', + 'Mayjinsen 2', + 'Seta', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mayjisn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'mayjinsen-3', + 'Mayjinsen 3', + 'Seta / Able Corporation', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mayjin3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'mayo-no-21', + 'Mayo no 21', + 'Chang Yu Electronic', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["changyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/changyu.cpp"]}'::jsonb + ), + ( + 'mazan-flash-of-the-blade', + 'Mazan: Flash of the Blade', + 'Namco', + 2002, + array['Mazan: Flash of the Blade (World, MAZ2 Ver.A)'], + array['Arcade'], + '{"mame":["mazan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'maze-invaders', + 'Maze Invaders', + 'Atari', + 1981, + array['Maze Invaders (prototype)'], + array['Arcade'], + '{"mame":["mazeinv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/centiped.cpp"]}'::jsonb + ), + ( + 'maze-of-flott', + 'Maze of Flott', + 'Taito Corporation', + 1989, + array['Maze of Flott (Japan)'], + array['Arcade'], + '{"mame":["mofflott"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'mazer-blazer', + 'Mazer Blazer', + 'Stern Electronics', + 1983, + array['Mazer Blazer (set 1)'], + array['Arcade'], + '{"mame":["mazerbla"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/mazerbla.cpp"]}'::jsonb + ), + ( + 'mazin-wars-mazin-saga-mega-play', + 'Mazin Wars / Mazin Saga (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_mazin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'mazinger-z', + 'Mazinger Z', + 'Banpresto / Dynamic Pl. Toei Animation', + 1994, + array['Mazinger Z (World)'], + array['Arcade'], + '{"mame":["mazinger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'mb-s1', + 'MB-S1', + 'Hitachi', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mbs1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hitachi/mbs1.cpp"]}'::jsonb + ), + ( + 'mbc-200', + 'MBC-200', + 'Sanyo', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mbc200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanyo/mbc200.cpp"]}'::jsonb + ), + ( + 'mbc-55x', + 'MBC-55x', + 'Sanyo', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mbc55x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanyo/mbc55x.cpp"]}'::jsonb + ), + ( + 'mbc020-65-cpu-video-board-torque-systems-oem', + 'MBC020-65 CPU/Video Board (Torque Systems OEM)', + 'Sym Systems / Torque Systems', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mbc020"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["synertek/mbc020.cpp"]}'::jsonb + ), + ( + 'mc-1000', + 'MC-1000', + 'CCE', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mc1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cce/mc1000.cpp"]}'::jsonb + ), + ( + 'mc-68000-computer', + 'mc-68000-Computer', + 'mc / Franzis Verlag', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mc68000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mc/mc68000.cpp"]}'::jsonb + ), + ( + 'mc-80-21-22', + 'MC-80.21/22', + 'VEB Elektronik Gera', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc8020"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/mc8020.cpp"]}'::jsonb + ), + ( + 'mc-80-30-31', + 'MC-80.30/31', + 'VEB Elektronik Gera', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc8030"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/mc8030.cpp"]}'::jsonb + ), + ( + 'mc-cp-m-computer', + 'mc-CP/M-Computer', + 'GRAF Elektronik Systeme GmbH', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mccpm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mc/mccpm.cpp"]}'::jsonb + ), + ( + 'mc68705p5-programmer', + 'MC68705P5 Programmer', + 'Motorola', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["705p5prg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/m68705prg.cpp"]}'::jsonb + ), + ( + 'mc7105', + 'MC7105', + 'Elektronika', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mc7105"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt240.cpp"]}'::jsonb + ), + ( + 'mcb-216', + 'MCB-216', + 'Cromemco', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["mcb216"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cromemco/mcb216.cpp"]}'::jsonb + ), + ( + 'mcm-70', + 'MCM/70', + 'Micro Computer Machines', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["mcm70"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mcm70.cpp"]}'::jsonb + ), + ( + 'mcs-basic-52', + 'MCS BASIC 52', + 'Intel', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["basic52"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/basic52.cpp"]}'::jsonb + ), + ( + 'mcs-powerview-10', + 'MCS PowerView 10', + 'Compugraphic', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pwrview"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["compugraphic/pwrview.cpp"]}'::jsonb + ), + ( + 'mcs-51-system-design-kit', + 'MCS-51 System Design Kit', + 'Intel', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["sdk51"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/sdk51.cpp"]}'::jsonb + ), + ( + 'mcs-85-system-design-kit', + 'MCS-85 System Design Kit', + 'Intel', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["sdk85"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/sdk85.cpp"]}'::jsonb + ), + ( + 'mcs-86-system-design-kit', + 'MCS-86 System Design Kit', + 'Intel', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sdk86"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/sdk86.cpp"]}'::jsonb + ), + ( + 'meadows-4-in-1', + 'Meadows 4 in 1', + 'Meadows', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["mead4in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadwttl.cpp"]}'::jsonb + ), + ( + 'meadows-lanes', + 'Meadows Lanes', + 'Meadows Games, Inc.', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["medlanes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/lazercmd.cpp"]}'::jsonb + ), + ( + 'mechanized-attack', + 'Mechanized Attack', + 'SNK', + 1989, + array['Mechanized Attack (World)'], + array['Arcade'], + '{"mame":["mechatt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/mechatt.cpp"]}'::jsonb + ), + ( + 'mega-blast', + 'Mega Blast', + 'Taito Corporation Japan', + 1989, + array['Mega Blast (World)'], + array['Arcade'], + '{"mame":["megablst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'mega-bonus-star-ii-euro-millennium-edition', + 'Mega Bonus Star II (Euro, Millennium Edition)', + 'Auto-Data Graz', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["mbs2euro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'mega-card', + 'Mega Card', + 'Fun World', + 1993, + array['Mega Card (Ver.0210, encrypted)'], + array['Arcade'], + '{"mame":["megacard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'mega-double-strip', + 'Mega Double Strip', + 'Blitz Systems Inc.', + 1992, + array['Mega Double Strip (Ver. 1.10b)'], + array['Arcade'], + '{"mame":["megastrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'mega-duck-cougar-boy', + 'Mega Duck / Cougar Boy', + 'Welback Holdings (Timlex International) / Creatronic / Videojet / Cougar USA', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["megaduck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gb.cpp"]}'::jsonb + ), + ( + 'mega-katok-2', + 'Mega Katok 2', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["megakat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'mega-lines-wing-w-7-system', + 'Mega Lines (Wing W-7 System)', + 'Fun World', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["megaline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'mega-man-2-the-power-fighters', + 'Mega Man 2: The Power Fighters', + 'Capcom', + 1996, + array['Mega Man 2: The Power Fighters (USA 960708)'], + array['Arcade'], + '{"mame":["megaman2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'mega-man-iii-playchoice-10', + 'Mega Man III (PlayChoice-10)', + 'Capcom USA (Nintendo of America license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_mman3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'mega-man-the-power-battle', + 'Mega Man: The Power Battle', + 'Capcom', + 1995, + array['Mega Man: The Power Battle (CPS1, USA 951006)'], + array['Arcade'], + '{"mame":["megaman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'mega-phoenix', + 'Mega Phoenix', + 'Dinamic / Inder', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["megaphx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/megaphx.cpp"]}'::jsonb + ), + ( + 'mega-turbo-2', + 'Mega Turbo 2', + 'Premier Technology', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["megaturbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/megaturbo.cpp"]}'::jsonb + ), + ( + 'mega-twins', + 'Mega Twins', + 'Capcom', + 1990, + array['Mega Twins (World 900619)'], + array['Arcade'], + '{"mame":["mtwins"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'mega-zone', + 'Mega Zone', + 'Konami', + 1983, + array['Mega Zone (version L)'], + array['Arcade'], + '{"mame":["megazone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/megazone.cpp"]}'::jsonb + ), + ( + 'mega-tech', + 'Mega-Tech', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["megatech"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'megadon', + 'Megadon', + 'Epos Corporation (Photar Industries license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["megadon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'megapad-31-in-1', + 'Megapad 31-in-1', + 'Waixing', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["megapad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'megatack', + 'Megatack', + 'Centuri (Game Plan license)', + 1980, + array['Megatack (set 1)'], + array['Arcade'], + '{"mame":["megatack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/killcom.cpp"]}'::jsonb + ), + ( + 'megatouch-5', + 'Megatouch 5', + 'Merit', + 1997, + array['Megatouch 5 (9255-60-01 R0I, Standard version)'], + array['Arcade'], + '{"mame":["megat5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'megatouch-6', + 'Megatouch 6', + 'Merit', + 1998, + array['Megatouch 6 (9255-80-01 R0A, Standard version)'], + array['Arcade'], + '{"mame":["megat6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'megatouch-7-encore-edition', + 'Megatouch 7 Encore Edition', + 'Merit', + 2000, + array['Megatouch 7 Encore Edition (9255-90-01 R00, Standard version)'], + array['Arcade'], + '{"mame":["megat7e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'megatouch-iii', + 'Megatouch III', + 'Merit', + 1996, + array['Megatouch III (9255-20-01 R0N, Standard version)'], + array['Arcade'], + '{"mame":["megat3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'megatouch-iv', + 'Megatouch IV', + 'Merit', + 1996, + array['Megatouch IV (9255-40-01 R0E, Standard version)'], + array['Arcade'], + '{"mame":["megat4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'megatouch-xl', + 'MegaTouch XL', + 'Merit Industries', + 1997, + array['MegaTouch XL (Version R1, prototype?)'], + array['Arcade'], + '{"mame":["mtouchxl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/mtouchxl.cpp"]}'::jsonb + ), + ( + 'megatouch-xl-6000', + 'MegaTouch XL 6000', + 'Merit Industries', + 1999, + array['MegaTouch XL 6000 (Version r07)'], + array['Arcade'], + '{"mame":["mtchxl6k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/mtouchxl.cpp"]}'::jsonb + ), + ( + 'megatouch-xl-gold', + 'MegaTouch XL Gold', + 'Merit Industries', + 2000, + array['MegaTouch XL Gold (Version r01)'], + array['Arcade'], + '{"mame":["mtchxlgld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/mtouchxl.cpp"]}'::jsonb + ), + ( + 'megatouch-xl-super-5000', + 'MegaTouch XL Super 5000', + 'Merit Industries', + 1998, + array['MegaTouch XL Super 5000 (Version R5I)'], + array['Arcade'], + '{"mame":["mtchxl5k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/mtouchxl.cpp"]}'::jsonb + ), + ( + 'megatouch-xl-titanium', + 'MegaTouch XL Titanium', + 'bootleg', + 2002, + array['MegaTouch XL Titanium (Version r0?, cracked)'], + array['Arcade'], + '{"mame":["mtchxlti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/mtouchxl.cpp"]}'::jsonb + ), + ( + 'megumi-rescue', + 'Megumi Rescue', + 'Sega / Exa', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["megrescu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'meijinsen', + 'Meijinsen', + 'SNK', + 1986, + array['Meijinsen (set 1)'], + array['Arcade'], + '{"mame":["meijinsn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/meijinsn.cpp"]}'::jsonb + ), + ( + 'meikyu-jima', + 'Meikyu Jima', + 'Irem', + 1988, + array['Meikyu Jima (Japan)'], + array['Arcade'], + '{"mame":["kikcubic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/vigilant.cpp"]}'::jsonb + ), + ( + 'meikyuu-hunter-g', + 'Meikyuu Hunter G', + 'Data East Corporation', + 1987, + array['Meikyuu Hunter G (Japan)'], + array['Arcade'], + '{"mame":["meikyuh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'mek6800d1', + 'MEK6800D1', + 'Motorola', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["mekd1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/mekd1.cpp"]}'::jsonb + ), + ( + 'mek6800d2', + 'MEK6800D2', + 'Motorola', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["mekd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/mekd2.cpp"]}'::jsonb + ), + ( + 'mek6802d3', + 'MEK6802D3', + 'Motorola', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["mekd3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/mekd3.cpp"]}'::jsonb + ), + ( + 'mek6802d4', + 'MEK6802D4', + 'Motorola', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["mekd4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/mekd4.cpp"]}'::jsonb + ), + ( + 'mek6802d5', + 'MEK6802D5', + 'Motorola', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["mekd5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/mekd5.cpp"]}'::jsonb + ), + ( + 'melty-blood-act-cadenza-ver-a-gdl-0028c', + 'Melty Blood Act Cadenza Ver. A (GDL-0028C)', + 'Ecole Software', + 2005, + array['Melty Blood Act Cadenza Ver. A (Japan) (GDL-0028C)'], + array['Arcade'], + '{"mame":["meltybld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'melty-blood-act-cadenza-version-b2-gdl-0039a', + 'Melty Blood Act Cadenza Version B2 (GDL-0039A)', + 'Ecole Software', + 2006, + array['Melty Blood Act Cadenza Version B2 (Japan) (GDL-0039A)'], + array['Arcade'], + '{"mame":["meltyb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'melty-blood-actress-again-version-a', + 'Melty Blood Actress Again Version A', + 'Type-Moon / Ecole', + 2008, + array['Melty Blood Actress Again Version A (Japan, Rev A)'], + array['Arcade'], + '{"mame":["mbaa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'memorymoog', + 'Memorymoog', + 'Moog Music', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["memorymoog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["moog/memorymoog.cpp"]}'::jsonb + ), + ( + 'meng-hong-lou', + 'Meng Hong Lou', + 'Sealy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["menghong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/menghong.cpp"]}'::jsonb + ), + ( + 'mentor-16', + 'Mentor 16', + 'Novag Industries / Intelligent Heuristic Programming', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mentor16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/mentor16.cpp"]}'::jsonb + ), + ( + 'meosis-magic', + 'Meosis Magic', + 'Sammy', + null, + array['Meosis Magic (Japan)'], + array['Arcade'], + '{"mame":["meosism"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'mephisto', + 'Mephisto', + 'Hegener + Glaser', + 1980, + array['Mephisto (set 1)'], + array['Arcade'], + '{"mame":["mephisto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/brikett.cpp"]}'::jsonb + ), + ( + 'mephisto-1x', + 'Mephisto 1X', + 'Hegener + Glaser', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mephisto1x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/brikett.cpp"]}'::jsonb + ), + ( + 'mephisto-academy-english-04-10-88', + 'Mephisto Academy (English, 04-10-88)', + 'Hegener + Glaser', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["academy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/academy.cpp"]}'::jsonb + ), + ( + 'mephisto-almeria-32-bit-v0-12', + 'Mephisto Almeria 32 Bit (v0.12?)', + 'Hegener + Glaser', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["alm32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modular.cpp"]}'::jsonb + ), + ( + 'mephisto-amsterdam', + 'Mephisto Amsterdam', + 'Hegener + Glaser', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["amsterd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/amsterdam.cpp"]}'::jsonb + ), + ( + 'mephisto-berlin-68000-v0-03', + 'Mephisto Berlin 68000 (v0.03)', + 'Hegener + Glaser', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["berl16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/berlin.cpp"]}'::jsonb + ), + ( + 'mephisto-berlin-professional-68020', + 'Mephisto Berlin Professional 68020', + 'Hegener + Glaser', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["berlinp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/berlin.cpp"]}'::jsonb + ), + ( + 'mephisto-blitz-und-probleml-sungs-modul', + 'Mephisto Blitz- und Problemlösungs-Modul', + 'Hegener + Glaser', + 1985, + array['Mephisto Blitz- und Problemlösungs-Modul (set 1)'], + array['Arcade'], + '{"mame":["bup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-dallas-68020', + 'Mephisto Dallas 68020', + 'Hegener + Glaser', + 1986, + array['Mephisto Dallas 68020 (set 1)'], + array['Arcade'], + '{"mame":["dallas32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/amsterdam.cpp"]}'::jsonb + ), + ( + 'mephisto-esb-ii-esb-6000-board', + 'Mephisto ESB II (ESB 6000 board)', + 'Hegener + Glaser', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mephistoe2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/brikett.cpp"]}'::jsonb + ), + ( + 'mephisto-europa', + 'Mephisto Europa', + 'Hegener + Glaser', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["europa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/europa.cpp"]}'::jsonb + ), + ( + 'mephisto-excalibur', + 'Mephisto Excalibur', + 'Hegener + Glaser', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["excal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/excalibur.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.008.sql b/supabase/seed-data/mame-game-catalog.generated.008.sql new file mode 100644 index 0000000..c8275d0 --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.008.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'mephisto-genius-68030-v4-01', + 'Mephisto Genius 68030 (v4.01)', + 'Hegener + Glaser', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["gen32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modular.cpp"]}'::jsonb + ), + ( + 'mephisto-ii', + 'Mephisto II', + 'Hegener + Glaser', + 1981, + array['Mephisto II (set 1)'], + array['Arcade'], + '{"mame":["mephisto2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/brikett.cpp"]}'::jsonb + ), + ( + 'mephisto-iii', + 'Mephisto III', + 'Hegener + Glaser', + 1983, + array['Mephisto III (set 1)'], + array['Arcade'], + '{"mame":["mephisto3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/brikett.cpp"]}'::jsonb + ), + ( + 'mephisto-iii-s-glasgow', + 'Mephisto III-S Glasgow', + 'Hegener + Glaser', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["glasgow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/glasgow.cpp"]}'::jsonb + ), + ( + 'mephisto-junior', + 'Mephisto Junior', + 'Hegener + Glaser', + 1982, + array['Mephisto Junior (1982 version)'], + array['Arcade'], + '{"mame":["mephistoj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/brikett.cpp"]}'::jsonb + ), + ( + 'mephisto-london-32-bit', + 'Mephisto London 32 Bit', + 'Richard Lang', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["lond32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modular.cpp"]}'::jsonb + ), + ( + 'mephisto-lyon-32-bit-v2-07', + 'Mephisto Lyon 32 Bit (v2.07)', + 'Hegener + Glaser', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["lyon32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modular.cpp"]}'::jsonb + ), + ( + 'mephisto-mega-iv', + 'Mephisto Mega IV', + 'Hegener + Glaser', + 1988, + array['Mephisto Mega IV (set 1)'], + array['Arcade'], + '{"mame":["mega4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/smondial.cpp"]}'::jsonb + ), + ( + 'mephisto-milano-v1-02', + 'Mephisto Milano (v1.02)', + 'Hegener + Glaser', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["milano"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/milano.cpp"]}'::jsonb + ), + ( + 'mephisto-mirage', + 'Mephisto Mirage', + 'Hegener + Glaser', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mmirage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm1.cpp"]}'::jsonb + ), + ( + 'mephisto-mm-i', + 'Mephisto MM I', + 'Hegener + Glaser', + 1983, + array['Mephisto MM I (ver. B)'], + array['Arcade'], + '{"mame":["mm1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm1.cpp"]}'::jsonb + ), + ( + 'mephisto-mm-ii', + 'Mephisto MM II', + 'Hegener + Glaser', + 1985, + array['Mephisto MM II (set 1, v4.00)'], + array['Arcade'], + '{"mame":["mm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-mm-ii-nona-program-doccc-1985-leiden-tm', + 'Mephisto MM II (Nona program, DOCCC 1985 Leiden TM)', + 'Hegener + Glaser', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mm2nona"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-mm-iv-rebel-program-wmccc-1989-portorose-tm', + 'Mephisto MM IV (Rebel program, WMCCC 1989 Portorose TM)', + 'Hegener + Glaser', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mm4rebel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-mm-iv-v7-10', + 'Mephisto MM IV (v7.10)', + 'Hegener + Glaser', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mm4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-mm-v-v5-1', + 'Mephisto MM V (v5.1)', + 'Hegener + Glaser', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mm5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-modena', + 'Mephisto Modena', + 'Hegener + Glaser', + 1992, + array['Mephisto Modena (set 1)'], + array['Arcade'], + '{"mame":["modena"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modena.cpp"]}'::jsonb + ), + ( + 'mephisto-mondial', + 'Mephisto Mondial', + 'Hegener + Glaser', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mondial"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mondial.cpp"]}'::jsonb + ), + ( + 'mephisto-mondial-68000xl', + 'Mephisto Mondial 68000XL', + 'Hegener + Glaser', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mondl68k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mondial68k.cpp"]}'::jsonb + ), + ( + 'mephisto-mondial-ii', + 'Mephisto Mondial II', + 'Hegener + Glaser', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mondial2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mondial2.cpp"]}'::jsonb + ), + ( + 'mephisto-monte-carlo', + 'Mephisto Monte Carlo', + 'Hegener + Glaser', + 1987, + array['Mephisto Monte Carlo (ver. MC3)'], + array['Arcade'], + '{"mame":["montec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/montec.cpp"]}'::jsonb + ), + ( + 'mephisto-monte-carlo-iv', + 'Mephisto Monte Carlo IV', + 'Hegener + Glaser', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["montec4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/montec.cpp"]}'::jsonb + ), + ( + 'mephisto-montreal-68000', + 'Mephisto Montreal 68000', + 'Hegener + Glaser', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["montreal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/roma2.cpp"]}'::jsonb + ), + ( + 'mephisto-nigel-short', + 'Mephisto Nigel Short', + 'Hegener + Glaser', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["nshort"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/milano.cpp"]}'::jsonb + ), + ( + 'mephisto-polgar-v1-50', + 'Mephisto Polgar (v1.50)', + 'Hegener + Glaser', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["polgar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/polgar.cpp"]}'::jsonb + ), + ( + 'mephisto-portorose-32-bit-v1-04', + 'Mephisto Portorose 32 Bit (v1.04)', + 'Hegener + Glaser', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["port32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modular.cpp"]}'::jsonb + ), + ( + 'mephisto-rebell-5-0', + 'Mephisto Rebell 5,0', + 'Hegener + Glaser', + 1986, + array['Mephisto Rebell 5,0 (set 1)'], + array['Arcade'], + '{"mame":["rebel5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-risc-1mb-v1-2', + 'Mephisto Risc 1MB (v1.2)', + 'Hegener + Glaser / Tasc', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["mrisc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/risc.cpp"]}'::jsonb + ), + ( + 'mephisto-risc-ii', + 'Mephisto Risc II', + 'Hegener + Glaser / Tasc', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mrisc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/risc.cpp"]}'::jsonb + ), + ( + 'mephisto-roma-68020', + 'Mephisto Roma 68020', + 'Hegener + Glaser', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["roma32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/amsterdam.cpp"]}'::jsonb + ), + ( + 'mephisto-roma-ii', + 'Mephisto Roma II', + 'Hegener + Glaser', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["roma2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/roma2.cpp"]}'::jsonb + ), + ( + 'mephisto-super-mondial', + 'Mephisto Super Mondial', + 'Hegener + Glaser', + 1986, + array['Mephisto Super Mondial (ver. A)'], + array['Arcade'], + '{"mame":["smondial"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/smondial.cpp"]}'::jsonb + ), + ( + 'mephisto-super-mondial-ii', + 'Mephisto Super Mondial II', + 'Hegener + Glaser', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["smondial2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/smondial.cpp"]}'::jsonb + ), + ( + 'mephisto-vancouver-32-bit', + 'Mephisto Vancouver 32 Bit', + 'Hegener + Glaser', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["van32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modular.cpp"]}'::jsonb + ), + ( + 'mera-79152-pc', + 'MERA 79152 PC', + 'Mera-Elzab', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["m79152pc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mera/m79152pc.cpp"]}'::jsonb + ), + ( + 'mercs', + 'Mercs', + 'Capcom', + 1990, + array['Mercs (World 900302)'], + array['Arcade'], + '{"mame":["mercs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'merkur-service-testger-t', + 'Merkur Service Testgerät', + 'ADP', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["servicet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/servicetastatur.cpp"]}'::jsonb + ), + ( + 'merlin-s-money-maze', + 'Merlin''s Money Maze', + 'Zilec-Zenitone', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["merlinmm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/pingpong.cpp"]}'::jsonb + ), + ( + 'mermaid', + 'Mermaid', + 'Sanritsu / Rock-Ola', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mermaid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/mermaid.cpp"]}'::jsonb + ), + ( + 'merry-circus', + 'Merry Circus', + 'Amcoe', + 2009, + array['Merry Circus (Version 1.0.2)'], + array['Arcade'], + '{"mame":["mcircus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'meta-fox', + 'Meta Fox', + 'Jordan I.S. / Seta', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["metafox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'metabee-shot', + 'Metabee Shot', + 'Natsume / Banpresto', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["metabee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'metal-black', + 'Metal Black', + 'Taito Corporation Japan', + 1991, + array['Metal Black (World)'], + array['Arcade'], + '{"mame":["metalb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'metal-clash', + 'Metal Clash', + 'Data East Corporation', + 1985, + array['Metal Clash (Japan)'], + array['Arcade'], + '{"mame":["metlclsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/metlclsh.cpp"]}'::jsonb + ), + ( + 'metal-freezer', + 'Metal Freezer', + 'Seibu Kaihatsu', + 1989, + array['Metal Freezer (Japan)'], + array['Arcade'], + '{"mame":["metlfrzr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/metlfrzr.cpp"]}'::jsonb + ), + ( + 'metal-hawk', + 'Metal Hawk', + 'Namco', + 1988, + array['Metal Hawk (Rev C)'], + array['Arcade'], + '{"mame":["metlhawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'metal-maniax', + 'Metal Maniax', + 'Atari Games', + 1994, + array['Metal Maniax (prototype)'], + array['Arcade'], + '{"mame":["metalmx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/metalmx.cpp"]}'::jsonb + ), + ( + 'metal-saver', + 'Metal Saver', + 'First Amusement', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["metlsavr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'metal-slug-super-vehicle-001', + 'Metal Slug - Super Vehicle-001', + 'Nazca', + 1996, + '{}'::text[], + array['Shooter'], + '{"mame":["mslug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'metal-slug-2-super-vehicle-001-ii-ngm-2410-ngh-2410', + 'Metal Slug 2 - Super Vehicle-001/II (NGM-2410 ~ NGH-2410)', + 'SNK', + 1998, + '{}'::text[], + array['Shooter'], + '{"mame":["mslug2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'metal-slug-3-ngm-2560', + 'Metal Slug 3 (NGM-2560)', + 'SNK', + 2000, + '{}'::text[], + array['Shooter'], + '{"mame":["mslug3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'metal-slug-4-ngm-2630', + 'Metal Slug 4 (NGM-2630)', + 'Mega / Noise Factory / Playmore', + 2002, + '{}'::text[], + array['Shooter'], + '{"mame":["mslug4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'metal-slug-5-jamma-pcb', + 'Metal Slug 5 (JAMMA PCB)', + 'SNK Playmore', + 2003, + '{}'::text[], + array['Shooter'], + '{"mame":["ms5pcb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neopcb.cpp"]}'::jsonb + ), + ( + 'metal-slug-5-ngm-2680', + 'Metal Slug 5 (NGM-2680)', + 'SNK Playmore', + 2003, + '{}'::text[], + array['Shooter'], + '{"mame":["mslug5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'metal-slug-6', + 'Metal Slug 6', + 'Sega / SNK Playmore', + 2006, + '{}'::text[], + array['Shooter'], + '{"mame":["mslug6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'metal-slug-x-super-vehicle-001-ngm-2500-ngh-2500', + 'Metal Slug X - Super Vehicle-001 (NGM-2500 ~ NGH-2500)', + 'SNK', + 1999, + '{}'::text[], + array['Shooter'], + '{"mame":["mslugx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'metal-soldier-isaac-ii', + 'Metal Soldier Isaac II', + 'Taito Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["msisaac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/msisaac.cpp"]}'::jsonb + ), + ( + 'metamoqester', + 'Metamoqester', + 'Banpresto / Pandorabox', + 1995, + array['Metamoqester (World)'], + array['Arcade'], + '{"mame":["metmqstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'metamorphic-force', + 'Metamorphic Force', + 'Konami', + 1993, + array['Metamorphic Force (ver EAA)'], + array['Arcade'], + '{"mame":["metamrph"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mystwarr.cpp"]}'::jsonb + ), + ( + 'metro-cross', + 'Metro-Cross', + 'Namco', + 1985, + array['Metro-Cross (set 1)'], + array['Arcade'], + '{"mame":["metrocrs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/baraduke.cpp"]}'::jsonb + ), + ( + 'metroid-playchoice-10', + 'Metroid (PlayChoice-10)', + 'Nintendo', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_mtoid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'mg-1', + 'MG-1', + 'Whitechapel Computer Works', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mg1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mg1/mg1.cpp"]}'::jsonb + ), + ( + 'michael-jackson-s-moonwalker-fd1094-8751-317-0159', + 'Michael Jackson''s Moonwalker (FD1094/8751 317-0159)', + 'Sega', + 1990, + array['Michael Jackson''s Moonwalker (World) (FD1094/8751 317-0159)'], + array['Arcade'], + '{"mame":["mwalk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'michael-jackson-s-moonwalker-mega-tech', + 'Michael Jackson''s Moonwalker (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_mwalk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'michigan-super-draw-2131-16-u5-2', + 'Michigan Super Draw (2131-16, U5-2)', + 'Big Apple Games / Merit', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["misdraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'micon-kit-part-ii', + 'Micon-Kit Part II', + 'SNK', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["micon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/miconkit.cpp"]}'::jsonb + ), + ( + 'micro-arcade-250-in-1', + 'Micro Arcade 250-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["micac250"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'micro-chess', + 'Micro Chess', + 'Novag Industries', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["nmicro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/micro.cpp"]}'::jsonb + ), + ( + 'micro-chroma-68', + 'Micro Chroma 68', + 'Motorola', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["uchroma68"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/uchroma68.cpp"]}'::jsonb + ), + ( + 'micro-decision-md-2', + 'Micro Decision MD-2', + 'Morrow Designs', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["md2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["morrow/microdec.cpp"]}'::jsonb + ), + ( + 'micro-ii-novag', + 'Micro II (Novag)', + 'Novag Industries / Heuristic Software', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["nmicro2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/micro2.cpp"]}'::jsonb + ), + ( + 'micro-professor-1', + 'Micro-Professor 1', + 'Multitech', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mpf1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["multitech/mpf1.cpp"]}'::jsonb + ), + ( + 'micro-professor-1-plus', + 'Micro-Professor 1 Plus', + 'Multitech', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mpf1p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["multitech/mpf1p.cpp"]}'::jsonb + ), + ( + 'micro-professor-i-88', + 'Micro-Professor I/88', + 'Multitech', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mpf1_88"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["multitech/mpf1_88.cpp"]}'::jsonb + ), + ( + 'micro-term-420', + 'Micro-Term 420', + 'Micro-Term', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["mt420"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microterm/mt420.cpp"]}'::jsonb + ), + ( + 'micro-term-440', + 'Micro-Term 440', + 'Micro-Term', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["mt440"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microterm/mt440.cpp"]}'::jsonb + ), + ( + 'microbee-16k-standard', + 'Microbee 16k Standard', + 'Applied Technology', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mbee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/mbee.cpp"]}'::jsonb + ), + ( + 'microbox-ii', + 'Microbox II', + 'Micro Concepts', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["microbx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/microbox2.cpp"]}'::jsonb + ), + ( + 'microkit09', + 'Microkit09', + 'Multitech', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mkit09"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["multitech/mkit09.cpp"]}'::jsonb + ), + ( + 'microkorg-synthesizer-vocoder', + 'microKORG Synthesizer/Vocoder', + 'Korg', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["microkorg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/microkorg.cpp"]}'::jsonb + ), + ( + 'microman-battle-charge-j-990326-v1-000', + 'Microman Battle Charge (J 990326 V1.000)', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["micrombc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'microtan-65', + 'Microtan 65', + 'Tangerine', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["mt65"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tangerine/microtan.cpp"]}'::jsonb + ), + ( + 'microterm-5510', + 'Microterm 5510', + 'Microterm', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mt5510"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microterm/mt5510.cpp"]}'::jsonb + ), + ( + 'microvax-3100-model-10', + 'MicroVAX 3100 Model 10', + 'Digital Equipment Corporation', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mv3100m10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/uvax3100.cpp"]}'::jsonb + ), + ( + 'microvax-3400', + 'MicroVAX 3400', + 'Digital Equipment Corporation', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mv3400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/uvax3.cpp"]}'::jsonb + ), + ( + 'microvax-3500', + 'MicroVAX 3500', + 'Digital Equipment Corporation', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mv3500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/uvax3.cpp"]}'::jsonb + ), + ( + 'microvax-i', + 'MicroVAX I', + 'Digital Equipment Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["uvax1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/uvax1.cpp"]}'::jsonb + ), + ( + 'microvax-ii', + 'MicroVAX II', + 'Digital Equipment Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["uvax2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/uvax2.cpp"]}'::jsonb + ), + ( + 'microvision', + 'Microvision', + 'Milton Bradley', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["microvsn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["miltonbradley/microvsn.cpp"]}'::jsonb + ), + ( + 'midcoin-juke-box-24cd', + 'Midcoin Juke Box 24CD', + 'Midcoin', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["24cdjuke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midcoin/24cdjuke.cpp"]}'::jsonb + ), + ( + 'midi2cv8', + 'midi2cv8', + 'PAiA Electronics', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["midi2cv8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["paia/midi2cv8.cpp"]}'::jsonb + ), + ( + 'midi2cv8-v-hz', + 'midi2cv8 V/Hz', + 'PAiA Electronics', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["midi2cv8_vhz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["paia/midi2cv8.cpp"]}'::jsonb + ), + ( + 'midnight-landing-germany', + 'Midnight Landing (Germany)', + 'Taito America Corporation', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mlanding"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/mlanding.cpp"]}'::jsonb + ), + ( + 'midnight-resistance', + 'Midnight Resistance', + 'Data East Corporation', + 1989, + array['Midnight Resistance (World, set 1)'], + array['Arcade'], + '{"mame":["midres"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'midnight-run-road-fighter-2-eaa-euro-v1-11', + 'Midnight Run: Road Fighter 2 (EAA, Euro v1.11)', + 'Konami', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["midnrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/zr107.cpp"]}'::jsonb + ), + ( + 'mighty-guy', + 'Mighty Guy', + 'Nichibutsu', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["mightguy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cop01.cpp"]}'::jsonb + ), + ( + 'mighty-monkey', + 'Mighty Monkey', + 'Universal Video Games', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mimonkey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'mighty-warriors-24-1', + 'Mighty Warriors (24/1)', + 'Elettronica Video-Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mwarr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/mwarr.cpp"]}'::jsonb + ), + ( + 'mighty-pang', + 'Mighty! Pang', + 'Mitchell (Capcom license)', + 2000, + array['Mighty! Pang (Europe 001010)'], + array['Arcade'], + '{"mame":["mpang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'mike-tyson-s-punch-out-playchoice-10', + 'Mike Tyson''s Punch-Out!! (PlayChoice-10)', + 'Nintendo', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_miket"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'mikie', + 'Mikie', + 'Konami', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mikie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mikie.cpp"]}'::jsonb + ), + ( + 'mille-miglia-2-great-1000-miles-rally-95-05-24', + 'Mille Miglia 2: Great 1000 Miles Rally (95/05/24)', + 'Kaneko', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["gtmr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'millennium-nuovo-4000', + 'Millennium Nuovo 4000', + 'Sure Milano', + 2000, + array['Millennium Nuovo 4000 (Version 2.0)'], + array['Arcade'], + '{"mame":["mil4000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mil4000.cpp"]}'::jsonb + ), + ( + 'millennium-sun', + 'Millennium Sun', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["millsun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'millipede', + 'Millipede', + 'Atari', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["milliped"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/centiped.cpp"]}'::jsonb + ), + ( + 'minasan-no-okagesamadesu-dai-sugoroku-taikai-mom-001-moh-001', + 'Minasan no Okagesamadesu! Dai Sugoroku Taikai (MOM-001 ~ MOH-001)', + 'Monolith Corp.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["minasan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'mindset-personal-computer', + 'Mindset Personal Computer', + 'Mindset Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mindset"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mindset.cpp"]}'::jsonb + ), + ( + 'minefield', + 'Minefield', + 'Stern Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["minefld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scobra.cpp"]}'::jsonb + ), + ( + 'minesweeper', + 'Minesweeper', + 'Amutech', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["mineswpr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/blockade.cpp"]}'::jsonb + ), + ( + 'ming-xing-100-star-100', + 'Ming Xing 100 (Star 100)', + 'Sang Ho', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["star100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'mingxing-san-que-yi', + 'Mingxing San Que Yi', + 'IGS', + 2003, + array['Mingxing San Que Yi (China, V201CN)'], + array['Arcade'], + '{"mame":["mxsqy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027_023vid.cpp"]}'::jsonb + ), + ( + 'mini-game-player-48-in-1', + 'Mini Game Player 48-in-1', + 'Jungle''s Soft', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gcs2mgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'mini-golf', + 'Mini Golf', + 'Atari', + 1978, + array['Mini Golf (Atari, prototype)', 'Mini Golf (set 1)'], + array['Sports'], + '{"mame":["mgolf","minigolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/mgolf.cpp","midway/balsente.cpp"]}'::jsonb + ), + ( + 'mini-sensory-chess-challenger', + 'Mini Sensory Chess Challenger', + 'Fidelity Electronics', + 1982, + array['Mini Sensory Chess Challenger (MCS-48 version)'], + array['Arcade'], + '{"mame":["miniscc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc6.cpp"]}'::jsonb + ), + ( + 'mini-vaders', + 'Mini Vaders', + 'Taito Corporation', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["minivadr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/minivadr.cpp"]}'::jsonb + ), + ( + 'mini-vegas-4in1', + 'Mini Vegas 4in1', + 'Entertainment Enterprises, Ltd.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mv4in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ltcasino.cpp"]}'::jsonb + ), + ( + 'mini-boy-7', + 'Mini-Boy 7', + 'Bonanza Enterprises, Ltd', + 1983, + array['Mini-Boy 7 (set 1)'], + array['Arcade'], + '{"mame":["miniboy7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miniboy7.cpp"]}'::jsonb + ), + ( + 'minib-computer', + 'MiniB Computer', + 'Sprow', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["minib"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/minib.cpp"]}'::jsonb + ), + ( + 'minicom-iv-1997-08-11', + 'Minicom IV (1997-08-11)', + 'Ultratec', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["minicom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ultratec/minicom.cpp"]}'::jsonb + ), + ( + 'minicom-iv-2002-04-19', + 'Minicom IV (2002-04-19)', + 'Ultratec', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["mcom4_02"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ultratec/minicom.cpp"]}'::jsonb + ), + ( + 'miniforce', + 'miniFORCE', + 'Force Computers', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["miniforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["force/miniforce.cpp"]}'::jsonb + ), + ( + 'minitel-2-nfz-400', + 'Minitel 2 NFZ 400', + 'Philips', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["minitel2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/minitel_2_rpic.cpp"]}'::jsonb + ), + ( + 'minky-monkey', + 'Minky Monkey', + 'Technos Japan / Roller Tron', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mmonkey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'minna-atsumare-dodge-hero', + 'Minna Atsumare! Dodge Hero', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["dodghero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'minna-de-kitaeru-zenno-training', + 'Minna de Kitaeru Zenno Training', + 'Namco', + 2007, + array['Minna de Kitaeru Zenno Training (Ver. 1.50)'], + array['Arcade'], + '{"mame":["minnadk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'minna-ganbare-dash-hero', + 'Minna Ganbare! Dash Hero', + 'Sigma', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["dashhero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'miracle-derby', + 'Miracle Derby', + 'Home Data / Ascot', + 1988, + array['Miracle Derby (Japan)'], + array['Arcade'], + '{"mame":["mirderby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mirderby.cpp"]}'::jsonb + ), + ( + 'miracle-seven-heaven-s-gate', + 'Miracle Seven - Heaven''s Gate', + 'Excellent System', + 1996, + array['Miracle Seven - Heaven''s Gate (Japan, v1.0.2)'], + array['Arcade'], + '{"mame":["mir7hg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'miracle-seven-heaven-s-gate-turbo', + 'Miracle Seven - Heaven''s Gate Turbo', + 'Excellent System', + 1996, + array['Miracle Seven - Heaven''s Gate Turbo (Japan, v2.0.0)'], + array['Arcade'], + '{"mame":["mir7hgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'mirage-dms-8', + 'Mirage DMS-8', + 'Ensoniq', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["enmirage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/enmirage.cpp"]}'::jsonb + ), + ( + 'mirage-world-satellite', + 'Mirage World (satellite)', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["mirworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'mirage-youjuu-mahjongden', + 'Mirage Youjuu Mahjongden', + 'Mitchell', + 1994, + array['Mirage Youjuu Mahjongden (Japan)'], + array['Arcade'], + '{"mame":["mirage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/mirage.cpp"]}'::jsonb + ), + ( + 'mirai-ninja', + 'Mirai Ninja', + 'Namco', + 1988, + array['Mirai Ninja (Japan, set 1)'], + array['Arcade'], + '{"mame":["mirninja"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'mirax', + 'Mirax', + 'Current Technology, Inc.', + 1985, + array['Mirax (set 1)'], + array['Arcade'], + '{"mame":["mirax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mirax.cpp"]}'::jsonb + ), + ( + 'miss-bubble-ii', + 'Miss Bubble II', + 'Alpha Co.', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["missb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/missb2.cpp"]}'::jsonb + ), + ( + 'miss-puzzle', + 'Miss Puzzle', + 'Min Corp.', + 1994, + '{}'::text[], + array['Puzzle'], + '{"mame":["mspuzzle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gumbo.cpp"]}'::jsonb + ), + ( + 'miss-world-96-nude', + 'Miss World ''96 (Nude)', + 'Comad', + 1996, + array['Miss World ''96 (Nude) (C-3000A PCB, set 1)'], + array['Arcade'], + '{"mame":["missw96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'miss-world-2002', + 'Miss World 2002', + 'Comad', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["missw02"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'missile-command', + 'Missile Command', + 'Atari', + 1980, + array['Missile Command (rev 3, A035467-02/04 PCBs)'], + array['Arcade'], + '{"mame":["missile"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/missile.cpp"]}'::jsonb + ), + ( + 'missile-x', + 'Missile-X', + 'Taito', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["missilex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 'missing-in-action', + 'Missing In Action', + 'Vegas', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["miaction"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'mission-660', + 'Mission 660', + 'Wood Place Co. Ltd. (Taito America Corporation license)', + 1986, + array['Mission 660 (US)'], + array['Arcade'], + '{"mame":["m660"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tsamurai.cpp"]}'::jsonb + ), + ( + 'mission-craft', + 'Mission Craft', + 'Sun', + 2000, + array['Mission Craft (version 2.7)'], + array['Arcade'], + '{"mame":["misncrft"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'mission-x', + 'Mission-X', + 'Data East Corporation', + 1982, + array['Mission-X (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cmissnx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'mister-viking-315-5041', + 'Mister Viking (315-5041)', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mrviking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'miuchiz-bratz-cloe', + 'Miuchiz Bratz Cloe', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcb_cloe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miuchiz-bratz-yasmin', + 'Miuchiz Bratz Yasmin', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcb_yasmin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miuchiz-monsterz-creeper', + 'Miuchiz Monsterz Creeper', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcm_creeper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miuchiz-monsterz-inferno', + 'Miuchiz Monsterz Inferno', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcm_inferno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miuchiz-monsterz-roc', + 'Miuchiz Monsterz Roc', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcm_roc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miuchiz-pawz-dash', + 'Miuchiz Pawz Dash', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcp_dash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miuchiz-pawz-spike', + 'Miuchiz Pawz Spike', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcp_spike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miwi2-16-in-1-drum-master', + 'MiWi2 16-in-1 + Drum Master', + 'Macro Winners', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["miwi2_16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'miwi2-7-in-1-sports', + 'MiWi2 7-in-1 Sports', + 'Macro Winners', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["miwi2_7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam', + 'Mobile Suit Gundam', + 'Banpresto / Allumer', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["msgundam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-0079-card-builder-cdv-10010', + 'Mobile Suit Gundam 0079 Card Builder (CDV-10010)', + 'Banpresto', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gundcb79"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-0083-card-builder-cdv-10030', + 'Mobile Suit Gundam 0083 Card Builder (CDV-10030)', + 'Banpresto', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["gundcb83"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-ex-revue', + 'Mobile Suit Gundam EX Revue', + 'Banpresto', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gundamex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-final-shooting', + 'Mobile Suit Gundam Final Shooting', + 'Banpresto', + 1995, + array['Mobile Suit Gundam Final Shooting (Japan)'], + array['Arcade'], + '{"mame":["gdfs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-federation-vs-zeon', + 'Mobile Suit Gundam: Federation Vs. Zeon', + 'Banpresto / Capcom', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gundmct"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-federation-vs-zeon-gdl-0001', + 'Mobile Suit Gundam: Federation Vs. Zeon (GDL-0001)', + 'Capcom / Banpresto', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gundmgd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-federation-vs-zeon-dx-gdl-0006', + 'Mobile Suit Gundam: Federation Vs. Zeon DX (GDL-0006)', + 'Capcom', + 2001, + array['Mobile Suit Gundam: Federation Vs. Zeon DX (USA, Japan) (GDL-0006)'], + array['Arcade'], + '{"mame":["gundmxgd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mobile-suit-z-gundam-a-e-u-g-vs-titans', + 'Mobile Suit Z-Gundam: A.E.U.G. vs Titans', + 'Capcom / Banpresto', + 2003, + array['Mobile Suit Z-Gundam: A.E.U.G. vs Titans (ZGA1 Ver. A)'], + array['Arcade'], + '{"mame":["zgundm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'mobile-suit-z-gundam-a-e-u-g-vs-titans-dx', + 'Mobile Suit Z-Gundam: A.E.U.G. vs Titans DX', + 'Capcom / Banpresto', + 2004, + array['Mobile Suit Z-Gundam: A.E.U.G. vs Titans DX (ZDX1 Ver. A)'], + array['Arcade'], + '{"mame":["zgundmdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'mocap-boxing', + 'Mocap Boxing', + 'Konami', + 2001, + array['Mocap Boxing (ver AAB)'], + array['Arcade'], + '{"mame":["mocapb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'mocap-golf', + 'Mocap Golf', + 'Konami', + 2001, + array['Mocap Golf (ver EAA:B)'], + array['Sports'], + '{"mame":["mocapglf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'modern-cart', + 'Modern Cart', + 'Subsino', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["modcart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino_kr_h8.cpp"]}'::jsonb + ), + ( + 'moeru-casinyo-gdl-0013', + 'Moeru Casinyo (GDL-0013)', + 'Altron', + 2002, + array['Moeru Casinyo (Japan) (GDL-0013)'], + array['Arcade'], + '{"mame":["moeru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mogis-m320-246-in-1-handheld', + 'MOGIS M320 246 in 1 Handheld', + 'MOGIS', + 2016, + '{}'::text[], + array['Arcade'], + '{"mame":["mog_m320"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'mogu-chan', + 'Mogu Chan', + 'Orca (Eastern Commerce Inc. license)', + 1982, + array['Mogu Chan (bootleg?)'], + array['Arcade'], + '{"mame":["moguchan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/zodiack.cpp"]}'::jsonb + ), + ( + 'mogu-mogu-hammer', + 'Mogu Mogu Hammer', + 'Amuzy Corporation', + 2008, + array['Mogu Mogu Hammer (Japan, ver 1.01)'], + array['Arcade'], + '{"mame":["mmhammer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'mogura-desse', + 'Mogura Desse', + 'Konami', + 1991, + array['Mogura Desse (Japan)'], + array['Arcade'], + '{"mame":["mogura"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mogura.cpp"]}'::jsonb + ), + ( + 'mohican-sun', + 'Mohican Sun', + 'Konami', + null, + array['Mohican Sun (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["mohicans"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'mole-attack', + 'Mole Attack', + 'Yachiyo Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mole"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yachiyo/mole.cpp"]}'::jsonb + ), + ( + 'momoko-120', + 'Momoko 120%', + 'Jaleco', + 1986, + array['Momoko 120% (Japanese text)'], + array['Arcade'], + '{"mame":["momoko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/momoko.cpp"]}'::jsonb + ), + ( + 'monaco-gp', + 'Monaco GP', + 'Sega', + 1980, + array['Monaco GP (set 1)'], + array['Arcade'], + '{"mame":["monacogp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/monacogp.cpp"]}'::jsonb + ), + ( + 'money-in-the-bank', + 'Money In The Bank', + 'Konami', + null, + array['Money In The Bank (NSW, Australia)'], + array['Arcade'], + '{"mame":["moneybnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'money-machine', + 'Money Machine', + 'Amcoe', + 2005, + array['Money Machine (Version 1.7E Dual)'], + array['Arcade'], + '{"mame":["moneymac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'money-money', + 'Money Money', + 'Zaccaria', + 1983, + array['Money Money (set 1)'], + array['Arcade'], + '{"mame":["monymony"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/zaccaria.cpp"]}'::jsonb + ), + ( + 'money-puzzle-exchanger-money-idol-exchanger', + 'Money Puzzle Exchanger / Money Idol Exchanger', + 'Face', + 1997, + '{}'::text[], + array['Puzzle'], + '{"mame":["miexchng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'money-to-burn-english', + 'Money To Burn (English)', + 'WMS', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["mtburn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'mongolfier-new-italian', + 'Mongolfier New (Italian)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mongolnw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'monita-to-rimoko-no-head-on-channel', + 'Monita to Rimoko no Head On Channel', + 'hack', + 1994, + array['Monita to Rimoko no Head On Channel (prototype, hack)'], + array['Arcade'], + '{"mame":["headonch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'monkey-ball-gds-0008', + 'Monkey Ball (GDS-0008)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["monkeyba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'monkey-land', + 'Monkey Land', + 'Astro Corp.', + 2005, + array['Monkey Land (Ver. AA.21.A)'], + array['Arcade'], + '{"mame":["monkeyl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'monkey-magic', + 'Monkey Magic', + 'Nintendo', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["mmagic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/mmagic.cpp"]}'::jsonb + ), + ( + 'monkey-mole-panic', + 'Monkey Mole Panic', + 'Nakanihon / East Technology (Taito license)', + 1992, + array['Monkey Mole Panic (USA)'], + array['Arcade'], + '{"mame":["mmpanic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'monkgomery-monkey', + 'Monkgomery Monkey', + 'Hasbro / Tiger Electronics', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["monkmonk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tiger/bingobear.cpp"]}'::jsonb + ), + ( + 'monkichicchi-no-fuwafuwa-puzzle', + 'Monkichicchi no Fuwafuwa Puzzle', + 'Sunwise', + 1995, + array['Monkichicchi no Fuwafuwa Puzzle (Japan, prototype?)'], + array['Puzzle'], + '{"mame":["monkichi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/sunwise.cpp"]}'::jsonb + ), + ( + 'monomachine-sfx6-mk2', + 'Monomachine SFX6 MK2', + 'Elektron', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["monomach"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektron/elektronmono.cpp"]}'::jsonb + ), + ( + 'monon-color', + 'Monon Color', + 'M&D', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["mononcol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/monon_color.cpp"]}'::jsonb + ), + ( + 'monster-bash', + 'Monster Bash', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["monsterb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80r.cpp"]}'::jsonb + ), + ( + 'monster-maulers', + 'Monster Maulers', + 'Konami', + 1993, + array['Monster Maulers (ver EAA)'], + array['Arcade'], + '{"mame":["mmaulers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mystwarr.cpp"]}'::jsonb + ), + ( + 'monster-slider', + 'Monster Slider', + 'Visco / Datt Japan', + 1997, + array['Monster Slider (Japan)'], + array['Arcade'], + '{"mame":["mslider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'monster-zero', + 'Monster Zero', + 'Nihon Game', + 1982, + array['Monster Zero (set 1)'], + array['Arcade'], + '{"mame":["monsterz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'monsters-world', + 'Monsters World', + 'bootleg (TCH)', + 1994, + array['Monsters World (bootleg of Super Pang)'], + array['Arcade'], + '{"mame":["mstworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'montana-super-draw-4436-05-u5-0', + 'Montana Super Draw (4436-05, U5-0)', + 'Merit', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mosdraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'monte-carlo', + 'Monte Carlo', + 'Atari', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["montecar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/firetrk.cpp"]}'::jsonb + ), + ( + 'monza-gp', + 'Monza GP', + 'Olympia', + 1981, + array['Monza GP (set 1)'], + array['Arcade'], + '{"mame":["monzagp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympia/monzagp.cpp"]}'::jsonb + ), + ( + 'moog-source', + 'Moog Source', + 'Moog Music', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["moogsource"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["moog/source.cpp"]}'::jsonb + ), + ( + 'moon-alien-part-2', + 'Moon Alien Part 2', + 'Namco / Nichibutsu', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["moonal2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'moon-cresta-nichibutsu', + 'Moon Cresta (Nichibutsu)', + 'Nichibutsu', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["mooncrst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'moon-patrol', + 'Moon Patrol', + 'Irem', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mpatrol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m52.cpp"]}'::jsonb + ), + ( + 'moon-quasar', + 'Moon Quasar', + 'Nichibutsu', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["moonqsr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'moon-raker', + 'Moon Raker', + 'Nichibutsu', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["mraker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'moon-shuttle', + 'Moon Shuttle', + 'Nichibutsu', + 1981, + array['Moon Shuttle (US? set 1)'], + array['Arcade'], + '{"mame":["mshuttle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'moon-war', + 'Moon War', + 'Stern Electronics', + 1981, + array['Moon War (prototype on Frenzy hardware)'], + array['Arcade'], + '{"mame":["moonwarp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/berzerk.cpp"]}'::jsonb + ), + ( + 'moonquake', + 'Moonquake', + 'Sente', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mquake"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/mquake.cpp"]}'::jsonb + ), + ( + 'moonwar', + 'Moonwar', + 'Stern Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["moonwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'mortal-kombat', + 'Mortal Kombat', + 'Midway', + 1992, + array['Mortal Kombat (rev 5.0 T-Unit 03/19/93)'], + array['Fighting'], + '{"mame":["mk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midtunit.cpp"]}'::jsonb + ), + ( + 'mortal-kombat-3', + 'Mortal Kombat 3', + 'Midway', + 1994, + array['Mortal Kombat 3 (rev 2.1)', 'Mortal Kombat 3 (scrambled bootleg of Mega Drive version)', 'Mortal Kombat 3 (SNES bootleg with timer)'], + array['Fighting'], + '{"mame":["mk3","mk3mdb","mk3snes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwunit.cpp","sega/megadriv_acbl.cpp","nintendo/snesb51.cpp"]}'::jsonb + ), + ( + 'mortal-kombat-4', + 'Mortal Kombat 4', + 'Midway', + 1997, + array['Mortal Kombat 4 (version 3.0)'], + array['Fighting'], + '{"mame":["mk4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midzeus.cpp"]}'::jsonb + ), + ( + 'mortal-kombat-ii', + 'Mortal Kombat II', + 'Midway', + 1993, + array['Mortal Kombat II (rev L3.1)'], + array['Fighting'], + '{"mame":["mk2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midtunit.cpp"]}'::jsonb + ), + ( + 'mortal-race', + 'Mortal Race', + 'New Dream Games', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["mortalr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/stlforce.cpp"]}'::jsonb + ), + ( + 'mosaic', + 'Mosaic', + 'Space', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mosaic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mosaic.cpp"]}'::jsonb + ), + ( + 'mosaic-f2-system', + 'Mosaic (F2 System)', + 'F2 System', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["mosaicf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/f-32.cpp"]}'::jsonb + ), + ( + 'moto-frenzy', + 'Moto Frenzy', + 'Atari Games', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["motofren"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarigx2.cpp"]}'::jsonb + ), + ( + 'motocross-go', + 'Motocross Go!', + 'Namco', + 1997, + array['Motocross Go! (World, MG3 Ver. A)'], + array['Arcade'], + '{"mame":["motoxgo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'motogp-mgp1004-na-b', + 'MotoGP (MGP1004-NA-B)', + 'Namco', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["motogp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'motor-raid-twin', + 'Motor Raid - Twin', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["motoraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'motorcycle-30-in-1', + 'Motorcycle 30-in-1', + 'WinFun / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["wfmotor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'motos', + 'Motos', + 'Namco', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["motos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'mouja', + 'Mouja', + 'Etona', + 1996, + array['Mouja (Japan)'], + array['Arcade'], + '{"mame":["mouja"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'mouse-attack', + 'Mouse Attack', + 'ICE', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mouseatk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tickee.cpp"]}'::jsonb + ), + ( + 'mouse-de-click-anpanman-color-pc', + 'Mouse de Click Anpanman Color PC', + 'Bandai', + 2012, + array['Mouse de Click Anpanman Color PC (Japan)'], + array['Arcade'], + '{"mame":["anpnvt12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'mouse-shooter-gogo', + 'Mouse Shooter GoGo', + 'Metro', + 1995, + '{}'::text[], + array['Shooter'], + '{"mame":["msgogo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'mouse-trap', + 'Mouse Trap', + 'Exidy', + 1981, + array['Mouse Trap (version 5)'], + array['Arcade'], + '{"mame":["mtrap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'mouser', + 'Mouser', + 'UPL', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mouser"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/mouser.cpp"]}'::jsonb + ), + ( + 'movie-card', + 'Movie Card', + 'Golden Games / C+M Technics AG', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["moviecrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldngam.cpp"]}'::jsonb + ), + ( + 'mpc-2000xl', + 'MPC 2000XL', + 'Akai / Roger Linn', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mpc2000xl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/mpc2000.cpp"]}'::jsonb + ), + ( + 'mpc3000', + 'MPC3000', + 'Akai / Roger Linn', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mpc3000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/mpc3000.cpp"]}'::jsonb + ), + ( + 'mpc60-midi-production-center', + 'MPC60 MIDI Production Center', + 'Akai Electric', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mpc60"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/mpc60.cpp"]}'::jsonb + ), + ( + 'mpz80', + 'MPZ80', + 'Morrow Designs', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["mpz80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["morrow/mpz80.cpp"]}'::jsonb + ), + ( + 'mr-61-workstation', + 'MR-61 Workstation', + 'Ensoniq', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mr61"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqmr.cpp"]}'::jsonb + ), + ( + 'mr-rack', + 'MR-Rack', + 'Ensoniq', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mrrack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqmr.cpp"]}'::jsonb + ), + ( + 'mr-dig', + 'Mr. Dig', + 'Sun', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mrdig"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'mr-do', + 'Mr. Do!', + 'Universal', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mrdo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/mrdo.cpp"]}'::jsonb + ), + ( + 'mr-do-s-castle', + 'Mr. Do''s Castle', + 'Universal', + 1983, + array['Mr. Do''s Castle (set 1)'], + array['Arcade'], + '{"mame":["docastle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/docastle.cpp"]}'::jsonb + ), + ( + 'mr-do-s-wild-ride', + 'Mr. Do''s Wild Ride', + 'Universal', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dowild"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/docastle.cpp"]}'::jsonb + ), + ( + 'mr-driller', + 'Mr. Driller', + 'Namco', + 1999, + array['Mr. Driller (US, DRI3/VER.A2)'], + array['Arcade'], + '{"mame":["mrdrillr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'mr-driller-2', + 'Mr. Driller 2', + 'Namco', + 2000, + array['Mr. Driller 2 (World, DR22 Ver.A)'], + array['Arcade'], + '{"mame":["mrdrilr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'mr-driller-g', + 'Mr. Driller G', + 'Namco', + 2001, + array['Mr. Driller G (Japan, DRG1 Ver.A)'], + array['Arcade'], + '{"mame":["mrdrilrg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'mr-goemon', + 'Mr. Goemon', + 'Konami', + 1986, + array['Mr. Goemon (Japan)'], + array['Arcade'], + '{"mame":["mrgoemon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gberet.cpp"]}'::jsonb + ), + ( + 'mr-jong', + 'Mr. Jong', + 'Sanritsu / Kiwako', + 1983, + array['Mr. Jong (Japan)'], + array['Arcade'], + '{"mame":["mrjong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/mrjong.cpp"]}'::jsonb + ), + ( + 'mr-kicker-f-e1-16-010-pcb', + 'Mr. Kicker (F-E1-16-010 PCB)', + 'SemiCom', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["mrkicker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'mr-kougar', + 'Mr. Kougar', + 'ATW', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mrkougar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'mr-tnt', + 'Mr. TNT', + 'Techstar (Telko license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mrtnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'mrs-dynamite', + 'Mrs. Dynamite', + 'Universal', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mrsdyna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/sraider.cpp"]}'::jsonb + ), + ( + 'ms-pac-man-twin', + 'Ms Pac Man Twin', + 'hack (Susilu)', + 1992, + array['Ms Pac Man Twin (Argentina, set 1)'], + array['Classic'], + '{"mame":["mspactwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'ms-pac-man', + 'Ms. Pac-Man', + 'Midway / General Computer Corporation', + 1981, + '{}'::text[], + array['Classic'], + '{"mame":["mspacman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'ms-pac-man-galaga-20th-anniversary-class-of-1981-reunion-v1-08', + 'Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.08)', + 'Namco / Cosmodog', + 2000, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["20pacgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/20pacgal.cpp"]}'::jsonb + ), + ( + 'msbc-1', + 'MSBC-1', + 'Omnibyte', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["msbc1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omnibyte/msbc1.cpp"]}'::jsonb + ), + ( + 'mtu-130', + 'MTU-130', + 'Micro Technology Unlimited', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mtu130"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mtu130.cpp"]}'::jsonb + ), + ( + 'mtx-512', + 'MTX 512', + 'Memotech Ltd', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mtx512"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["memotech/mtx.cpp"]}'::jsonb + ), + ( + 'mu-5', + 'MU-5', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mu5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu5.cpp"]}'::jsonb + ), + ( + 'mu10', + 'MU10', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mu10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu10.cpp"]}'::jsonb + ), + ( + 'mu100', + 'MU100', + 'Yamaha', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["mu100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu100.cpp"]}'::jsonb + ), + ( + 'mu128', + 'MU128', + 'Yamaha', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["mu128"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu128.cpp"]}'::jsonb + ), + ( + 'mu15', + 'MU15', + 'Yamaha', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["mu15"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu15.cpp"]}'::jsonb + ), + ( + 'mu50', + 'MU50', + 'Yamaha', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["mu50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu50.cpp"]}'::jsonb + ), + ( + 'mu500', + 'MU500', + 'Yamaha', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mu500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu2000.cpp"]}'::jsonb + ), + ( + 'mu80', + 'MU80', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mu80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu80.cpp"]}'::jsonb + ), + ( + 'mu90', + 'MU90', + 'Yamaha', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mu90"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu90.cpp"]}'::jsonb + ), + ( + 'muchi-muchi-pork', + 'Muchi Muchi Pork!', + 'Cave (AMI license)', + 2007, + array['Muchi Muchi Pork! (Japan, 2007/ 4/17 MASTER VER.)'], + array['Arcade'], + '{"mame":["mmpork"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'mug-smashers', + 'Mug Smashers', + 'Electronic Devices Italy / 3D Games England', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mugsmash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/mugsmash.cpp"]}'::jsonb + ), + ( + 'muhanseungbu-semicom-baseball', + 'MuHanSeungBu (SemiCom Baseball)', + 'SemiCom / DMD', + 1997, + array['MuHanSeungBu (SemiCom Baseball) (Korea)'], + array['Sports'], + '{"mame":["semibase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'multi-16-ii-mp-1645', + 'MULTI 16-II MP-1645', + 'Mitsubishi', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["multi16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mitsubishi/multi16.cpp"]}'::jsonb + ), + ( + 'multi-5-new-multi-game-5', + 'Multi 5 / New Multi Game 5', + 'Yun Sung', + 1998, + array['Multi 5 / New Multi Game 5 (set 1)'], + array['Arcade'], + '{"mame":["nmg5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp"]}'::jsonb + ), + ( + 'multi-8-mitsubishi', + 'Multi 8 (Mitsubishi)', + 'Mitsubishi', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["multi8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mitsubishi/multi8.cpp"]}'::jsonb + ), + ( + 'multi-champ', + 'Multi Champ', + 'ESD', + 1999, + array['Multi Champ (World, ver. 9.6)'], + array['Arcade'], + '{"mame":["multchmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'multi-champ-deluxe', + 'Multi Champ Deluxe', + 'ESD', + 2000, + array['Multi Champ Deluxe (ver. 0106, 06/01/2000)'], + array['Arcade'], + '{"mame":["mchampdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'multi-fish-040316', + 'Multi Fish (040316)', + 'Igrosoft', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["mfish_13"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'multi-game', + 'Multi Game', + '', + 1992, + array['Multi Game (set 1)'], + array['Arcade'], + '{"mame":["multigam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/multigam.cpp"]}'::jsonb + ), + ( + 'multi-game-tung-sheng-electronics', + 'Multi Game (Tung Sheng Electronics)', + 'Tung Sheng Electronics', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["multigmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/multigam.cpp"]}'::jsonb + ), + ( + 'multi-game-v398', + 'Multi Game ) (V398?)', + 'EGD', + 1997, + array['Multi Game (Italian, Versione 4.0.3 - 1.5.7, 05-FEV-99(397)) (V398?)'], + array['Arcade'], + '{"mame":["gambl186"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gambl186.cpp"]}'::jsonb + ), + ( + 'multi-game-2', + 'Multi Game 2', + 'Seo Jin', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["multigm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/multigam.cpp"]}'::jsonb + ), + ( + 'multi-game-i-v-ger-2-4', + 'Multi Game I (V.Ger 2.4)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg24"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-i-v-stm-2-7', + 'Multi Game I (V.Stm 2.7)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg24a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-iii', + 'Multi Game III', + 'Seo Jin', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["multigm3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/multigam.cpp"]}'::jsonb + ), + ( + 'multi-game-iii-s-ita-3-5', + 'Multi Game III (S.Ita 3.5)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg35i"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-iii-v-ger-3-5', + 'Multi Game III (V.Ger 3.5)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg3g"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-iii-v-ger-3-64', + 'Multi Game III (V.Ger 3.64)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg3ga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-iii-v-int-3-63', + 'Multi Game III (V.Int 3.63)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-iv-amgsk-va3-85', + 'Multi Game IV (AMGSK_VA3.85)', + 'Amatic Trading GmbH', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg4sk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-iv-v-ger-3-44', + 'Multi Game IV (V.Ger 3.44)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg4v"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-player-gamepad', + 'Multi Game Player Gamepad', + 'Bandai', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["bandgpad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'multi-game-v-amghu-vb3-65', + 'Multi Game V (AMGHU_VB3.65)', + 'Amatic Trading GmbH', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg5hu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-spin-v1-0', + 'Multi Spin (v1.0)', + 'Excellent System', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["multspin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/es9501.cpp"]}'::jsonb + ), + ( + 'multi-win', + 'Multi Win', + 'Fun World', + 1992, + array['Multi Win (Ver.0167, encrypted)'], + array['Arcade'], + '{"mame":["multiwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'multi-action-6710-13', + 'Multi-Action 6710-13', + 'Merit', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["ma6710"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-6710-21', + 'Multi-Action 6710-21', + 'Merit', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["ma6710a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-6711-14-r0a', + 'Multi-Action 6711-14-R0A', + 'Merit', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ma6711"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-7551-20-r3t', + 'Multi-Action 7551-20-R3T', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma7551t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-7551-21-r2p', + 'Multi-Action 7551-21-R2P', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma7551p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-7556-00-r2', + 'Multi-Action 7556-00-R2', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma7556"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-7558-01-r0', + 'Multi-Action 7558-01-R0', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma7558r0"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-7558-01-r4', + 'Multi-Action 7558-01-R4', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma7558r4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-8340-01-r1', + 'Multi-Action 8340-01-R1', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma8340"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-8350-00-r1', + 'Multi-Action 8350-00-R1', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma8350"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-9800-20-r0', + 'Multi-Action 9800-20-R0', + 'Merit', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ma9800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multipede-centipede-millipede-multigame-kit', + 'Multipede (Centipede/Millipede multigame kit)', + 'hack (Braze Technologies)', + 2002, + '{}'::text[], + array['Classic'], + '{"mame":["multiped"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/centiped.cpp"]}'::jsonb + ), + ( + 'multistation-5550', + 'Multistation 5550', + 'International Business Machines', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ibm5550"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/ibm5550.cpp"]}'::jsonb + ), + ( + 'multitel-fe-ap-90-1-1', + 'Multitel Fe Ap 90-1.1', + 'Siemens', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["feap90"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["siemens/bitel.cpp"]}'::jsonb + ), + ( + 'mundial-mondial-italian-french', + 'Mundial/Mondial (Italian/French)', + '', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pokermon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'muroge-monaco', + 'Muroge Monaco', + '', + null, + array['Muroge Monaco (set 1)'], + array['Arcade'], + '{"mame":["murogem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/murogem.cpp"]}'::jsonb + ), + ( + 'musapey-s-choco-marker-gdl-0014a', + 'Musapey''s Choco Marker (GDL-0014A)', + 'Ecole Software', + 2002, + array['Musapey''s Choco Marker (Rev A) (GDL-0014A)'], + array['Arcade'], + '{"mame":["chocomk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'muscle-bomber-duo-ultimate-team-battle', + 'Muscle Bomber Duo: Ultimate Team Battle', + 'Capcom', + 1993, + array['Muscle Bomber Duo: Ultimate Team Battle (World 931206)'], + array['Arcade'], + '{"mame":["mbombrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'muscle-master', + 'Muscle Master', + 'Inter Geo', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["musclem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/musclem.cpp"]}'::jsonb + ), + ( + 'muscle-ranking-kinniku-banzuke-spray-hitter', + 'Muscle Ranking Kinniku Banzuke Spray Hitter', + 'Konami / TBS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["musclhit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigs.cpp"]}'::jsonb + ), + ( + 'mushihime-sama', + 'Mushihime-Sama', + 'Cave (AMI license)', + 2004, + array['Mushihime-Sama (Japan, 2004/10/12.MASTER VER.)'], + array['Arcade'], + '{"mame":["mushisam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'mushihime-sama-futari-black-label-another-ver', + 'Mushihime-Sama Futari Black Label - Another Ver', + 'Cave (AMI license)', + 2007, + array['Mushihime-Sama Futari Black Label - Another Ver (World, 2009/11/27 INTERNATIONAL BL)'], + array['Arcade'], + '{"mame":["futaribl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'mushihime-sama-futari-ver-1-5', + 'Mushihime-Sama Futari Ver 1.5', + 'Cave (AMI license)', + 2006, + array['Mushihime-Sama Futari Ver 1.5 (Japan, 2006/12/8.MASTER VER. 1.54.)'], + array['Arcade'], + '{"mame":["futari15"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetle', + 'Mushiking The King Of Beetle', + 'Sega', + 2004, + array['Mushiking The King Of Beetle (2K3 2ND Ver. 1.003-, World)'], + array['Arcade'], + '{"mame":["mushike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-mushiking-ii-iii-iii', + 'Mushiking The King Of Beetles - Mushiking II / III / III+', + 'Sega', + 2005, + array['Mushiking The King Of Beetles - Mushiking II / III / III+ (Ver. 2.001) (World)'], + array['Arcade'], + '{"mame":["mushik2e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-mushiking-iv-v-vi', + 'Mushiking The King Of Beetles - Mushiking IV / V / VI', + 'Sega', + 2007, + array['Mushiking The King Of Beetles - Mushiking IV / V / VI (World)'], + array['Arcade'], + '{"mame":["mushik4e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-2003-second', + 'Mushiking The King Of Beetles 2003 Second', + 'Sega', + 2003, + array['Mushiking The King Of Beetles 2003 Second (Japan)'], + array['Arcade'], + '{"mame":["mushi2k3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-2004-second', + 'Mushiking The King Of Beetles 2004 Second', + 'Sega', + 2004, + array['Mushiking The King Of Beetles 2004 Second (Japan)'], + array['Arcade'], + '{"mame":["mushi2k4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-2005-first', + 'Mushiking The King Of Beetles 2005 First', + 'Sega', + 2005, + array['Mushiking The King Of Beetles 2005 First (Japan)'], + array['Arcade'], + '{"mame":["mushi2k5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-2006-first', + 'Mushiking The King Of Beetles 2006 First', + 'Sega', + 2006, + array['Mushiking The King Of Beetles 2006 First (Japan)'], + array['Arcade'], + '{"mame":["mushi2k61"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-2006-second', + 'Mushiking The King Of Beetles 2006 Second', + 'Sega', + 2006, + array['Mushiking The King Of Beetles 2006 Second (Japan)'], + array['Arcade'], + '{"mame":["mushi2k62"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushroom-magic-atronic', + 'Mushroom Magic (Atronic)', + 'Atronic', + 2002, + array['Mushroom Magic (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["mushmagi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'music-ball', + 'Music Ball', + 'Tecfri / Desystem S.A.', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["musicbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/speedbal.cpp"]}'::jsonb + ), + ( + 'music-sort', + 'Music Sort', + 'ABM Games', + 1995, + array['Music Sort (ver. 2.02)'], + array['Arcade'], + '{"mame":["musicsrt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'musoubana', + 'Musoubana', + 'Nichibutsu / Yubis', + 1995, + array['Musoubana (Japan)'], + array['Arcade'], + '{"mame":["musobana"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nyanpai.cpp"]}'::jsonb + ), + ( + 'must-shoot-tv', + 'Must Shoot TV', + 'Incredible Technologies', + null, + array['Must Shoot TV (prototype)'], + array['Arcade'], + '{"mame":["shoottv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'mustache-boy', + 'Mustache Boy', + 'Seibu Kaihatsu (March license)', + 1987, + array['Mustache Boy (Japan)'], + array['Arcade'], + '{"mame":["mustache"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/mustache.cpp"]}'::jsonb + ), + ( + 'mutant-fighter', + 'Mutant Fighter', + 'Data East Corporation', + 1991, + array['Mutant Fighter (World ver EM-5)'], + array['Arcade'], + '{"mame":["mutantf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cninja.cpp"]}'::jsonb + ), + ( + 'mutant-night', + 'Mutant Night', + 'UPL', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mnight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/ninjakd2.cpp"]}'::jsonb + ), + ( + 'mutation-nation-ngm-014-ngh-014', + 'Mutation Nation (NGM-014 ~ NGH-014)', + 'SNK', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["mutnat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'mvme-162', + 'MVME-162', + 'Motorola', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mvme162"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/mvme162.cpp"]}'::jsonb + ), + ( + 'mvp-fd1094-317-0143', + 'MVP (FD1094 317-0143)', + 'Sega', + 1989, + array['MVP (set 2, US) (FD1094 317-0143)'], + array['Arcade'], + '{"mame":["mvp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'mvs-temp-subsystem-ver1-4-nazca-development-board', + 'MVS-TEMP ''SubSystem Ver1.4'' (Nazca development board)', + 'Nazca', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mvstemp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'mx5000', + 'MX5000', + 'Konami', + 1987, + array['MX5000 (version U)'], + array['Arcade'], + '{"mame":["mx5000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/flkatck.cpp"]}'::jsonb + ), + ( + 'my-first-leappad', + 'My First LeapPad', + 'LeapFrog', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["mfleappad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/leappad.cpp"]}'::jsonb + ), + ( + 'my-hero', + 'My Hero', + 'Coreland / Sega', + 1985, + array['My Hero (US, not encrypted)'], + array['Arcade'], + '{"mame":["myhero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'my-magic-diary-jd-5000', + 'My Magic Diary (JD-5000)', + 'Casio', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["jd5000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/superjr.cpp"]}'::jsonb + ), + ( + 'my-vision-kh-1000', + 'My Vision (KH-1000)', + 'Nichibutsu', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["myvision"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/myvision.cpp"]}'::jsonb + ), + ( + 'mybrain-3000', + 'MyBrain 3000', + 'Matsushita', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["myb3k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["matsushita/myb3k.cpp"]}'::jsonb + ), + ( + 'mysterious-stones-dr-john-s-adventure', + 'Mysterious Stones - Dr. John''s Adventure', + 'Technos Japan', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mystston"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/mystston.cpp"]}'::jsonb + ), + ( + 'mystery-j-and-b-v1-3g', + 'Mystery J & B (V1.3G)', + 'Dyna', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["mystjb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'mystery-number', + 'Mystery Number', + 'BRL Bologna', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mnumber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'mystic-defender-mega-tech', + 'Mystic Defender (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["mt_mystd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'mystic-marathon', + 'Mystic Marathon', + 'Williams', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mysticm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'mystic-riders', + 'Mystic Riders', + 'Irem', + 1992, + array['Mystic Riders (World)'], + array['Arcade'], + '{"mame":["mysticri"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'mystic-warriors', + 'Mystic Warriors', + 'Konami', + 1993, + array['Mystic Warriors (ver EAA)'], + array['Arcade'], + '{"mame":["mystwarr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mystwarr.cpp"]}'::jsonb + ), + ( + 'n-sub-upright', + 'N-Sub (upright)', + 'Sega', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["nsub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'n-y-captor', + 'N.Y. Captor', + 'Taito', + 1985, + array['N.Y. Captor (rev 2)'], + array['Arcade'], + '{"mame":["nycaptor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/nycaptor.cpp"]}'::jsonb + ), + ( + 'nabu-pc', + 'NABU PC', + 'NABU', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["nabupc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/nabupc.cpp"]}'::jsonb + ), + ( + 'nagano-winter-olympics-98-gx720-eaa', + 'Nagano Winter Olympics ''98 (GX720 EAA)', + 'Konami', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["nagano98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'nam-1975-ngm-001-ngh-001', + 'NAM-1975 (NGM-001 ~ NGH-001)', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["nam1975"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'namco-classic-collection-vol-1', + 'Namco Classic Collection Vol.1', + 'Namco', + 1995, + '{}'::text[], + array['Classic'], + '{"mame":["ncv1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcond1.cpp"]}'::jsonb + ), + ( + 'namco-classic-collection-vol-2', + 'Namco Classic Collection Vol.2', + 'Namco', + 1996, + '{}'::text[], + array['Classic'], + '{"mame":["ncv2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcond1.cpp"]}'::jsonb + ), + ( + 'namco-stars', + 'Namco Stars', + 'Namco', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["namcostr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'name-club-j-960315-v1-000', + 'Name Club (J 960315 V1.000)', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["nameclub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'name-club-disney-j-980614-v1-000', + 'Name Club Disney (J 980614 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["nclubdis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'name-club-ver-2-j-960315-v1-000', + 'Name Club Ver.2 (J 960315 V1.000)', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["nclubv2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'name-club-ver-3-j-970723-v1-000', + 'Name Club Ver.3 (J 970723 V1.000)', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["nclubv3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'name-club-ver-4-j-971202-v1-000', + 'Name Club Ver.4 (J 971202 V1.000)', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["nclubv4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'name-that-tune-bally-3-31-86', + 'Name That Tune (Bally, 3/31/86)', + 'Bally/Sente', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["nametune"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'namennayo', + 'Namennayo', + 'Cat''s', + 1982, + array['Namennayo (Japan)'], + array['Arcade'], + '{"mame":["namenayo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'naname-de-magic', + 'Naname de Magic!', + 'Atlus', + 1994, + array['Naname de Magic! (Japan)'], + array['Arcade'], + '{"mame":["naname"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/ohmygod.cpp"]}'::jsonb + ), + ( + 'nandemo-seal-iinkai', + 'Nandemo Seal Iinkai', + 'I''Max / Jaleco', + 1997, + array['Nandemo Seal Iinkai (ver 1.3)'], + array['Arcade'], + '{"mame":["nndmseal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'nanos', + 'NANOS', + 'Ingenieurhochschule fur Seefahrt Warnemunde/Wustrow', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["nanos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/nanos.cpp"]}'::jsonb + ), + ( + 'naomi-dimm-firmware-update-for-cf-box-4-01-gds-0042a', + 'Naomi DIMM Firmware Update for CF-BOX (4.01) (GDS-0042A)', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["ndcfboxa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'naomi-dimm-firmware-updater-2-13-gds-0023a', + 'Naomi DIMM Firmware Updater (2.13) (GDS-0023A)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ngdup23a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'naomi-dimm-firmware-updater-2-17-gds-0023c', + 'Naomi DIMM Firmware Updater (2.17) (GDS-0023C)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ngdup23c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'naomi-dimm-firmware-updater-3-17-gds-0023e', + 'Naomi DIMM Firmware Updater (3.17) (GDS-0023E)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ngdup23e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'narc', + 'Narc', + 'Williams', + 1988, + array['Narc (rev 7.00)'], + array['Arcade'], + '{"mame":["narc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'nascar-arcade', + 'NASCAR Arcade', + 'Sega / Electronic Arts', + 2000, + array['NASCAR Arcade (Rev A)'], + array['Arcade'], + '{"mame":["sgnascar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'nascom-1', + 'Nascom 1', + 'Nascom Microcomputers', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["nascom1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nascom/nascom1.cpp"]}'::jsonb + ), + ( + 'nascom-2', + 'Nascom 2', + 'Nascom Microcomputers', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["nascom2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nascom/nascom1.cpp"]}'::jsonb + ), + ( + 'nastar', + 'Nastar', + 'Taito Corporation Japan', + 1988, + array['Nastar (World)'], + array['Arcade'], + '{"mame":["nastar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'nato-defense', + 'NATO Defense', + 'Pacific Novelty', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["natodef"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacific/thief.cpp"]}'::jsonb + ), + ( + 'naughty-boy', + 'Naughty Boy', + 'Jaleco', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["naughtyb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["phoenix/naughtyb.cpp"]}'::jsonb + ), + ( + 'naughty-mouse', + 'Naughty Mouse', + 'Amenip (Palcom Queen River)', + 1981, + array['Naughty Mouse (set 1)'], + array['Arcade'], + '{"mame":["nmouse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'navarone', + 'Navarone', + 'Namco', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["navarone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'nba-hangtime', + 'NBA Hangtime', + 'Midway', + 1996, + array['NBA Hangtime (ver L1.3 10/10/96)'], + array['Sports'], + '{"mame":["nbahangt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwunit.cpp"]}'::jsonb + ), + ( + 'nba-jam', + 'NBA Jam', + 'Midway', + 1993, + array['NBA Jam (rev 3.01 4/07/93)'], + array['Sports'], + '{"mame":["nbajam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midtunit.cpp"]}'::jsonb + ), + ( + 'nba-jam-tournament-edition', + 'NBA Jam Tournament Edition', + 'Midway', + 1994, + array['NBA Jam Tournament Edition (rev 4.0 3/23/94)'], + array['Sports'], + '{"mame":["nbajamte"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midtunit.cpp"]}'::jsonb + ), + ( + 'nba-play-by-play', + 'NBA Play By Play', + 'Konami', + 1998, + array['NBA Play By Play (ver UAB)'], + array['Arcade'], + '{"mame":["nbapbp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hornet.cpp"]}'::jsonb + ), + ( + 'nba-showtime-nba-on-nbc', + 'NBA Showtime NBA on NBC', + 'Midway Games', + 1999, + array['NBA Showtime NBA on NBC (ver 2.0, Apr 25 1999)'], + array['Arcade'], + '{"mame":["nbashowt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'ncaa-basketball-nintendo-super-system', + 'NCAA Basketball (Nintendo Super System)', + 'Sculptured Software Inc.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_ncaa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'nebula-uk', + 'Nebula (UK)', + 'Data East Corporation', + 1981, + array['Nebula (DECO Cassette) (UK)'], + array['Arcade'], + '{"mame":["cnebula"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'nebulas-ray', + 'Nebulas Ray', + 'Namco', + 1994, + array['Nebulas Ray (World, NR2)'], + array['Arcade'], + '{"mame":["nebulray"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'neck-n-neck-v1-2', + 'Neck-N-Neck (v1.2)', + 'Bundra Games / Incredible Technologies', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["neckneck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'need-for-speed-4-cab-link-2-discs', + 'Need for Speed - 4 Cab Link (2 Discs)', + 'Global VR', + 2003, + array['Need for Speed - 4 Cab Link (2 Discs) (v1.0.1 Rev B)'], + array['Arcade'], + '{"mame":["nfs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'need-for-speed-gt-hard-drive-2-discs', + 'Need for Speed GT (Hard Drive+2 Discs)', + 'Global VR', + 2004, + array['Need for Speed GT (Hard Drive+2 Discs) (v1.1.0 Rev C)'], + array['Arcade'], + '{"mame":["nfsgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'need-for-speed-underground-install-2-discs-v1-1', + 'Need For Speed: Underground Install (2 Discs) (v1.1)', + 'Global VR', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["nfsug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'nekketsu-grand-prix-gal', + 'Nekketsu Grand-Prix Gal', + 'Nichibutsu', + 1991, + array['Nekketsu Grand-Prix Gal (Japan)'], + array['Arcade'], + '{"mame":["ngpgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj9195.cpp"]}'::jsonb + ), + ( + 'nemesis', + 'Nemesis', + 'Konami', + 1985, + array['Nemesis (ROM version)'], + array['Arcade'], + '{"mame":["nemesis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'nemo', + 'Nemo', + 'Capcom', + 1990, + array['Nemo (World 901130)'], + array['Arcade'], + '{"mame":["nemo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'neo-bomberman', + 'Neo Bomberman', + 'Hudson', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["neobombe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-drift-out-new-technology', + 'Neo Drift Out - New Technology', + 'Visco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["neodrift"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-mania-portugal', + 'Neo Mania (Portugal)', + 'bootleg (Hyper M.A.R.)', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["neomania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neomania.cpp"]}'::jsonb + ), + ( + 'neo-mr-do', + 'Neo Mr. Do!', + 'Visco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["neomrdo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-print-98-neopri-best-44-t4i-3-07', + 'Neo Print - ''98 NeoPri Best 44 (T4i 3.07)', + 'SNK', + 1998, + array['Neo Print - ''98 NeoPri Best 44 (Japan) (T4i 3.07)'], + array['Arcade'], + '{"mame":["98best44"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-chicken-ramen', + 'Neo Print - Chicken Ramen', + 'SNK', + 1996, + array['Neo Print - Chicken Ramen (Japan)'], + array['Arcade'], + '{"mame":["npcramen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-european-version-t4i-2-00', + 'Neo Print - European Version (T4i 2.00)', + 'SNK', + 1997, + array['Neo Print - European Version (World) (T4i 2.00)'], + array['Arcade'], + '{"mame":["npeurver"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-european-version-ii-t4i-3-07', + 'Neo Print - European Version II (T4i 3.07)', + 'SNK', + 1996, + array['Neo Print - European Version II (World) (T4i 3.07)'], + array['Arcade'], + '{"mame":["npeurver2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-fairy-tales-t4i-3-07', + 'Neo Print - Fairy Tales (T4i 3.07)', + 'SNK', + 1999, + array['Neo Print - Fairy Tales (World) (T4i 3.07)'], + array['Arcade'], + '{"mame":["npft"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-fuyu-pri-iitoko-dori-t4i-3-07', + 'Neo Print - Fuyu Pri Iitoko-dori (T4i 3.07)', + 'SNK', + 1999, + array['Neo Print - Fuyu Pri Iitoko-dori (Japan) (T4i 3.07)'], + array['Arcade'], + '{"mame":["npfpit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-millennium-multi-shot-edition-t4i-3-07', + 'Neo Print - Millennium Multi Shot Edition (T4i 3.07)', + 'SNK', + 1999, + array['Neo Print - Millennium Multi Shot Edition (World) (T4i 3.07)'], + array['Arcade'], + '{"mame":["npmillen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-otogibanashi-t4i-3-00', + 'Neo Print - Otogibanashi (T4i 3.00)', + 'SNK', + 1997, + array['Neo Print - Otogibanashi (Japan) (T4i 3.00)'], + array['Arcade'], + '{"mame":["npotogib"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-popeye-t4i-3-04', + 'Neo Print - Popeye (T4i 3.04)', + 'SNK', + 1997, + array['Neo Print - Popeye (Japan) (T4i 3.04)'], + array['Arcade'], + '{"mame":["nppopeye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-senyou-cassette-ver-1', + 'Neo Print - Senyou Cassette Ver. 1', + 'SNK', + 1996, + array['Neo Print - Senyou Cassette Ver. 1 (Japan)'], + array['Arcade'], + '{"mame":["npscv1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-spring-98-t4i-3-07', + 'Neo Print - Spring ''98 (T4i 3.07)', + 'SNK', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["npsprg98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-spring-ver-4-t4f-1-00', + 'Neo Print - Spring Ver. 4 (T4f 1.00)', + 'SNK', + 1997, + array['Neo Print - Spring Ver. 4 (Japan) (T4f 1.00)'], + array['Arcade'], + '{"mame":["npsprgv4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-suizokukan-version-t4i-2-00', + 'Neo Print - Suizokukan Version (T4i 2.00)', + 'SNK', + 1997, + array['Neo Print - Suizokukan Version (Japan) (T4i 2.00)'], + array['Arcade'], + '{"mame":["npskv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-usagi-frame-t4i-3-07', + 'Neo Print - Usagi Frame (T4i 3.07)', + 'SNK', + 1997, + array['Neo Print - Usagi Frame (Japan) (T4i 3.07)'], + array['Arcade'], + '{"mame":["npusagif"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-t2d', + 'Neo Print (T2d)', + 'SNK', + 1996, + array['Neo Print (Japan) (T2d)'], + array['Arcade'], + '{"mame":["neoprint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-sp-super-collection-version', + 'Neo Print SP! Super Collection Version', + 'SNK', + 1997, + array['Neo Print SP! Super Collection Version (Japan)'], + array['Arcade'], + '{"mame":["npspscv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-special-sekai-ryokou-2', + 'Neo Print Special: Sekai Ryokou 2', + 'SNK', + 1996, + array['Neo Print Special: Sekai Ryokou 2 (Japan)'], + array['Arcade'], + '{"mame":["npssr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-v1-e1a', + 'Neo Print V1 (E1a)', + 'SNK', + 1996, + array['Neo Print V1 (World) (E1a)'], + array['Arcade'], + '{"mame":["npcartv1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-turf-masters-big-tournament-golf', + 'Neo Turf Masters / Big Tournament Golf', + 'Nazca', + 1996, + '{}'::text[], + array['Sports'], + '{"mame":["turfmast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-geo-aes-ntsc', + 'Neo-Geo AES (NTSC)', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["aes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-geo-cdz', + 'Neo-Geo CDZ', + 'SNK', + 1996, + array['Neo-Geo CDZ (US)'], + array['Arcade'], + '{"mame":["neocdz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeocd.cpp"]}'::jsonb + ), + ( + 'neo-geo-cup-98-the-road-to-the-victory', + 'Neo-Geo Cup ''98 - The Road to the Victory', + 'SNK', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["neocup98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-geo-mv-1', + 'Neo-Geo MV-1', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ng_mv1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-geo-mv-2f', + 'Neo-Geo MV-2F', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ng_mv2f"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-geo-mv-4f', + 'Neo-Geo MV-4F', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ng_mv4f"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-geo-mv-6f', + 'Neo-Geo MV-6F', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["neogeo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neogeo-battle-coliseum', + 'NeoGeo Battle Coliseum', + 'Sammy / SNK Playmore', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["ngbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'neogeo-pocket', + 'NeoGeo Pocket', + 'SNK', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["ngp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/ngp.cpp"]}'::jsonb + ), + ( + 'neoprisp-retro-collection', + 'NeopriSP Retro Collection', + 'SNK', + 1996, + array['NeopriSP Retro Collection (Japan)'], + array['Arcade'], + '{"mame":["nprsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neptune-s-pearls-2', + 'Neptune''s Pearls 2', + 'Unidesa/Cirsa', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["neptunp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cirsa/neptunp2.cpp"]}'::jsonb + ), + ( + 'nerae-super-goal-j-981218-v1-000', + 'Nerae! Super Goal (J 981218 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["supgoal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'neraidoula', + 'Neraidoula', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["neraidou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'neratte-chu', + 'Neratte Chu', + 'Seta', + 1996, + array['Neratte Chu (ver. 1.10)'], + array['Arcade'], + '{"mame":["nratechu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'net-wars', + 'Net Wars', + 'Orca (Esco Trading Co license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["netwars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/espial.cpp"]}'::jsonb + ), + ( + 'net-select-horse-racing-victory-furlong', + 'Net@Select: Horse Racing - Victory Furlong', + 'Progress / Sammy', + 2005, + '{}'::text[], + array['Racing'], + '{"mame":["vfurlong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'net-select-salaryman-kintaro', + 'Net@Select: Salaryman Kintaro', + 'Yuki Enterprise / Sammy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["salmankt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'netchuu-pro-yakyuu-2002', + 'Netchuu Pro Yakyuu 2002', + 'Namco', + 2002, + array['Netchuu Pro Yakyuu 2002 (NPY1 Ver. C)'], + array['Arcade'], + '{"mame":["netchu02c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'nettou-gekitou-quiztou', + 'Nettou! Gekitou! Quiztou!!', + 'Namco', + 1993, + array['Nettou! Gekitou! Quiztou!! (Japan)'], + array['Arcade'], + '{"mame":["quiztou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'nevada-french-encrypted', + 'Nevada (French, encrypted)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["nevadafw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'new-2001', + 'New 2001', + 'Subsino', + 2000, + array['New 2001 (Italy, Ver. 200N)'], + array['Arcade'], + '{"mame":["new2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'new-carrera-version-2000', + 'New Carrera - Version 2000', + 'bootleg (J.T.)', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ncarrera"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ncarrera.cpp"]}'::jsonb + ), + ( + 'new-champion-skill-v100n-2000', + 'New Champion Skill (v100n 2000)', + 'IGS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["igs_ncs2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspoker.cpp"]}'::jsonb + ), + ( + 'new-champion-skill-v100n', + 'New Champion Skill (v100n)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["igs_ncs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspoker.cpp"]}'::jsonb + ), + ( + 'new-cherry-96', + 'New Cherry ''96', + 'bootleg', + 1996, + array['New Cherry ''96 (ver 3.7, 1997/01/04, bootleg)'], + array['Arcade'], + '{"mame":["cherry96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'new-cherry-96-special-edition-v3-63-c1-pcb', + 'New Cherry ''96 Special Edition (v3.63, C1 PCB)', + 'Amcoe', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["nc96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'new-cherry-98', + 'New Cherry ''98', + 'bootleg', + 1998, + array['New Cherry ''98 (v4.3 1998/09/07, Gamemax bootleg, set 1)'], + array['Arcade'], + '{"mame":["cherry98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'new-cross-pang', + 'New Cross Pang', + 'F2 System', + 1999, + array['New Cross Pang (set 1)'], + array['Arcade'], + '{"mame":["newxpang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'new-dongmuldongmul', + 'New DongmulDongmul', + 'Hyoja Game', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["ndongmul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'new-dongmuldongmul-2-v1-2n', + 'New DongmulDongmul 2 (V1.2N)', + 'Dyna', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["ndongmul2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'new-fantasia-1995-copyright', + 'New Fantasia (1995 copyright)', + 'Comad & New Japan System', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["newfant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'new-hidden-catch-new-tul-lin-gu-lim-chat-ki-98', + 'New Hidden Catch / New Tul Lin Gu Lim Chat Ki ''98', + 'Eolith', + 1999, + array['New Hidden Catch (World) / New Tul Lin Gu Lim Chat Ki ''98 (Korea) (pcb ver 3.02)'], + array['Arcade'], + '{"mame":["nhidctch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'new-hyperman-3-in-1-with-cookie-and-bibi-and-hyperman', + 'New HyperMan (3-in-1 with Cookie & Bibi & HyperMan)', + 'SemiCom / XESS', + 1998, + array['New HyperMan (3-in-1 with Cookie & Bibi & HyperMan) (set 1)'], + array['Arcade'], + '{"mame":["3in1semi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'new-lucky-8-lines', + 'New Lucky 8 Lines', + 'Wing Co., Ltd.', + 1989, + array['New Lucky 8 Lines (set 1, W-4)'], + array['Arcade'], + '{"mame":["lucky8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'new-lucky-8-lines-new-super-8-lines-w-4', + 'New Lucky 8 Lines / New Super 8 Lines (W-4)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ns8lines"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'new-magic-card', + 'New Magic Card', + 'High Video', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["newmcard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'new-moero-pro-yakyuu-homerun-kyousou', + 'NEW Moero!! Pro Yakyuu Homerun Kyousou', + 'Jaleco', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["nhomerun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/homerun.cpp"]}'::jsonb + ), + ( + 'new-mondo-plus-v0-6i', + 'New Mondo Plus (V0.6I)', + 'Dyna', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["nmondop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'new-rally-x', + 'New Rally X', + 'Namco', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["nrallyx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rallyx.cpp"]}'::jsonb + ), + ( + 'new-sinbad-7', + 'New Sinbad 7', + 'ATW USA, Inc.', + 1983, + array['New Sinbad 7 (set 1)'], + array['Arcade'], + '{"mame":["newsin7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'new-york-joker', + 'New York Joker', + 'High Video', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["nyjoker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'new-york-new-york', + 'New York! New York!', + 'Sigma Enterprises Inc.', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["nyny"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/nyny.cpp"]}'::jsonb + ), + ( + 'new-cherry-plus', + 'New! Cherry Plus', + 'Cadillac Jack', + 1999, + array['New! Cherry Plus (Ver. 3.10)'], + array['Arcade'], + '{"mame":["cjplus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'newbrain-ad', + 'NewBrain AD', + 'Grundy Business Systems Ltd', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["newbrain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["grundy/newbrain.cpp"]}'::jsonb + ), + ( + 'news', + 'News', + 'Poby / Virus', + 1993, + array['News (set 1)'], + array['Arcade'], + '{"mame":["news"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/news.cpp"]}'::jsonb + ), + ( + 'next-computer', + 'NeXT Computer', + 'Next Software Inc', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["next"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["next/next.cpp"]}'::jsonb + ), + ( + 'nextstation', + 'NeXTstation', + 'Next Software Inc', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["nexts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["next/next.cpp"]}'::jsonb + ), + ( + 'nextstation-turbo', + 'NeXTstation Turbo', + 'Next Software Inc', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["nextst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["next/next.cpp"]}'::jsonb + ), + ( + 'nf500a', + 'NF500A', + 'China State-owned 830 Factory', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["nf500a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/h01x.cpp"]}'::jsonb + ), + ( + 'nfl', + 'NFL', + 'Advanced Video Technology', + 1989, + array['NFL (ver 109)'], + array['Arcade'], + '{"mame":["avtnfl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/avt.cpp"]}'::jsonb + ), + ( + 'nfl-blitz', + 'NFL Blitz', + 'Midway Games', + 1997, + array['NFL Blitz (ver 1.21, Dec 5 1997)'], + array['Sports'], + '{"mame":["blitz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'nfl-blitz-99', + 'NFL Blitz ''99', + 'Midway Games', + 1998, + array['NFL Blitz ''99 (ver 1.30, Sep 22 1998)'], + array['Sports'], + '{"mame":["blitz99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'nfl-blitz-2000-gold-edition', + 'NFL Blitz 2000 Gold Edition', + 'Midway Games', + 1999, + array['NFL Blitz 2000 Gold Edition (ver 1.2, Sep 22 1999)'], + array['Sports'], + '{"mame":["blitz2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'nfl-classic-football', + 'NFL Classic Football', + 'Namco / Metro', + 2003, + array['NFL Classic Football (US, NCF3 Ver.A.)'], + array['Sports', 'Classic'], + '{"mame":["nflclsfb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'nfl-football', + 'NFL Football', + 'Bally Midway', + 1983, + '{}'::text[], + array['Sports'], + '{"mame":["nflfoot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'nhl-open-ice-2-on-2-challenge', + 'NHL Open Ice: 2 on 2 Challenge', + 'Midway', + 1995, + array['NHL Open Ice: 2 on 2 Challenge (rev 1.21)'], + array['Arcade'], + '{"mame":["openice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwunit.cpp"]}'::jsonb + ), + ( + 'nibbler', + 'Nibbler', + 'Rock-Ola', + 1982, + array['Nibbler (rev 9, set 1)'], + array['Arcade'], + '{"mame":["nibbler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk6502.cpp"]}'::jsonb + ), + ( + 'night-bunny', + 'Night Bunny', + 'Nichibutsu', + 1984, + array['Night Bunny (Japan 840601 MRN 2-10)'], + array['Arcade'], + '{"mame":["ngtbunny"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nightgal.cpp"]}'::jsonb + ), + ( + 'night-driver', + 'Night Driver', + 'Atari', + 1976, + '{}'::text[], + array['Racing'], + '{"mame":["nitedrvr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/nitedrvr.cpp"]}'::jsonb + ), + ( + 'night-gal', + 'Night Gal', + 'Nichibutsu', + 1984, + array['Night Gal (Japan 840920 AG 1-00)'], + array['Arcade'], + '{"mame":["nightgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nightgal.cpp"]}'::jsonb + ), + ( + 'night-gal-summer', + 'Night Gal Summer', + 'Nichibutsu', + 1985, + array['Night Gal Summer (Japan 850702 NGS 0-01)'], + array['Arcade'], + '{"mame":["ngalsumr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nightgal.cpp"]}'::jsonb + ), + ( + 'night-love', + 'Night Love', + 'Central Denshi', + 1986, + array['Night Love (Japan 860705)'], + array['Arcade'], + '{"mame":["nightlov"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'night-mare-spain', + 'Night Mare (Spain)', + 'E.F.O.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["nightmare"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/nightmare.cpp"]}'::jsonb + ), + ( + 'night-slashers', + 'Night Slashers', + 'Data East Corporation', + 1994, + array['Night Slashers (Korea Rev 1.3, DE-0397-0 PCB)'], + array['Arcade'], + '{"mame":["nslasher"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco32.cpp"]}'::jsonb + ), + ( + 'night-star', + 'Night Star', + 'Data East Corporation', + 1983, + array['Night Star (DECO Cassette) (US) (set 1)'], + array['Arcade'], + '{"mame":["cnightst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'night-stocker-10-6-86', + 'Night Stocker (10/6/86)', + 'Bally/Sente', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["nstocker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'night-striker', + 'Night Striker', + 'Taito Corporation Japan', + 1989, + array['Night Striker (World)'], + array['Arcade'], + '{"mame":["nightstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'night-warriors-darkstalkers-revenge', + 'Night Warriors: Darkstalkers'' Revenge', + 'Capcom', + 1995, + array['Night Warriors: Darkstalkers'' Revenge (Europe 950316)'], + array['Fighting'], + '{"mame":["nwarr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'nightmare-in-the-dark', + 'Nightmare in the Dark', + 'Eleven / Gavaking', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["nitd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'nihonzenkoku-katochan-no-kurukuru-ressya-de-pe', + 'Nihonzenkoku-katochan-no-kurukuru-ressya-de-Pe!', + 'Capcom', + 2004, + array['Nihonzenkoku-katochan-no-kurukuru-ressya-de-Pe! (Ver.1.00, 2004/10/24)'], + array['Arcade'], + '{"mame":["katochan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'nimbus', + 'Nimbus', + 'Research Machines', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["nimbus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rm/rmnimbus.cpp"]}'::jsonb + ), + ( + 'ninja-assault', + 'Ninja Assault', + 'Namco', + 2000, + array['Ninja Assault (World, NJA2 Ver.A)'], + array['Arcade'], + '{"mame":["ninjaslt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'ninja-baseball-bat-man', + 'Ninja Baseball Bat Man', + 'Irem', + 1993, + array['Ninja Baseball Bat Man (World)'], + array['Sports'], + '{"mame":["nbbatman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'ninja-clowns-27-oct-91', + 'Ninja Clowns (27 oct 91)', + 'Strata / Incredible Technologies', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["ninclown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'ninja-combat-ngm-009', + 'Ninja Combat (NGM-009)', + 'Alpha Denshi Co.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ncombat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ninja-commando', + 'Ninja Commando', + 'Alpha Denshi Co.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ncommand"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ninja-emaki', + 'Ninja Emaki', + 'Nichibutsu', + 1986, + array['Ninja Emaki (US)'], + array['Arcade'], + '{"mame":["ninjemak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/galivan.cpp"]}'::jsonb + ), + ( + 'ninja-gaiden-playchoice-10', + 'Ninja Gaiden (PlayChoice-10)', + 'Tecmo (Nintendo of America license)', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_ngaid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'ninja-gaiden-episode-ii-the-dark-sword-of-chaos-playchoice-10', + 'Ninja Gaiden Episode II: The Dark Sword of Chaos (PlayChoice-10)', + 'Tecmo (Nintendo of America license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_ngai2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'ninja-gaiden-episode-iii-the-ancient-ship-of-doom-playchoice-10', + 'Ninja Gaiden Episode III: The Ancient Ship of Doom (PlayChoice-10)', + 'Tecmo (Nintendo of America license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_ngai3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'ninja-kazan', + 'Ninja Kazan', + 'Jaleco', + 1988, + array['Ninja Kazan (World)'], + array['Arcade'], + '{"mame":["kazan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'ninja-master-s-haoh-ninpo-cho', + 'Ninja Master''s - Haoh-ninpo-cho', + 'ADK / SNK', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["ninjamas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ninja-mission', + 'Ninja Mission', + 'Arcadia Systems', + 1987, + array['Ninja Mission (Arcadia, set 1, V 2.5)'], + array['Arcade'], + '{"mame":["ar_ninj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'ninja-spirit', + 'Ninja Spirit', + 'Irem', + 1988, + array['Ninja Spirit (World)'], + array['Arcade'], + '{"mame":["nspirit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'ninja-kid-ii-ninjakun-ashura-no-shou', + 'Ninja-Kid II / NinjaKun Ashura no Shou', + 'UPL', + 1987, + array['Ninja-Kid II / NinjaKun Ashura no Shou (set 1)'], + array['Arcade'], + '{"mame":["ninjakd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/ninjakd2.cpp"]}'::jsonb + ), + ( + 'ninjakun-majou-no-bouken', + 'Ninjakun Majou no Bouken', + 'UPL (Taito license)', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["ninjakun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/nova2001.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.009.sql b/supabase/seed-data/mame-game-catalog.generated.009.sql new file mode 100644 index 0000000..6737d66 --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.009.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'nintendo-64-ntsc', + 'Nintendo 64 (NTSC)', + 'Nintendo', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["n64"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/n64.cpp"]}'::jsonb + ), + ( + 'nintendo-world-cup-playchoice-10', + 'Nintendo World Cup (PlayChoice-10)', + 'Technos Japan (Nintendo license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_wcup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'nitro-ball', + 'Nitro Ball', + 'Data East Corporation', + 1992, + array['Nitro Ball (World, set 1)'], + array['Arcade'], + '{"mame":["nitrobal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/rohga.cpp"]}'::jsonb + ), + ( + 'nittere-shiki-mirai-yosou-studio-ntv-future-forecast-studio', + 'Nittere Shiki! Mirai Yosou Studio / NTV Future Forecast Studio', + 'Sega / NTV', + 2000, + array['Nittere Shiki! Mirai Yosou Studio / NTV Future Forecast Studio (Japan, Rev A)'], + array['Arcade'], + '{"mame":["ntvmys"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'nj-pocket-60-in-1-handheld-x-zero-ntsc', + 'NJ Pocket 60-in-1 handheld ''X zero'' (NTSC)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["njp60in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'noah-s-ark', + 'Noah''s Ark', + 'Enter-Tech, Ltd.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["noahsark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tugboat.cpp"]}'::jsonb + ), + ( + 'noboranka', + 'Noboranka', + 'Coreland / Data East Corporation', + 1986, + array['Noboranka (Japan)'], + array['Arcade'], + '{"mame":["nob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'noddy-s-tv-console', + 'Noddy''s TV Console', + 'Lexibook', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["lxnoddy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'nostradamus', + 'Nostradamus', + 'Face', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["nost"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mcatadv.cpp"]}'::jsonb + ), + ( + 'nostromo', + 'Nostromo', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["nostromo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'note-chance', + 'Note Chance', + 'Banpresto', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["notechan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/notechan.cpp"]}'::jsonb + ), + ( + 'notetaker', + 'NoteTaker', + 'Xerox', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["notetakr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["xerox/notetaker.cpp"]}'::jsonb + ), + ( + 'noukone-puzzle-takoron-gdl-0042', + 'Noukone Puzzle Takoron (GDL-0042)', + 'Compile Heart', + 2006, + array['Noukone Puzzle Takoron (Japan) (GDL-0042)'], + array['Puzzle'], + '{"mame":["takoron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'nouryoku-koujou-iinkai', + 'Nouryoku Koujou Iinkai', + 'Tecmo', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["nouryoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'nova-2001', + 'Nova 2001', + 'UPL', + 1983, + array['Nova 2001 (Japan)'], + array['Arcade'], + '{"mame":["nova2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/nova2001.cpp"]}'::jsonb + ), + ( + 'novo-play-multi-card-club-card', + 'Novo Play Multi Card / Club Card', + 'Admiral / Novomatic', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["novoplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'ntcash', + 'NtCash', + '', + 1999, + array['NtCash (set 1)'], + array['Arcade'], + '{"mame":["ntcash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'nubsup-mini-game-fan', + 'NubSup Mini Game Fan', + '', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["nubsupmf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'numan-athletics', + 'Numan Athletics', + 'Namco', + 1993, + array['Numan Athletics (World)'], + array['Arcade'], + '{"mame":["numanath"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'number-crash', + 'Number Crash', + 'Hanshin Goraku / Peni', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["numcrash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'number-one', + 'Number One', + 'San Remo Games', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["number1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sanremo.cpp"]}'::jsonb + ), + ( + 'nurete-mitaino-net-idol-hen', + 'Nurete Mitaino... - Net Idol Hen', + 'Nichibutsu/Love Factory', + 2000, + array['Nurete Mitaino... - Net Idol Hen (Japan)'], + array['Arcade'], + '{"mame":["nuretemi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'nuwang-feng-new-queen-bee-new', + 'Nuwang Feng New / Queen Bee New', + 'Subsino', + 2002, + array['Nuwang Feng New / Queen Bee New (China, Ver. 1.10)'], + array['Arcade'], + '{"mame":["queenbn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'nyanpai', + 'Nyanpai', + 'Nichibutsu', + 1996, + array['Nyanpai (Japan)'], + array['Arcade'], + '{"mame":["nyanpai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nyanpai.cpp"]}'::jsonb + ), + ( + 'ob68k1a-single-board-computer', + 'OB68K1A Single Board Computer', + 'Omnibyte', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["ob68k1a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omnibyte/ob68k1a.cpp"]}'::jsonb + ), + ( + 'ob8', + 'OB8', + 'Oberheim', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ob8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["oberheim/ob8.cpp"]}'::jsonb + ), + ( + 'ocean-paradise', + 'Ocean Paradise', + 'IGS', + 1999, + array['Ocean Paradise (V105US)'], + array['Arcade'], + '{"mame":["oceanpar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'odeon-twister-v1-4', + 'Odeon Twister (v1.4)', + 'CD Express', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["odeontw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'odeon-twister-2-v202-19', + 'Odeon Twister 2 (v202.19)', + 'CD Express', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["odeontw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'odyssey', + 'Odyssey', + 'Silicon Gaming', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["odyssey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/odyssey.cpp"]}'::jsonb + ), + ( + 'off-road-challenge-v1-63', + 'Off Road Challenge (v1.63)', + 'Midway', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["offroadc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midvunit.cpp"]}'::jsonb + ), + ( + 'off-the-charts', + 'Off The Charts', + 'WMS', + 2000, + array['Off The Charts (Russian)'], + array['Arcade'], + '{"mame":["otchart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'off-the-wall-2-3-player-upright', + 'Off the Wall (2/3-player upright)', + 'Atari Games', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["offtwall"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/offtwall.cpp"]}'::jsonb + ), + ( + 'off-the-wall-sente-10-16-84', + 'Off the Wall (Sente) (10/16/84)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["otwalls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'office-yeoin-cheonha', + 'Office Yeoin Cheonha', + 'Danbi', + 2001, + array['Office Yeoin Cheonha (version 1.2)'], + array['Arcade'], + '{"mame":["officeye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'offroad-thunder', + 'Offroad Thunder', + 'Midway Games', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["offrthnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midqslvr.cpp"]}'::jsonb + ), + ( + 'oh-my-god', + 'Oh My God!', + 'Atlus', + 1993, + array['Oh My God! (Japan)'], + array['Arcade'], + '{"mame":["ohmygod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/ohmygod.cpp"]}'::jsonb + ), + ( + 'oh-paipee', + 'Oh! Paipee', + 'Nichibutsu', + 1989, + array['Oh! Paipee (Japan 890227)'], + array['Arcade'], + '{"mame":["ohpaipee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8900.cpp"]}'::jsonb + ), + ( + 'oinori-daimyoujin-matsuri', + 'Oinori-daimyoujin Matsuri', + 'Sega', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["oinori"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'oishii-puzzle-ha-irimasenka', + 'Oishii Puzzle Ha Irimasenka', + 'Sunsoft / Atlus', + 1993, + '{}'::text[], + array['Puzzle'], + '{"mame":["oisipuzl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'ojamajo-doremi-no-tv-de-magical-cooking', + 'Ojamajo Doremi no TV de Magical Cooking', + 'Bandai', + 2001, + array['Ojamajo Doremi no TV de Magical Cooking (Japan)'], + array['Arcade'], + '{"mame":["bancook"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'ojanko-club', + 'Ojanko Club', + 'V-System Co.', + 1986, + array['Ojanko Club (Japan, Program Ver. 1.3, set 1)'], + array['Arcade'], + '{"mame":["ojankoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/ojankohs.cpp"]}'::jsonb + ), + ( + 'ojanko-high-school', + 'Ojanko High School', + 'V-System Co.', + 1988, + array['Ojanko High School (Japan)'], + array['Arcade'], + '{"mame":["ojankohs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/ojankohs.cpp"]}'::jsonb + ), + ( + 'ojanko-yakata', + 'Ojanko Yakata', + 'V-System Co.', + 1986, + array['Ojanko Yakata (Japan)'], + array['Arcade'], + '{"mame":["ojankoy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/ojankohs.cpp"]}'::jsonb + ), + ( + 'ojanko-yakata-2bankan', + 'Ojanko Yakata 2bankan', + 'V-System Co.', + 1987, + array['Ojanko Yakata 2bankan (Japan)'], + array['Arcade'], + '{"mame":["ojanko2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/ojankohs.cpp"]}'::jsonb + ), + ( + 'ojousan', + 'Ojousan', + 'Nichibutsu', + 1987, + array['Ojousan (Japan 871204)'], + array['Arcade'], + '{"mame":["ojousan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'oli-boo-chu', + 'Oli-Boo-Chu', + 'Irem (GDI license)', + 1981, + array['Oli-Boo-Chu (USA)'], + array['Arcade'], + '{"mame":["olibochu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/olibochu.cpp"]}'::jsonb + ), + ( + 'olivetti-l1-m20', + 'Olivetti L1 M20', + 'Olivetti', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["m20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olivetti/m20.cpp"]}'::jsonb + ), + ( + 'olivetti-l1-m44', + 'Olivetti L1 M44', + 'Olivetti', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["m44"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olivetti/m20.cpp"]}'::jsonb + ), + ( + 'ollie-king-gdx-0007', + 'Ollie King (GDX-0007)', + 'Sega / Amusement Vision', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["ollie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'olympia-boss-d', + 'Olympia BOSS D', + 'Olympia International', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["olybossd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympiaint/olyboss.cpp"]}'::jsonb + ), + ( + 'olympia-olytext-20', + 'Olympia Olytext 20', + 'Olympia International', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["olytext"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympiaint/olytext.cpp"]}'::jsonb + ), + ( + 'olympian-games', + 'Olympian Games', + 'Astro Corp.', + 2005, + array['Olympian Games (Russia)'], + array['Arcade'], + '{"mame":["oligam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'olympic-5', + 'Olympic 5', + 'IGS', + 2005, + array['Olympic 5 (V112US)'], + array['Arcade'], + '{"mame":["olympic5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'olympic-hot-stuff-tas-5-reel-system', + 'Olympic Hot Stuff (TAS 5 Reel System)', + 'Olympic Video Gaming', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hotstuff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/hotstuff.cpp"]}'::jsonb + ), + ( + 'olympus', + 'Olympus', + 'Z Games', + null, + array['Olympus (Z Games, version 10)'], + array['Arcade'], + '{"mame":["olymp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'omar-i', + 'Omar I', + 'Tryom', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["omar1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tryom/omar.cpp"]}'::jsonb + ), + ( + 'omar-ii', + 'Omar II', + 'Tryom', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["omar2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tryom/omar.cpp"]}'::jsonb + ), + ( + 'omatsuri-yasan-ganso-takoyaki', + 'Omatsuri Yasan: Ganso Takoyaki', + 'Cave', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["oygt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/fstgfish.cpp"]}'::jsonb + ), + ( + 'omega', + 'Omega', + 'Nihon System', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["omega"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freekick.cpp"]}'::jsonb + ), + ( + 'omega-fighter', + 'Omega Fighter', + 'UPL', + 1989, + array['Omega Fighter (set 1)'], + array['Arcade'], + '{"mame":["omegaf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/ninjakd2.cpp"]}'::jsonb + ), + ( + 'omega-race', + 'Omega Race', + 'Midway', + 1981, + array['Omega Race (set 1)'], + array['Arcade'], + '{"mame":["omegrace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/omegrace.cpp"]}'::jsonb + ), + ( + 'omotesandou', + 'Omotesandou', + 'Anime Tec', + 1989, + array['Omotesandou (Japan 890215)'], + array['Arcade'], + '{"mame":["omotesnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'ondra', + 'Ondra', + 'Tesla', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["ondrat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tesla/ondra.cpp"]}'::jsonb + ), + ( + 'one-two', + 'One + Two', + 'Barko', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["onetwo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dgrm/onetwo.cpp"]}'::jsonb + ), + ( + 'one-shot-one-kill', + 'One Shot One Kill', + 'Promat', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["oneshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/oneshot.cpp"]}'::jsonb + ), + ( + 'onna-sanshirou-typhoon-gal', + 'Onna Sanshirou - Typhoon Gal', + 'Taito', + 1985, + array['Onna Sanshirou - Typhoon Gal (rev 1)'], + array['Arcade'], + '{"mame":["onna34ro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/flstory.cpp"]}'::jsonb + ), + ( + 'ooparts', + 'OOPArts', + 'hack', + 1992, + array['OOPArts (prototype, joystick hack)'], + array['Arcade'], + '{"mame":["ooparts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'oozumou-the-grand-sumo', + 'Oozumou - The Grand Sumo', + 'Data East Corporation', + 1984, + array['Oozumou - The Grand Sumo (DECO Cassette) (Japan)'], + array['Arcade'], + '{"mame":["coozumou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'opa-opa-mc-8123-317-0042', + 'Opa Opa (MC-8123, 317-0042)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["opaopa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'open-5-cards', + 'Open 5 Cards', + 'MNG', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["op5cards"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'operation-thunder-hurricane', + 'Operation Thunder Hurricane', + 'Konami', + 1997, + array['Operation Thunder Hurricane (ver EAA)'], + array['Arcade'], + '{"mame":["thunderh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gticlub.cpp"]}'::jsonb + ), + ( + 'operation-thunderbolt', + 'Operation Thunderbolt', + 'Taito Corporation Japan', + 1988, + array['Operation Thunderbolt (World, rev 1)'], + array['Arcade'], + '{"mame":["othunder"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/othunder.cpp"]}'::jsonb + ), + ( + 'operation-wolf', + 'Operation Wolf', + 'Taito Corporation Japan', + 1987, + array['Operation Wolf (World, rev 2, set 1)'], + array['Light gun'], + '{"mame":["opwolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/opwolf.cpp"]}'::jsonb + ), + ( + 'operation-wolf-3', + 'Operation Wolf 3', + 'Taito Corporation Japan', + 1994, + array['Operation Wolf 3 (World)'], + array['Light gun'], + '{"mame":["opwolf3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/slapshot.cpp"]}'::jsonb + ), + ( + 'opinion-rx-850', + 'Opinion (RX-850)', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rx850"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'orange-club-maruhi-kagai-jugyou', + 'Orange Club - Maruhi Kagai Jugyou', + 'Daiichi Denshi', + 1988, + array['Orange Club - Maruhi Kagai Jugyou (Japan 880213)'], + array['Arcade'], + '{"mame":["orangec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'orao-102', + 'Orao 102', + 'PEL Varazdin', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["orao"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/orao.cpp"]}'::jsonb + ), + ( + 'orbatak', + 'Orbatak', + 'American Laser Games', + 1995, + array['Orbatak (prototype)'], + array['Arcade'], + '{"mame":["orbatak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + 'orbit', + 'Orbit', + 'Atari', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["orbit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/orbit.cpp"]}'::jsonb + ), + ( + 'orbit-9090-the-dance-planet', + 'Orbit 9090 - The Dance Planet', + 'E-mu Systems', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["orbit9090"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'orbite', + 'Orbite', + 'Model Racing', + null, + array['Orbite (prototype)'], + array['Arcade'], + '{"mame":["orbite"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'orbitron', + 'Orbitron', + 'Comsoft (Signatron USA license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["orbitron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'orbs', + 'Orbs', + 'American Sammy', + 1994, + array['Orbs (10/7/94 prototype?)'], + array['Arcade'], + '{"mame":["orbs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'ordyne', + 'Ordyne', + 'Namco', + 1988, + array['Ordyne (World)'], + array['Arcade'], + '{"mame":["ordyne"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'oric-1', + 'Oric-1', + 'Tangerine', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["oric1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tangerine/oric.cpp"]}'::jsonb + ), + ( + 'oriental-legend-xiyou-shi-e-zhuan', + 'Oriental Legend / Xiyou Shi E Zhuan', + 'IGS', + 1997, + array['Oriental Legend / Xiyou Shi E Zhuan (ver. 126)'], + array['Arcade'], + '{"mame":["orlegend"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'oriental-legend-2', + 'Oriental Legend 2', + 'IGS', + 2007, + array['Oriental Legend 2 (V104, Oversea)'], + array['Arcade'], + '{"mame":["orleg2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm2.cpp"]}'::jsonb + ), + ( + 'oriental-legend-2-xiyou-shi-e-zhuan-qunmoluanwu-oriental-ex', + 'Oriental Legend 2 / Xiyou Shi E Zhuan Qunmoluanwu [Oriental Ex]', + 'IGS', + 2004, + array['Oriental Legend 2 (Korea) / Xiyou Shi E Zhuan Qunmoluanwu (World, China, Japan, Hong Kong, Taiwan) (ver. 205) [Oriental Ex]'], + array['Arcade'], + '{"mame":["oldsplus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'oriental-legend-super-xiyou-shi-e-zhuan-super', + 'Oriental Legend Super / Xiyou Shi E Zhuan Super', + 'IGS', + 1998, + array['Oriental Legend Super / Xiyou Shi E Zhuan Super (ver. 101, Korean Board)'], + array['Arcade'], + '{"mame":["olds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'ormatu-2001', + 'Ormatu 2001', + 'Ormatu Electronics', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ormatu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["arcadia/arcadia.cpp"]}'::jsonb + ), + ( + 'osborne-1', + 'Osborne-1', + 'Osborne', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["osborne1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["osborne/osborne1.cpp"]}'::jsonb + ), + ( + 'osman', + 'Osman', + 'Mitchell', + 1996, + array['Osman (World)'], + array['Arcade'], + '{"mame":["osman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/simpl156.cpp"]}'::jsonb + ), + ( + 'otakara-itadaki-luffy-kaizoku-dan', + 'Otakara Itadaki Luffy Kaizoku-Dan!', + 'Banpresto / Eiichiro Oda / Shueisha - Fuji TV - Toho Animation', + 2001, + array['Otakara Itadaki Luffy Kaizoku-Dan! (Japan, v1.02)'], + array['Arcade'], + '{"mame":["lufykzku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'othello', + 'Othello', + 'Success', + 1984, + array['Othello (version 3.0)'], + array['Arcade'], + '{"mame":["othello"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/othello.cpp"]}'::jsonb + ), + ( + 'othello-derby', + 'Othello Derby', + 'Sunwise', + 1995, + array['Othello Derby (Japan)'], + array['Arcade'], + '{"mame":["othldrby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/sunwise.cpp"]}'::jsonb + ), + ( + 'othello-shiyouyo-j-980423-v1-002', + 'Othello Shiyouyo (J 980423 V1.002)', + 'Success', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["othellos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'otomedius', + 'Otomedius', + 'Konami', + 2007, + array['Otomedius (ver GGG:J:A:A:2008041801)'], + array['Arcade'], + '{"mame":["otomedius"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/otomedius.cpp"]}'::jsonb + ), + ( + 'out-run', + 'Out Run', + 'Sega', + 1986, + array['Out Run (sitdown/upright, Rev B)'], + array['Arcade'], + '{"mame":["outrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaorun.cpp"]}'::jsonb + ), + ( + 'out-run-mega-tech-sms-based', + 'Out Run (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_orun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'out-zone', + 'Out Zone', + 'Toaplan', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["outzone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/toaplan1.cpp"]}'::jsonb + ), + ( + 'outlaw', + 'Outlaw', + 'Atari', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["outlaw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'outrun-2-gdx-0004a', + 'OutRun 2 (GDX-0004A)', + 'Sega', + 2003, + array['OutRun 2 (Rev A) (GDX-0004A)'], + array['Racing'], + '{"mame":["outr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'outrun-2-sp-sdx', + 'OutRun 2 SP SDX', + 'Sega', + 2006, + '{}'::text[], + array['Racing'], + '{"mame":["outr2sdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'outrun-2-special-tours-gdx-0014a', + 'OutRun 2 Special Tours (GDX-0014A)', + 'Sega', + 2004, + array['OutRun 2 Special Tours (Rev A) (GDX-0014A)'], + array['Racing'], + '{"mame":["outr2st"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'outrunners', + 'OutRunners', + 'Sega', + 1992, + array['OutRunners (World)'], + array['Arcade'], + '{"mame":["orunners"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'outtrigger', + 'OutTrigger', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["otrigger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'over-drive', + 'Over Drive', + 'Konami', + 1990, + array['Over Drive (set 1)'], + array['Arcade'], + '{"mame":["overdriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/overdriv.cpp"]}'::jsonb + ), + ( + 'over-rev', + 'Over Rev', + 'Jaleco', + 1997, + array['Over Rev (Model 2C, Revision A)'], + array['Arcade'], + '{"mame":["overrev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'over-top', + 'Over Top', + 'ADK', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["overtop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ozma-wars', + 'Ozma Wars', + 'SNK', + 1979, + array['Ozma Wars (set 1)'], + array['Arcade'], + '{"mame":["ozmawars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'ozon-i', + 'Ozon I', + 'Proma', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ozon1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'p-47-aces', + 'P-47 Aces', + 'Jaleco', + 1995, + array['P-47 Aces (ver 1.1)'], + array['Arcade'], + '{"mame":["p47aces"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'p-47-the-phantom-fighter', + 'P-47: The Phantom Fighter', + 'Jaleco', + 1988, + array['P-47: The Phantom Fighter (World)'], + array['Arcade'], + '{"mame":["p47"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'p-i-m-p-s', + 'P.I.M.P.S.', + 'Henry Colford', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pimps"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/pimps.cpp"]}'::jsonb + ), + ( + 'p-o-w-prisoners-of-war', + 'P.O.W. - Prisoners of War', + 'SNK', + 1988, + array['P.O.W. - Prisoners of War (US version 1)'], + array['Arcade'], + '{"mame":["pow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk68.cpp"]}'::jsonb + ), + ( + 'p-s-attack', + 'P''s Attack', + 'Uniana', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["psattack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/psattack.cpp"]}'::jsonb + ), + ( + 'p112', + 'P112', + 'Dave Brooks', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["p112"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/p112.cpp"]}'::jsonb + ), + ( + 'p5tx-la-i430tx', + 'P5TX-LA (i430TX)', + 'ECS', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["p5txla"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitowlf.cpp"]}'::jsonb + ), + ( + 'pac-and-pal', + 'Pac & Pal', + 'Namco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pacnpal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'pac-carnival', + 'Pac-Carnival', + 'Namco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["paccarn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'pac-eight', + 'Pac-Eight', + 'Namco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["paceight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'pac-land', + 'Pac-Land', + 'Namco', + 1984, + array['Pac-Land (World)'], + array['Arcade'], + '{"mame":["pacland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/pacland.cpp"]}'::jsonb + ), + ( + 'pac-man-25th-anniversary-edition', + 'Pac-Man - 25th Anniversary Edition', + 'Namco / Cosmodog', + 2006, + array['Pac-Man - 25th Anniversary Edition (Rev 3.00)'], + array['Classic'], + '{"mame":["25pacman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/20pacgal.cpp"]}'::jsonb + ), + ( + 'pac-man-arcade-in-a-tin', + 'Pac-Man Arcade in a Tin', + 'Fizz Creations', + 2021, + '{}'::text[], + array['Classic'], + '{"mame":["pactin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'pac-man-battle-royale', + 'Pac-Man Battle Royale', + 'Namco', + 2011, + array['Pac-Man Battle Royale (US, PBR1022-NA-A)'], + array['Classic'], + '{"mame":["pacmanbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'pac-man-plus', + 'Pac-Man Plus', + 'Namco (Midway license)', + 1982, + '{}'::text[], + array['Classic'], + '{"mame":["pacplus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'pac-man-s-arcade-party-pmaam12-na-a', + 'Pac-Man''s Arcade Party (PMAAM12-NA-A)', + 'Namco', + 2010, + '{}'::text[], + array['Classic'], + '{"mame":["pacmanap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'pac-mania', + 'Pac-Mania', + 'Namco', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pacmania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'paca-paca-passion', + 'Paca Paca Passion', + 'Produce / Namco', + 1998, + array['Paca Paca Passion (Japan, PPP1/VER.A2)'], + array['Arcade'], + '{"mame":["pacapp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'paca-paca-passion-2', + 'Paca Paca Passion 2', + 'Produce / Namco', + 1999, + array['Paca Paca Passion 2 (Japan, PKS1/VER.A)'], + array['Arcade'], + '{"mame":["pacapp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'paca-paca-passion-special', + 'Paca Paca Passion Special', + 'Produce / Namco', + 1999, + array['Paca Paca Passion Special (Japan, PSP1/VER.A)'], + array['Arcade'], + '{"mame":["pacappsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'pachifever', + 'Pachifever', + 'Sanki Denshi Kogyo', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pachifev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pachifev.cpp"]}'::jsonb + ), + ( + 'pack-n-bang-bang', + 'Pack''n Bang Bang', + 'Kaneko', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["packbang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'pacman-ball', + 'Pacman BALL', + 'Namco', + 2003, + array['Pacman BALL (PMB2 Ver.A.)'], + array['Arcade'], + '{"mame":["pacmball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'pacman-club-club-lambada-argentina', + 'Pacman Club / Club Lambada (Argentina)', + 'hack (Miky SRL)', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["clubpacm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'paddle-mania', + 'Paddle Mania', + 'SNK', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["paddlema"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k_i.cpp"]}'::jsonb + ), + ( + 'paint-n-puzzle', + 'Paint ''N Puzzle', + 'Century Vending', + 1993, + '{}'::text[], + array['Puzzle'], + '{"mame":["pntnpuzl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pntnpuzl.cpp"]}'::jsonb + ), + ( + 'paint-n-puzzle-super', + 'Paint ''N Puzzle Super', + 'Century Vending / Green Concepts International', + 1994, + '{}'::text[], + array['Puzzle'], + '{"mame":["pntnpuzls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pntnpuzls.cpp"]}'::jsonb + ), + ( + 'pairs-italian-gambling-game', + 'Pairs (Italian gambling game)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pairsh8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'pairs-nichibutsu', + 'Pairs (Nichibutsu)', + 'Nichibutsu', + 1989, + array['Pairs (Nichibutsu) (Japan 890822)'], + array['Arcade'], + '{"mame":["pairsnb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'pairs-v1-2-09-30-94', + 'Pairs (V1.2, 09/30/94)', + 'Strata / Incredible Technologies', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pairs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'pairs-love', + 'Pairs Love', + 'Athena / Nihon System', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["pairlove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'pairs-redemption-v1-0-10-25-94', + 'Pairs Redemption (V1.0, 10/25/94)', + 'Strata / Incredible Technologies', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pairsred"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'palamedes', + 'Palamedes', + 'Hot-B Co., Ltd.', + 1990, + array['Palamedes (US)'], + array['Arcade'], + '{"mame":["palamed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'palladium-video-computer-game', + 'Palladium Video-Computer-Game', + 'Neckermann', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["plldium"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["arcadia/arcadia.cpp"]}'::jsonb + ), + ( + 'palm-top-pc-110', + 'Palm Top PC-110', + 'International Business Machines', + 1995, + array['Palm Top PC-110 (Japan)'], + array['Arcade'], + '{"mame":["ptpc110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/ptpc110.cpp"]}'::jsonb + ), + ( + 'panda-train-novamatic-1-7', + 'Panda Train (Novamatic 1.7)', + 'Subsino', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["ptrain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'pandora-s-palace', + 'Pandora''s Palace', + 'Konami / Interlogic', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pandoras"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/pandoras.cpp"]}'::jsonb + ), + ( + 'panel-and-variety-akamaru-q-joushou-dont-r', + 'Panel & Variety Akamaru Q Joushou Dont-R', + 'Dynax (Nakanihon license)', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["akamaru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'pang', + 'Pang', + 'Mitchell', + 1989, + array['Pang (World)'], + array['Arcade'], + '{"mame":["pang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'pang-pang', + 'Pang Pang', + 'Dong Gue La Mi Ltd.', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pangpang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'pang-pom-s', + 'Pang Pom''s', + 'Metro', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["pangpoms"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'pang-3', + 'Pang! 3', + 'Mitchell', + 1995, + array['Pang! 3 (Europe 950601)'], + array['Arcade'], + '{"mame":["pang3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'panic-bomber', + 'Panic Bomber', + 'Eighting / Hudson', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["panicbom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'panic-park', + 'Panic Park', + 'Namco', + 1997, + array['Panic Park (World, PNP2 Ver. A)'], + array['Arcade'], + '{"mame":["panicprk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'panic-road', + 'Panic Road', + 'Seibu Kaihatsu (Taito license)', + 1986, + array['Panic Road (Japan)'], + array['Arcade'], + '{"mame":["panicr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/panicr.cpp"]}'::jsonb + ), + ( + 'panic-street', + 'Panic Street', + 'Kaneko', + 1999, + array['Panic Street (Japan)'], + array['Arcade'], + '{"mame":["panicstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'panikuru-panekuru', + 'Panikuru Panekuru', + 'Namco', + 2002, + array['Panikuru Panekuru (Japan, PPA1 Ver.A)'], + array['Arcade'], + '{"mame":["panikuru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'panther', + 'Panther', + 'Irem', + 1981, + array['Panther (bootleg?)'], + array['Arcade'], + '{"mame":["panther"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/redalert.cpp"]}'::jsonb + ), + ( + 'paparazzi', + 'Paparazzi', + 'Yun Sung', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["paprazzi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsun16.cpp"]}'::jsonb + ), + ( + 'paperboy', + 'Paperboy', + 'Atari Games', + 1984, + array['Paperboy (rev 3)'], + array['Arcade'], + '{"mame":["paperboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy2.cpp"]}'::jsonb + ), + ( + 'paracaidista', + 'Paracaidista', + 'Video Game / Electrogame', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["paraca"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/paracaidista.cpp"]}'::jsonb + ), + ( + 'paradar', + 'Paradar', + 'Videos A A', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["paradar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videosaa.cpp"]}'::jsonb + ), + ( + 'paradise', + 'Paradise', + 'Industrias Brasileiras', + 1994, + array['Paradise (Industrias Brasileiras, Version 1.04)', 'Paradise (set 1)'], + array['Arcade'], + '{"mame":["bingopd","paradise"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp","yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'paradise-2-deluxe', + 'Paradise 2 Deluxe', + 'Yun Sung', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["para2dx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'paradise-deluxe', + 'Paradise Deluxe', + 'Yun Sung', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["paradlx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'parallel-turn', + 'Parallel Turn', + 'Jaleco', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pturn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/pturn.cpp"]}'::jsonb + ), + ( + 'paraparadancing', + 'ParaParaDancing', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["ppd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'paraparaparadise', + 'ParaParaParadise', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["ppp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'paraparaparadise-2nd-mix-jaa', + 'ParaParaParadise 2nd Mix (JAA)', + 'Konami', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ppp2nd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'paraparaparadise-v1-1', + 'ParaParaParadise v1.1', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["ppp11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'parent-jack', + 'Parent Jack', + 'Taito', + 1989, + array['Parent Jack (Japan)'], + array['Arcade'], + '{"mame":["parentj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_o.cpp"]}'::jsonb + ), + ( + 'paris-dakar-31-03-87-spanish', + 'Paris Dakar (31/03/87, Spanish)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_pdak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'parlour-games-mega-tech-sms-based', + 'Parlour Games (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_parlg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'parodius-da-shinwa-kara-owarai-e', + 'Parodius Da!: Shinwa kara Owarai e', + 'Konami', + 1990, + array['Parodius Da!: Shinwa kara Owarai e (World, set 1)'], + array['Arcade'], + '{"mame":["parodius"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/parodius.cpp"]}'::jsonb + ), + ( + 'partner', + 'Partner', + 'Iskra Delta', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["partnerw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/idpartner.cpp"]}'::jsonb + ), + ( + 'party-time-gonta-the-diver-ii-ganbare-gonta-2', + 'Party Time: Gonta the Diver II / Ganbare! Gonta!! 2', + 'Mitchell', + 1995, + array['Party Time: Gonta the Diver II / Ganbare! Gonta!! 2 (World Release)'], + array['Arcade'], + '{"mame":["prtytime"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/simpl156.cpp"]}'::jsonb + ), + ( + 'pasha-pasha-2', + 'Pasha Pasha 2', + 'Dong Sung', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["pasha2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pasha2.cpp"]}'::jsonb + ), + ( + 'pasogo', + 'PasoGo', + 'KOEI', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["pasogo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["koei/pasogo.cpp"]}'::jsonb + ), + ( + 'pasopia-1600', + 'Pasopia 1600', + 'Toshiba', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["paso1600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toshiba/paso1600.cpp"]}'::jsonb + ), + ( + 'pasopia-7-pa7007-raster', + 'Pasopia 7 PA7007 (Raster)', + 'Toshiba', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pasopia7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toshiba/pasopia7.cpp"]}'::jsonb + ), + ( + 'pass', + 'Pass', + 'Oksan', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["pass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pass.cpp"]}'::jsonb + ), + ( + 'passing-shot-fd1094-317-0080', + 'Passing Shot (FD1094 317-0080)', + 'Sega', + 1988, + array['Passing Shot (World, 2 Players) (FD1094 317-0080)'], + array['Arcade'], + '{"mame":["passsht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'pastel-gal', + 'Pastel Gal', + 'Nichibutsu', + 1985, + array['Pastel Gal (Japan 851224)'], + array['Arcade'], + '{"mame":["pastelg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/pastelg.cpp"]}'::jsonb + ), + ( + 'pastel-island', + 'Pastel Island', + 'Visco', + 1993, + array['Pastel Island (Japan, prototype)'], + array['Arcade'], + '{"mame":["pastelis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'pata-pata-panic', + 'Pata Pata Panic', + 'Atlus', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["patapata"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/patapata.cpp"]}'::jsonb + ), + ( + 'patinho-feio', + 'Patinho Feio', + 'Escola Politecnica - Universidade de Sao Paulo', + 1972, + '{}'::text[], + array['Arcade'], + '{"mame":["patinho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["usp/patinhofeio.cpp"]}'::jsonb + ), + ( + 'pb-1000', + 'PB-1000', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pb1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pb1000.cpp"]}'::jsonb + ), + ( + 'pb-2000c', + 'PB-2000c', + 'Casio', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pb2000c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pb1000.cpp"]}'::jsonb + ), + ( + 'pc-100', + 'PC-100', + 'NEC', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pc100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc100.cpp"]}'::jsonb + ), + ( + 'pc-286u', + 'PC-286U', + 'Epson', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc286u"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801_epson.cpp"]}'::jsonb + ), + ( + 'pc-286vs', + 'PC-286VS', + 'Epson', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc286vs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801_epson.cpp"]}'::jsonb + ), + ( + 'pc-386m', + 'PC-386M', + 'Epson', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc386m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801_epson.cpp"]}'::jsonb + ), + ( + 'pc-486mu', + 'PC-486MU', + 'Epson', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pc486mu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801_epson.cpp"]}'::jsonb + ), + ( + 'pc-6001', + 'PC-6001', + 'NEC', + 1981, + array['PC-6001 (Japan)'], + array['Arcade'], + '{"mame":["pc6001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc6001.cpp"]}'::jsonb + ), + ( + 'pc-6001mkii', + 'PC-6001mkII', + 'NEC', + 1983, + array['PC-6001mkII (Japan)'], + array['Arcade'], + '{"mame":["pc6001mk2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc6001.cpp"]}'::jsonb + ), + ( + 'pc-6001mkiisr', + 'PC-6001mkIISR', + 'NEC', + 1984, + array['PC-6001mkIISR (Japan)'], + array['Arcade'], + '{"mame":["pc6001mk2sr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc6001.cpp"]}'::jsonb + ), + ( + 'pc-8001', + 'PC-8001', + 'NEC', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8001.cpp"]}'::jsonb + ), + ( + 'pc-8201', + 'PC-8201', + 'NEC', + 1983, + array['PC-8201 (Japan)'], + array['Arcade'], + '{"mame":["pc8201"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kyocera/kyocera.cpp"]}'::jsonb + ), + ( + 'pc-8401bd', + 'PC-8401BD', + 'NEC', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8401bd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8401a.cpp"]}'::jsonb + ), + ( + 'pc-8500', + 'PC-8500', + 'NEC', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8401a.cpp"]}'::jsonb + ), + ( + 'pc-8801', + 'PC-8801', + 'NEC', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8801"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8801.cpp"]}'::jsonb + ), + ( + 'pc-8801ma', + 'PC-8801MA', + 'NEC', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8801ma"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8801.cpp"]}'::jsonb + ), + ( + 'pc-8801mh', + 'PC-8801MH', + 'NEC', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8801mh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8801.cpp"]}'::jsonb + ), + ( + 'pc-8801mkiisr', + 'PC-8801mkIISR', + 'NEC', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8801mk2sr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8801.cpp"]}'::jsonb + ), + ( + 'pc-88va', + 'PC-88VA', + 'NEC', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc88va"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc88va.cpp"]}'::jsonb + ), + ( + 'pc-9801', + 'PC-9801', + 'NEC', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801bx2-u2-98-fellow', + 'PC-9801BX2/U2 (98 FELLOW)', + 'NEC', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801bx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801dx', + 'PC-9801DX', + 'NEC', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801dx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801fs', + 'PC-9801FS', + 'NEC', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801fs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801rs', + 'PC-9801RS', + 'NEC', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801rs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801rx', + 'PC-9801RX', + 'NEC', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801rx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801us', + 'PC-9801US', + 'NEC', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801us"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801ux', + 'PC-9801UX', + 'NEC', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801ux"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801vm', + 'PC-9801VM', + 'NEC', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801vm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801vx', + 'PC-9801VX', + 'NEC', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801vx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9821-98multi', + 'PC-9821 (98MULTi)', + 'NEC', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-9821as-98mate-a', + 'PC-9821As (98MATE A)', + 'NEC', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821as"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-9821ce-98multi-canbe', + 'PC-9821Ce (98MULTi CanBe)', + 'NEC', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821ce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-9821cx3-98multi-canbe', + 'PC-9821Cx3 (98MULTi CanBe)', + 'NEC', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821cx3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-9821nr15-98note-lavie', + 'PC-9821Nr15 (98NOTE Lavie)', + 'NEC', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821nr15"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-9821ra20-98mate-r', + 'PC-9821Ra20 (98MATE R)', + 'NEC', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821ra20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-9821xa16-98mate-x', + 'PC-9821Xa16 (98MATE X)', + 'NEC', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821xa16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-98ha-handy98', + 'PC-98HA (Handy98)', + 'NEC', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc98ha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc98ha.cpp"]}'::jsonb + ), + ( + 'pc-98lt', + 'PC-98LT', + 'NEC', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc98lt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc98ha.cpp"]}'::jsonb + ), + ( + 'pc-d', + 'PC-D', + 'Siemens', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pcd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["siemens/pcd.cpp"]}'::jsonb + ), + ( + 'pc-fx', + 'PC-FX', + 'NEC', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pcfx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pcfx.cpp"]}'::jsonb + ), + ( + 'pc-h98s-model-8-u8', + 'PC-H98S model 8/U8', + 'NEC', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_h98s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc_h98.cpp"]}'::jsonb + ), + ( + 'pc-mx2', + 'PC-MX2', + 'Siemens', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pcmx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["siemens/pcmx2.cpp"]}'::jsonb + ), + ( + 'pc-m', + 'PC/M', + 'Mugler/Mathes', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pcm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/pcm.cpp"]}'::jsonb + ), + ( + 'pc532', + 'pc532', + 'George Scolaro', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc532"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/pc532.cpp"]}'::jsonb + ), + ( + 'pcs-30', + 'PCS-30', + 'Yamaha', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pcs30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympcs30.cpp"]}'::jsonb + ), + ( + 'pdp-1', + 'PDP-1', + 'Digital Equipment Corporation', + 1961, + '{}'::text[], + array['Arcade'], + '{"mame":["pdp1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/pdp1.cpp"]}'::jsonb + ), + ( + 'pdp-11-unibus-m9301-ya', + 'PDP-11 [Unibus](M9301-YA)', + 'Digital Equipment Corporation', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pdp11ub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/pdp11.cpp"]}'::jsonb + ), + ( + 'pebble-beach-the-great-shot-jue-950913-v0-990', + 'Pebble Beach - The Great Shot (JUE 950913 V0.990)', + 'T&E Soft', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["pblbeach"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'pecom-32', + 'Pecom 32', + 'Ei Nis (Elektronska Industrija Nis)', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pecom32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/pecom.cpp"]}'::jsonb + ), + ( + 'peek-a-boo', + 'Peek-a-Boo!', + 'Jaleco', + 1993, + array['Peek-a-Boo! (Japan, ver. 1.1)'], + array['Arcade'], + '{"mame":["peekaboo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'peggle-joystick-v1-0', + 'Peggle (Joystick, v1.0)', + 'Strata / Incredible Technologies', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["peggle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'penfan-girls-step1-mild-mind', + 'Penfan Girls - Step1. Mild Mind', + 'Eolith', + 1999, + array['Penfan Girls - Step1. Mild Mind (set 1)'], + array['Arcade'], + '{"mame":["penfan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'pengo', + 'Pengo', + 'Sega', + 1982, + array['Pengo (World, not encrypted, rev A)'], + array['Arcade'], + '{"mame":["pengo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pengo.cpp"]}'::jsonb + ), + ( + 'penguin-brothers', + 'Penguin Brothers', + 'Subsino', + 2000, + array['Penguin Brothers (Japan)'], + array['Arcade'], + '{"mame":["penbros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'penguin-party-tm-01-01-b-2012-01-16', + 'Penguin Party (TM.01.01.B, 2012/01/16)', + 'Astro Corp.', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["pengprty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/hummer.cpp"]}'::jsonb + ), + ( + 'penguin-kun-wars', + 'Penguin-Kun Wars', + 'UPL', + 1985, + array['Penguin-Kun Wars (US)'], + array['Arcade'], + '{"mame":["pkunwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/nova2001.cpp"]}'::jsonb + ), + ( + 'penky', + 'Penky', + 'Yun Sung', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["penky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'people-pc', + 'People PC', + 'Olympia International', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["olypeopl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympiaint/peoplepc.cpp"]}'::jsonb + ), + ( + 'pepper-ii', + 'Pepper II', + 'Exidy', + 1982, + array['Pepper II (version 8)'], + array['Arcade'], + '{"mame":["pepper2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'pepsi-man', + 'PEPSI Man', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pepsiman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'percussion-freaks', + 'Percussion Freaks', + 'Konami', + 1999, + array['Percussion Freaks (GQ881 VER. EAB)'], + array['Arcade'], + '{"mame":["pcnfrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-10th-mix', + 'Percussion Freaks 10th Mix', + 'Konami', + 2004, + array['Percussion Freaks 10th Mix (G*D40 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk10m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-2nd-mix', + 'Percussion Freaks 2nd Mix', + 'Konami', + 2000, + array['Percussion Freaks 2nd Mix (GE912 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-3rd-mix', + 'Percussion Freaks 3rd Mix', + 'Konami', + 2000, + array['Percussion Freaks 3rd Mix (G*A23 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk3m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-4th-mix', + 'Percussion Freaks 4th Mix', + 'Konami', + 2001, + array['Percussion Freaks 4th Mix (G*A25 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk4m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-5th-mix', + 'Percussion Freaks 5th Mix', + 'Konami', + 2001, + array['Percussion Freaks 5th Mix (G*B05 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk5m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-6th-mix', + 'Percussion Freaks 6th Mix', + 'Konami', + 2001, + array['Percussion Freaks 6th Mix (G*B16 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk6m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-7th-mix', + 'Percussion Freaks 7th Mix', + 'Konami', + 2002, + array['Percussion Freaks 7th Mix (G*C07 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk7m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-8th-mix', + 'Percussion Freaks 8th Mix', + 'Konami', + 2003, + array['Percussion Freaks 8th Mix (G*C38 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk8m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-9th-mix', + 'Percussion Freaks 9th Mix', + 'Konami', + 2003, + array['Percussion Freaks 9th Mix (G*D09 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk9m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'perestroika-girls', + 'Perestroika Girls', + 'Promat', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["perestro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/superqix.cpp"]}'::jsonb + ), + ( + 'perfect-billiard', + 'Perfect Billiard', + 'Nihon System (United Artists license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pbillrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freekick.cpp"]}'::jsonb + ), + ( + 'perfect-game', + 'Perfect Game', + 'WMS', + 2000, + array['Perfect Game (Russian)'], + array['Arcade'], + '{"mame":["perfect"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'performan', + 'Performan', + 'Toaplan / Data East Corporation', + 1985, + array['Performan (Japan)'], + array['Arcade'], + '{"mame":["perfrman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/slapfght.cpp"]}'::jsonb + ), + ( + 'personal-computer-pasopia-pa7010', + 'Personal Computer Pasopia PA7010', + 'Toshiba', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["pasopia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toshiba/pasopia.cpp"]}'::jsonb + ), + ( + 'personal-speech-system', + 'Personal Speech System', + 'Votrax', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["votrpss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["votrax/votrpss.cpp"]}'::jsonb + ), + ( + 'pet-avenue-my-room-fantasy', + 'Pet Avenue - My room fantasy', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jd367"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/superjr.cpp"]}'::jsonb + ), + ( + 'peter-pack-rat', + 'Peter Pack Rat', + 'Atari Games', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["peterpak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy1.cpp"]}'::jsonb + ), + ( + 'peter-pepper-s-ice-cream-factory', + 'Peter Pepper''s Ice Cream Factory', + 'Data East Corporation', + 1984, + array['Peter Pepper''s Ice Cream Factory (DECO Cassette) (US) (set 1)'], + array['Arcade'], + '{"mame":["cppicf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'phantom-ii', + 'Phantom II', + 'Midway', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["phantom2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'pharaohs-match-arcadia', + 'Pharaohs Match (Arcadia)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_pm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'phasor', + 'Phasor', + 'Linus Åkesson', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["phasor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/lft_phasor.cpp"]}'::jsonb + ), + ( + 'phc-20', + 'PHC-20', + 'Sanyo', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["phc20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanyo/phc20.cpp"]}'::jsonb + ), + ( + 'phc-25', + 'PHC-25', + 'Sanyo', + 1983, + array['PHC-25 (Europe)'], + array['Arcade'], + '{"mame":["phc25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanyo/phc25.cpp"]}'::jsonb + ), + ( + 'phelios', + 'Phelios', + 'Namco', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["phelios"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'philips-p2000t', + 'Philips P2000T', + 'Philips', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["p2000t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/p2000t.cpp"]}'::jsonb + ), + ( + 'phoenix', + 'Phoenix', + 'Amstar', + 1980, + array['Phoenix (Amstar, set 1)'], + array['Arcade'], + '{"mame":["phoenix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["phoenix/phoenix.cpp"]}'::jsonb + ), + ( + 'photo-play-1998-spain', + 'Photo Play 1998 (Spain)', + 'Funworld', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply98sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoply.cpp"]}'::jsonb + ), + ( + 'photo-play-1999-spain', + 'Photo Play 1999 (Spain)', + 'Funworld', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply99sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoply.cpp"]}'::jsonb + ), + ( + 'photo-play-2000-v2-01', + 'Photo Play 2000 (v2.01)', + 'Funworld', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoply.cpp"]}'::jsonb + ), + ( + 'photo-play-2001-italy', + 'Photo Play 2001 (Italy)', + 'Funworld', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply2k1it"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoply.cpp"]}'::jsonb + ), + ( + 'photo-play-2001-spanish', + 'Photo Play 2001 (Spanish)', + 'Funworld', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply2k1sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoplys.cpp"]}'::jsonb + ), + ( + 'photo-play-2002-belgium', + 'Photo Play 2002 (Belgium)', + 'Funworld', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply2k2be"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoply.cpp"]}'::jsonb + ), + ( + 'photo-play-2004', + 'Photo Play 2004', + 'Funworld', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply2k4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoply.cpp"]}'::jsonb + ), + ( + 'photo-play-spirit-xtreme-spanish', + 'Photo Play Spirit Xtreme (Spanish)', + 'Funworld', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["photopsxsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoplysx.cpp"]}'::jsonb + ), + ( + 'photo-y2k-chaoji-bi-yi-bi-dajia-lai-zhao-cha-real-and-fake', + 'Photo Y2K / Chaoji Bi Yi Bi / Dajia Lai Zhao Cha / Real and Fake', + 'IGS', + 1999, + array['Photo Y2K / Chaoji Bi Yi Bi / Dajia Lai Zhao Cha / Real and Fake (ver. 105)'], + array['Arcade'], + '{"mame":["photoy2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'photo-y2k-2-chaoji-bi-yi-bi-2-dajia-lai-zhao-cha-2-real-and-fake-2-photo-y2k-m101xx-05-25-', + 'Photo Y2K 2 / Chaoji Bi Yi Bi 2 / Dajia Lai Zhao Cha 2 / Real and Fake 2 Photo Y2K (M101XX 05/25/01 11:02:54)', + 'IGS', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["py2k2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'phozon', + 'Phozon', + 'Namco', + 1983, + array['Phozon (Japan)'], + array['Arcade'], + '{"mame":["phozon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'phraze-craze-6221-40-u5-3a-expanded-questions', + 'Phraze Craze (6221-40, U5-3A, Expanded Questions)', + 'Merit', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["phrcraze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'phunsy', + 'PHUNSY', + 'J.F.P. Philipse', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["phunsy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/phunsy.cpp"]}'::jsonb + ), + ( + 'piaoliang-jinhua', + 'Piaoliang Jinhua', + 'Sealy', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["pljh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_z80.cpp"]}'::jsonb + ), + ( + 'piaoliang-jinhua-2', + 'Piaoliang Jinhua 2', + 'Sealy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pljh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/menghong.cpp"]}'::jsonb + ), + ( + 'pick-n-win', + 'Pick ''n Win', + 'Amcoe', + 2001, + array['Pick ''n Win (Version 2.9E Dual)'], + array['Arcade'], + '{"mame":["pickwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'pickin', + 'Pickin''', + 'Valadon Automation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pickin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["valadon/bagman.cpp"]}'::jsonb + ), + ( + 'picky-talk-super-denshi-techou', + 'Picky Talk - Super Denshi Techou', + 'Casio', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["jd363"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'pico', + 'Pico', + 'Sega', + 1994, + array['Pico (Europe, PAL)'], + array['Arcade'], + '{"mame":["pico"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segapico.cpp"]}'::jsonb + ), + ( + 'picture-magic', + 'Picture Magic', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["segapm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segapm.cpp"]}'::jsonb + ), + ( + 'pied-piper-communicator-1', + 'Pied Piper Communicator 1', + 'STM Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stm/pp.cpp"]}'::jsonb + ), + ( + 'pig-newton', + 'Pig Newton', + 'Sega', + 1983, + array['Pig Newton (version C)'], + array['Arcade'], + '{"mame":["pignewt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80r.cpp"]}'::jsonb + ), + ( + 'pig-out-dine-like-a-swine', + 'Pig Out: Dine Like a Swine!', + 'Leland Corporation', + 1990, + array['Pig Out: Dine Like a Swine! (rev 2?)'], + array['Arcade'], + '{"mame":["pigout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'pigskin-621ad', + 'Pigskin 621AD', + 'Midway', + 1990, + array['Pigskin 621AD (rev 1.1K 8/01/90)'], + array['Arcade'], + '{"mame":["pigskin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr68.cpp"]}'::jsonb + ), + ( + 'pikkari-chance', + 'Pikkari Chance', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["pikkaric"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'pilot-kids', + 'Pilot Kids', + 'Psikyo', + 1998, + array['Pilot Kids (Model 2B, Revision A)'], + array['Arcade'], + '{"mame":["pltkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'pin-ups', + 'Pin Ups', + 'Nazionale Elettronica', + null, + array['Pin Ups (Ver 1.0 Rev A)'], + array['Arcade'], + '{"mame":["pinups"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'pinbo', + 'Pinbo', + 'Jaleco', + 1984, + array['Pinbo (set 1)'], + array['Arcade'], + '{"mame":["pinbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/lasso.cpp"]}'::jsonb + ), + ( + 'pinbot-playchoice-10', + 'PinBot (PlayChoice-10)', + 'Rare (Nintendo of America license)', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_pinbt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'ping-pong-table-tennis-super-ping-pong-pp1100-abl-tv-game', + 'Ping Pong / Table Tennis / Super Ping Pong (PP1100, ABL TV Game)', + 'Advance Bright Ltd', + 2006, + '{}'::text[], + array['Sports'], + '{"mame":["ablping"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'ping-pong-masters-93', + 'Ping Pong Masters ''93', + 'Electronic Devices S.R.L.', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ppmast93"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/ppmast93.cpp"]}'::jsonb + ), + ( + 'ping-pong-king', + 'Ping-Pong King', + 'Taito America Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ppking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/gladiatr.cpp"]}'::jsonb + ), + ( + 'pingu-s-ice-block', + 'Pingu''s Ice Block', + 'Pygos Group / Capcom', + 2006, + array['Pingu''s Ice Block (Ver.1.00 2006/01/27)'], + array['Arcade'], + '{"mame":["pingu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'pink-sweets-ibara-sorekara', + 'Pink Sweets: Ibara Sorekara', + 'Cave (AMI license)', + 2006, + array['Pink Sweets: Ibara Sorekara (Japan, 2006/04/06 MASTER VER....)'], + array['Arcade'], + '{"mame":["pinkswts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'pinkiri-8', + 'Pinkiri 8', + 'Alta', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pinkiri8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/pinkiri8.cpp"]}'::jsonb + ), + ( + 'pioneer-balloon', + 'Pioneer Balloon', + 'SNK', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["pballoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk6502.cpp"]}'::jsonb + ), + ( + 'pipbug', + 'PIPBUG', + 'Signetics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["pipbug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/pipbug.cpp"]}'::jsonb + ), + ( + 'pipe-dream', + 'Pipe Dream', + 'Video System Co.', + 1990, + array['Pipe Dream (World)'], + array['Arcade'], + '{"mame":["pipedrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pipedrm.cpp"]}'::jsonb + ), + ( + 'pipeline', + 'Pipeline', + 'Daehyun Electronics', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pipeline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pipeline.cpp"]}'::jsonb + ), + ( + 'pipi-and-bibis-whoopee', + 'Pipi & Bibis / Whoopee!!', + 'Toaplan', + 1991, + array['Pipi & Bibis / Whoopee!! (Z80 sound cpu, set 1)'], + array['Arcade'], + '{"mame":["pipibibs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/pipibibi.cpp"]}'::jsonb + ), + ( + 'pirate', + 'Pirate', + 'Igrosoft', + 2005, + array['Pirate (060803 World)'], + array['Arcade'], + '{"mame":["pirate_3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'pirate-2', + 'Pirate 2', + 'Igrosoft', + 2006, + array['Pirate 2 (061005 World)'], + array['Arcade'], + '{"mame":["pirate2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'pirate-2001', + 'Pirate 2001', + 'Amcoe', + 2001, + array['Pirate 2001 (Version 2.5E Dual)'], + array['Arcade'], + '{"mame":["pir2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'pirate-2002', + 'Pirate 2002', + 'Amcoe', + 2001, + array['Pirate 2002 (Version 2.0E Dual)'], + array['Arcade'], + '{"mame":["pir2002"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'pirate-ship', + 'Pirate Ship', + 'Konami', + 1995, + array['Pirate Ship (ver UAA)'], + array['Arcade'], + '{"mame":["piratesh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/piratesh.cpp"]}'::jsonb + ), + ( + 'pirate-ship-higemaru', + 'Pirate Ship Higemaru', + 'Capcom', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["higemaru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/higemaru.cpp"]}'::jsonb + ), + ( + 'pirate-treasure', + 'Pirate Treasure', + 'Pacific Polytechnical Corp. (Tong Electronic license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["piratetr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/killcom.cpp"]}'::jsonb + ), + ( + 'pirates', + 'Pirates', + 'NIX', + 1994, + array['Pirates (set 1)'], + array['Arcade'], + '{"mame":["pirates"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nix/pirates.cpp"]}'::jsonb + ), + ( + 'pirati', + 'Pirati', + 'Cin', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["pirati"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'pisces', + 'Pisces', + 'Subelectro', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pisces"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'pistol-daimyo-no-bouken', + 'Pistol Daimyo no Bouken', + 'Namco', + 1990, + array['Pistol Daimyo no Bouken (Japan)'], + array['Arcade'], + '{"mame":["pistoldm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'pit-and-run-f-1-race', + 'Pit & Run - F-1 Race', + 'Taito Corporation', + 1984, + array['Pit & Run - F-1 Race (rev 1)'], + array['Arcade'], + '{"mame":["pitnrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/pitnrun.cpp"]}'::jsonb + ), + ( + 'pit-boss-ii-9221-01c', + 'Pit Boss II (9221-01C)', + 'Merit', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pitboss2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-boss-megastar-9244-00-01-r0b', + 'Pit Boss Megastar (9244-00-01 R0B)', + 'Merit', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pitbossm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-boss-megatouch-9235-00-01-r0a', + 'Pit Boss Megatouch (9235-00-01 R0A)', + 'Merit', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["megat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-boss-megatouch-ii', + 'Pit Boss Megatouch II', + 'Merit', + 1994, + array['Pit Boss Megatouch II (9255-10-01 R0G, Standard version)'], + array['Arcade'], + '{"mame":["megat2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-boss-superstar-9221-10-00b', + 'Pit Boss Superstar (9221-10-00B)', + 'Merit', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pitbosss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-boss-superstar-iii-30', + 'Pit Boss Superstar III 30', + 'Merit', + 1993, + array['Pit Boss Superstar III 30 (9233-00-01 R0B, Standard version)'], + array['Arcade'], + '{"mame":["pbss330"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-boss-supertouch-30-9234-10-01-r0', + 'Pit Boss Supertouch 30 (9234-10-01 R0)', + 'Merit', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pbst30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-fighter', + 'Pit Fighter', + 'Atari Games', + 1990, + array['Pit Fighter (rev 9)'], + array['Arcade'], + '{"mame":["pitfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarig1.cpp"]}'::jsonb + ), + ( + 'pitapat-puzzle', + 'Pitapat Puzzle', + 'F2 System', + 1997, + array['Pitapat Puzzle (set 1)'], + array['Puzzle'], + '{"mame":["pitapat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/crospang.cpp"]}'::jsonb + ), + ( + 'pitfall-ii-315-5093', + 'Pitfall II (315-5093)', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pitfall2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'pittanko-zaurus', + 'Pittanko Zaurus', + 'Konami', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["kzaurus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'pk-rainbow-v-1-5', + 'PK Rainbow (v 1.5)', + 'Boram', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pkrboram"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/boramz80.cpp"]}'::jsonb + ), + ( + 'pk-scramble', + 'PK Scramble', + 'Cosmo Electronics Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["pkscram"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pkscram.cpp"]}'::jsonb + ), + ( + 'pk-tetris-v346i', + 'PK Tetris (v346I)', + 'IGS', + null, + '{}'::text[], + array['Puzzle'], + '{"mame":["pktet346"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspoker.cpp"]}'::jsonb + ), + ( + 'pk-turbo', + 'PK Turbo', + 'Boram', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["tpkboram"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/boramz80.cpp"]}'::jsonb + ), + ( + 'pk-turbo-great-2', + 'PK Turbo Great 2', + 'Boram', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["tpkg2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/boramz80.cpp"]}'::jsonb + ), + ( + 'pk-turbo-special', + 'PK Turbo Special', + 'Boram', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pkts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/boramz80.cpp"]}'::jsonb + ), + ( + 'planet-harriers', + 'Planet Harriers', + 'Sega / Amusement Vision', + 2000, + array['Planet Harriers (Rev A)'], + array['Arcade'], + '{"mame":["pharrier"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'planet-phatt-the-swing-system', + 'Planet Phatt - The Swing System', + 'E-mu Systems', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["phatt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'planet-probe', + 'Planet Probe', + 'Crux / Kyugo?', + 1985, + array['Planet Probe (prototype?)'], + array['Arcade'], + '{"mame":["pprobe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/vastar.cpp"]}'::jsonb + ), + ( + 'platoon', + 'Platoon', + 'Nova?', + 1995, + array['Platoon (V.3.1 US)'], + array['Arcade'], + '{"mame":["aplatoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'play-girls', + 'Play Girls', + 'Hot-B Co., Ltd.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["plgirls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'play-girls-2', + 'Play Girls 2', + 'Hot-B Co., Ltd.', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["plgirls2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'play-sonic-4', + 'Play Sonic 4', + 'SegaSA / Sonic', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["plsonic4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/plsonic4.cpp"]}'::jsonb + ), + ( + 'playball', + 'PlayBall!', + 'Williams', + 1983, + array['PlayBall! (prototype)'], + array['Arcade'], + '{"mame":["playball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'playcenter-champions-tournament-v9-3-epox-hardware', + 'PlayCenter Champions Tournament (v9.3, ''Epox'' hardware)', + 'Recreativos Presas / Undergaming', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["plycntrchtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/playcenter.cpp"]}'::jsonb + ), + ( + 'playcenter-evolution-iii-v14-0-epox-hardware', + 'Playcenter Evolution III (v14.0, ''Epox'' hardware)', + 'Recreativos Presas / Undergaming', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["plycntre3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/playcenter.cpp"]}'::jsonb + ), + ( + 'pleasure-goal-futsal-5-on-5-mini-soccer-ngm-219', + 'Pleasure Goal / Futsal - 5 on 5 Mini Soccer (NGM-219)', + 'Saurus', + 1996, + '{}'::text[], + array['Sports'], + '{"mame":["pgoal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'pleiads-tehkan', + 'Pleiads (Tehkan)', + 'Tehkan', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["pleiads"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["phoenix/phoenix.cpp"]}'::jsonb + ), + ( + 'plet-s-mk-300', + 'Plet''s (MK-300)', + 'Casio', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["plets300"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'plet-s-mk-350', + 'Plet''s (MK-350)', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["plets350"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'plotting', + 'Plotting', + 'Taito Corporation Japan', + 1989, + array['Plotting (World set 1)'], + array['Arcade'], + '{"mame":["plotting"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'pls-1000', + 'PLS-1000', + 'Brainchild', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["pls1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brainchild/pls1000.cpp"]}'::jsonb + ), + ( + 'plug-n-play-25-in-1-dgun-806', + 'Plug ''N'' Play 25-in-1 (DGUN-806)', + 'dreamGEAR', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dgun806"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'plug-n-play-30-in-1-dgun-851', + 'Plug ''N'' Play 30-in-1 (DGUN-851)', + 'dreamGEAR / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dgun851"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'plug-n-play-50-in-1-dgun-853', + 'Plug ''N'' Play 50-in-1 (DGUN-853)', + 'dreamGEAR / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dgun853"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'plump-pop', + 'Plump Pop', + 'Taito Corporation', + 1987, + array['Plump Pop (Japan)'], + array['Arcade'], + '{"mame":["plumppop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'plus-alpha', + 'Plus Alpha', + 'Jaleco', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["plusalph"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'plutus-v100', + 'Plutus (V100)', + 'I.A.M.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["plutus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/39in1.cpp"]}'::jsonb + ), + ( + 'pm-5644-color-pattern-generator', + 'PM 5644 color pattern generator', + 'Philips', + 1989, + array['PM 5644 color pattern generator (PAL 16:9 Colour Circle Rev 2)'], + array['Arcade'], + '{"mame":["pm5644g924b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/patgen.cpp"]}'::jsonb + ), + ( + 'pm-5644-color-pattern-generator-ntsc-4-3-colour-circle', + 'PM 5644 color pattern generator (NTSC 4:3 Colour Circle)', + 'Philips', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pm5644m00"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/patgen.cpp"]}'::jsonb + ), + ( + 'pm-5644-color-pattern-generator-pal-g-4-3-colour-circle', + 'PM 5644 color pattern generator (PAL-G 4:3 Colour Circle)', + 'Philips', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pm5644g00"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/patgen.cpp"]}'::jsonb + ), + ( + 'pm-5644-color-pattern-generator-pal-g-4-3-indian-head', + 'PM 5644 color pattern generator (PAL-G 4:3 Indian Head)', + 'Philips', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pm5644g913"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/patgen.cpp"]}'::jsonb + ), + ( + 'pm-5644-color-pattern-generator-pal-m-4-3-colour-circle', + 'PM 5644 color pattern generator (PAL-M 4:3 Colour Circle)', + 'Philips', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pm5644p00"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/patgen.cpp"]}'::jsonb + ), + ( + 'pm-5644-color-pattern-generator-secam-4-3-colour-circle', + 'PM 5644 color pattern generator (SECAM 4:3 Colour Circle)', + 'Philips', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pm5644l00"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/patgen.cpp"]}'::jsonb + ), + ( + 'pmd-85-1', + 'PMD-85.1', + 'Tesla', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pmd851"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tesla/pmd85.cpp"]}'::jsonb + ), + ( + 'pmi-80', + 'PMI-80', + 'Tesla', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["pmi80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tesla/pmi80.cpp"]}'::jsonb + ), + ( + 'pmp-11', + 'PMP-11', + 'Institut Jožef Stefan', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pmp11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/pmp11.cpp"]}'::jsonb + ), + ( + 'pn-8800fxb', + 'PN-8800FXB', + 'Brother', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["pn8800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/pn8800fxb.cpp"]}'::jsonb + ), + ( + 'pnickies', + 'Pnickies', + 'Capcom', + 1994, + array['Pnickies (Japan 940608)'], + array['Arcade'], + '{"mame":["pnickj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'pochi-and-nyaa', + 'Pochi and Nyaa', + 'Aiky / Taito', + 2003, + array['Pochi and Nyaa (Ver 2.02)'], + array['Arcade'], + '{"mame":["pnyaa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'pocket-challenge-w', + 'Pocket Challenge W', + 'Benesse Corporation', + null, + array['Pocket Challenge W (Japan)'], + array['Arcade'], + '{"mame":["pockchal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["benesse/pockchal.cpp"]}'::jsonb + ), + ( + 'pocket-gal', + 'Pocket Gal', + 'Data East Corporation', + 1987, + array['Pocket Gal (Japan)'], + array['Arcade'], + '{"mame":["pcktgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/pcktgal.cpp"]}'::jsonb + ), + ( + 'pocket-gal-deluxe', + 'Pocket Gal Deluxe', + 'Data East Corporation', + 1992, + array['Pocket Gal Deluxe (Europe v3.00)'], + array['Arcade'], + '{"mame":["pktgaldx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/pktgaldx.cpp"]}'::jsonb + ), + ( + 'pocket-gals-v-i-p', + 'Pocket Gals V.I.P', + 'ACE International / Afega', + 1996, + array['Pocket Gals V.I.P (set 1)'], + array['Arcade'], + '{"mame":["pgalvip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'pocket-micro-de-luxe', + 'Pocket Micro De-Luxe', + 'Chess King / Intelligent Software', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pmicrodx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chessking/pmicrodx.cpp"]}'::jsonb + ), + ( + 'pocket-racer', + 'Pocket Racer', + 'Namco', + 1996, + array['Pocket Racer (Japan, PKR1/VER.B)'], + array['Arcade'], + '{"mame":["pocketrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'pocketchess-cxg', + 'Pocketchess (CXG)', + 'Newcrest Technology / CXG Systems / Intelligent Chess Software', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pchess"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/pchess.cpp"]}'::jsonb + ), + ( + 'point-blank', + 'Point Blank', + 'Namco', + 1994, + array['Point Blank (World, GN2 Rev B, set 1)'], + array['Arcade'], + '{"mame":["ptblank"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'point-blank-2', + 'Point Blank 2', + 'Namco', + 1999, + array['Point Blank 2 (World, GNB5/VER.A)'], + array['Arcade'], + '{"mame":["ptblank2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'point-blank-3', + 'Point Blank 3', + 'Namco', + 2000, + array['Point Blank 3 (World, GNN2 Ver.A)'], + array['Arcade'], + '{"mame":["ptblank3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'poitto', + 'Poitto!', + 'Metro / Able Corp.', + 1993, + array['Poitto! (Japan revision D)'], + array['Arcade'], + '{"mame":["poitto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'poka-poka-satan', + 'Poka Poka Satan', + 'Kato Seisakujo Co., Ltd.', + 1996, + array['Poka Poka Satan (Japan)'], + array['Arcade'], + '{"mame":["ppsatan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'poke-champ', + 'Poke Champ', + 'D.G.R.M.', + 1995, + array['Poke Champ (set 1)'], + array['Arcade'], + '{"mame":["pokechmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dgrm/pokechmp.cpp"]}'::jsonb + ), + ( + 'pokemon-mini', + 'Pokemon Mini', + 'Nintendo', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["pokemini"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/pokemini.cpp"]}'::jsonb + ), + ( + 'pokoapoka-onsen-de-chu-bijin-3-shimai-ni-kiotsukete', + 'PokoaPoka Onsen de CHU - Bijin 3 Shimai ni Kiotsukete!', + 'Nichibutsu/eic', + 1999, + array['PokoaPoka Onsen de CHU - Bijin 3 Shimai ni Kiotsukete! (Japan)'], + array['Arcade'], + '{"mame":["pokoachu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'pokonyan-balloon', + 'Pokonyan! Balloon', + 'Capcom', + 1994, + array['Pokonyan! Balloon (Japan 940322)'], + array['Arcade'], + '{"mame":["pokonyan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'polaris', + 'Polaris', + 'Taito', + 1980, + array['Polaris (latest version)'], + array['Arcade'], + '{"mame":["polaris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'pole-position', + 'Pole Position', + 'Namco', + 1982, + array['Pole Position (World)'], + array['Arcade'], + '{"mame":["polepos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/polepos.cpp"]}'::jsonb + ), + ( + 'pole-position-ii', + 'Pole Position II', + 'Namco', + 1983, + array['Pole Position II (Japan)'], + array['Arcade'], + '{"mame":["polepos2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/polepos.cpp"]}'::jsonb + ), + ( + 'police-911-2', + 'Police 911 2', + 'Konami', + 2001, + array['Police 911 2 (VER. UAA:B)'], + array['Arcade'], + '{"mame":["p9112"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'police-trainer', + 'Police Trainer', + 'P&P Marketing', + 1996, + array['Police Trainer (Rev 1.3B, Rev 0.3 PCB)'], + array['Arcade'], + '{"mame":["policetr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/policetr.cpp"]}'::jsonb + ), + ( + 'police-trainer-2', + 'Police Trainer 2', + 'Team Play/Phantom Entertainment', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["policet2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/voyager.cpp"]}'::jsonb + ), + ( + 'pollux', + 'Pollux', + 'Dooyong', + 1991, + array['Pollux (set 1)'], + array['Arcade'], + '{"mame":["pollux"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'poly-proteus-standalone', + 'Poly Proteus (Standalone)', + 'Polycorp', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["proteus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/proteus.cpp"]}'::jsonb + ), + ( + 'poly-61-programmable-polyphonic-synthesizer', + 'Poly-61 Programmable Polyphonic Synthesizer', + 'Korg', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["poly61"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/poly61.cpp"]}'::jsonb + ), + ( + 'poly-800-programmable-polyphonic-synthesizer', + 'Poly-800 Programmable Polyphonic Synthesizer', + 'Korg', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["poly800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/poly800.cpp"]}'::jsonb + ), + ( + 'poly-800-programmable-polyphonic-synthesizer-midi-dump-kit', + 'Poly-800 Programmable Polyphonic Synthesizer (MIDI Dump Kit)', + 'Korg', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["poly800mdk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/poly800.cpp"]}'::jsonb + ), + ( + 'poly-800ii-programmable-polyphonic-synthesizer', + 'Poly-800II Programmable Polyphonic Synthesizer', + 'Korg', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["poly800ii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/poly800.cpp"]}'::jsonb + ), + ( + 'poly-88', + 'Poly-88', + 'PolyMorphic Systems', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["poly88"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["poly88/poly88.cpp"]}'::jsonb + ), + ( + 'poly-computer-880', + 'Poly-Computer 880', + 'VEB Polytechnik Karl-Marx-Stadt', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["poly880"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/poly880.cpp"]}'::jsonb + ), + ( + 'poly-net-warriors', + 'Poly-Net Warriors', + 'Konami', + 1993, + array['Poly-Net Warriors (ver JAA)'], + array['Arcade'], + '{"mame":["polynetw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/plygonet.cpp"]}'::jsonb + ), + ( + 'poly-play-zre-pp', + 'Poly-Play (ZRE-PP)', + 'VEB Polytechnik Karl-Marx-Stadt', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["polyplay2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/polyplay.cpp"]}'::jsonb + ), + ( + 'poly-play-zre', + 'Poly-Play (ZRE)', + 'VEB Polytechnik Karl-Marx-Stadt', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["polyplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/polyplay.cpp"]}'::jsonb + ), + ( + 'polygonet-commanders', + 'Polygonet Commanders', + 'Konami', + 1993, + array['Polygonet Commanders (ver UAA)'], + array['Arcade'], + '{"mame":["plygonet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/plygonet.cpp"]}'::jsonb + ), + ( + 'polysix-programmable-polyphonic-synthesizer', + 'Polysix Programmable Polyphonic Synthesizer', + 'Korg', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["polysix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/polysix.cpp"]}'::jsonb + ), + ( + 'pong', + 'Pong', + 'Atari', + 1972, + array['Pong (Rev E)'], + array['Arcade'], + '{"mame":["pong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/pong.cpp"]}'::jsonb + ), + ( + 'pong-boo-2', + 'Pong Boo! 2', + 'OCT', + 1997, + array['Pong Boo! 2 (Ver. 1.31)'], + array['Arcade'], + '{"mame":["pongboo2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'pong-doubles', + 'Pong Doubles', + 'Atari', + 1973, + '{}'::text[], + array['Arcade'], + '{"mame":["pongd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/pong.cpp"]}'::jsonb + ), + ( + 'ponpoko', + 'Ponpoko', + 'Sigma Enterprises Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["ponpoko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'pontoon-fd1094-317-0153', + 'Pontoon (FD1094 317-0153)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pontoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'pontoon-konami', + 'Pontoon (Konami)', + 'Konami', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["kpontoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpontoon.cpp"]}'::jsonb + ), + ( + 'pontoon-tehkan', + 'Pontoon (Tehkan)', + 'Tehkan', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ponttehk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/lvcards.cpp"]}'::jsonb + ), + ( + 'pool-10', + 'Pool 10', + 'C.M.C.', + 1996, + array['Pool 10 (Italian, set 1)'], + array['Arcade'], + '{"mame":["pool10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'poolshark', + 'Poolshark', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["poolshrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/poolshrk.cpp"]}'::jsonb + ), + ( + 'poosho-poosho', + 'Poosho Poosho', + 'F2 System', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["poosho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'pooyan', + 'Pooyan', + 'Konami', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["pooyan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/pooyan.cpp"]}'::jsonb + ), + ( + 'pop-n-bounce-gapporin', + 'Pop ''n Bounce / Gapporin', + 'Video System Co.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["popbounc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'pop-flamer-protected', + 'Pop Flamer (protected)', + 'Jaleco', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["popflame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["phoenix/naughtyb.cpp"]}'::jsonb + ), + ( + 'pop-shot', + 'Pop Shot', + 'Dynamo', + 1991, + array['Pop Shot (prototype)'], + array['Arcade'], + '{"mame":["popshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/skeetsht.cpp"]}'::jsonb + ), + ( + 'pop-n-music', + 'Pop''n Music', + 'Konami', + 1998, + array['Pop''n Music (ver TA-A, HDD 1.01)'], + array['Rhythm'], + '{"mame":["popn1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'pop-n-music-2', + 'Pop''n Music 2', + 'Konami', + 1999, + array['Pop''n Music 2 (ver JA-A)'], + array['Rhythm'], + '{"mame":["popn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'pop-n-music-3', + 'Pop''n Music 3', + 'Konami', + 1999, + array['Pop''n Music 3 (ver JA-A)'], + array['Rhythm'], + '{"mame":["popn3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'pop-n-music-4', + 'Pop''n Music 4', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["popn4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-5', + 'Pop''n Music 5', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["popn5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-6', + 'Pop''n Music 6', + 'Konami', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["popn6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-7', + 'Pop''n Music 7', + 'Konami', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["popn7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-8', + 'Pop''n Music 8', + 'Konami', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["popn8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-9', + 'Pop''n Music 9', + 'Konami', + 2003, + array['Pop''n Music 9 (ver JAB)'], + array['Rhythm'], + '{"mame":["popn9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython.cpp"]}'::jsonb + ), + ( + 'pop-n-music-animelo', + 'Pop''n Music Animelo', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["popnanm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-animelo-2-jac', + 'Pop''n Music Animelo 2 (JAC)', + 'Konami', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["popnanm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-mickey-tunes', + 'Pop''n Music Mickey Tunes', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["popnmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-pop', + 'Pop''n Pop', + 'Taito Corporation', + 1997, + array['Pop''n Pop (Ver 2.07O 1998/02/09)'], + array['Rhythm'], + '{"mame":["popnpop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'pop-n-run-the-videogame', + 'Pop''n Run - The Videogame', + 'Seibu Kaihatsu / Yukai Tsukai', + 1987, + array['Pop''n Run - The Videogame (set 1)'], + array['Rhythm'], + '{"mame":["popnrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/deadang.cpp"]}'::jsonb + ), + ( + 'pop-n-stage-ex', + 'Pop''n Stage EX', + 'Konami', + 1999, + array['Pop''n Stage EX (ver JB-A)'], + array['Rhythm'], + '{"mame":["popnstex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'pop-s-pop-s', + 'Pop''s Pop''s', + 'Afega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["popspops"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'popeye', + 'Popeye', + 'Nintendo', + 1982, + array['Popeye (revision D)'], + array['Arcade'], + '{"mame":["popeye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/popeye.cpp"]}'::jsonb + ), + ( + 'popo-bear', + 'PoPo Bear', + 'BMC', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["popobear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/popobear.cpp"]}'::jsonb + ), + ( + 'popper', + 'Popper', + 'Omori Electric Co., Ltd.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["popper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omori/popper.cpp"]}'::jsonb + ), + ( + 'porky', + 'Porky', + 'Shinkai Inc. (Magic Electronics Inc. license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["porky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'portable-game-station-268-in-1', + 'Portable Game Station 268-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pgs268"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'portasound-pss-170', + 'PortaSound PSS-170', + 'Yamaha', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pss170"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympss170.cpp"]}'::jsonb + ), + ( + 'portatone-psr-11', + 'Portatone PSR-11', + 'Yamaha', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["psr11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr11.cpp"]}'::jsonb + ), + ( + 'portfolio', + 'Portfolio', + 'Atari', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pofo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/pofo.cpp"]}'::jsonb + ), + ( + 'portraits', + 'Portraits', + 'Olympia', + 1983, + array['Portraits (set 1)'], + array['Arcade'], + '{"mame":["portrait"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympia/portrait.cpp"]}'::jsonb + ), + ( + 'positron-9000', + 'Positron 9000', + 'Positron Computers Ltd', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["positron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["positron/positron.cpp"]}'::jsonb + ), + ( + 'post-mupid-c2a2', + 'Post-Mupid C2A2', + 'mupid', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mupid2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mupid/mupid2.cpp"]}'::jsonb + ), + ( + 'pot-game-italian', + 'Pot Game (Italian)', + 'C.M.C.', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["potgame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'pot-o-gold-u-s-games-v400x', + 'Pot O'' Gold (U.S. Games, v400x?)', + 'U.S. Games, Inc.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["potgoldu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/potgoldu.cpp"]}'::jsonb + ), + ( + 'poto-poto', + 'Poto Poto', + 'Sega', + 1994, + array['Poto Poto (Japan, Rev A)'], + array['Arcade'], + '{"mame":["potopoto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'pound-for-pound', + 'Pound for Pound', + 'Irem', + 1990, + array['Pound for Pound (World)'], + array['Arcade'], + '{"mame":["poundfor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'povar-sobrat-buran-agroprom', + 'Povar / Sobrat'' Buran / Agroprom', + 'bootleg', + null, + array['Povar / Sobrat'' Buran / Agroprom (Arcade multi-game bootleg of ZX Spectrum ''Cookie'', ''Jetpac'' & ''Pssst'')'], + array['Arcade'], + '{"mame":["kok"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/photon2.cpp"]}'::jsonb + ), + ( + 'power-charging-and-playing-games-d12-416-in-1', + 'Power - Charging and playing games (D12) (416-in-1)', + 'SZDiiER', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["d12power"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'power-ball', + 'Power Ball', + 'TCH', + null, + array['Power Ball (prototype)'], + array['Arcade'], + '{"mame":["pwball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/wheelfir.cpp"]}'::jsonb + ), + ( + 'power-balls', + 'Power Balls', + 'Playmark', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["powerbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/powerbal.cpp"]}'::jsonb + ), + ( + 'power-blade-playchoice-10', + 'Power Blade (PlayChoice-10)', + 'Taito (Nintendo of America license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_pwbld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'power-card', + 'Power Card', + 'Fun World', + 1993, + array['Power Card (Ver 0263, encrypted)'], + array['Arcade'], + '{"mame":["powercrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'power-console-disney-princess-jcg100dpi1-english-french', + 'Power Console - Disney Princess (JCG100DPi1, English/French)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxpcdp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'power-console-gabby-s-dollhouse-jcg100gdhi1-english-french', + 'Power Console - Gabby''s Dollhouse (JCG100GDHi1, English/French)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxpcgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'power-console-lilo-and-stitch-jcg100di1-english-french', + 'Power Console - Lilo & Stitch (JCG100Di1, English/French)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxpcli"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'power-console-marvel-spider-man-jcg100spi1-english-french', + 'Power Console - Marvel Spider-Man (JCG100SPi1, English/French)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxpcsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'power-console-paw-patrol-jcg100pai1-english-french', + 'Power Console - Paw Patrol (JCG100PAi1, English/French)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxpcpp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'power-console-jcg100i1-english-french', + 'Power Console (JCG100i1, English/French)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'power-drift', + 'Power Drift', + 'Sega', + 1988, + array['Power Drift (World, Rev A)'], + array['Arcade'], + '{"mame":["pdrift"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaybd.cpp"]}'::jsonb + ), + ( + 'power-drift-link-version', + 'Power Drift - Link Version', + 'Sega', + 1988, + array['Power Drift - Link Version (Japan, Rev A)'], + array['Arcade'], + '{"mame":["pdriftl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaybd.cpp"]}'::jsonb + ), + ( + 'power-drive', + 'Power Drive', + 'Bally Midway', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["powerdrv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'power-instinct', + 'Power Instinct', + 'Atlus', + 1993, + array['Power Instinct (USA)'], + array['Arcade'], + '{"mame":["powerins"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'power-instinct-2', + 'Power Instinct 2', + 'Atlus', + 1994, + array['Power Instinct 2 (US, Ver. 94.04.08, set 1)'], + array['Arcade'], + '{"mame":["pwrinst2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'power-kick', + 'Power Kick', + 'Sunwise', + 1994, + array['Power Kick (Japan)'], + array['Arcade'], + '{"mame":["pwrkick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/sunwise.cpp"]}'::jsonb + ), + ( + 'power-ninja-action-challenge', + 'Power Ninja Action Challenge', + 'Linus Åkesson', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["powernin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/lft_chiptune.cpp"]}'::jsonb + ), + ( + 'power-play', + 'Power Play', + 'Cinematronics', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["powrplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'power-shovel-ni-norou-power-shovel-simulator', + 'Power Shovel ni Norou!! - Power Shovel Simulator', + 'Taito', + 1999, + array['Power Shovel ni Norou!! - Power Shovel Simulator (VER.2.07J)'], + array['Arcade'], + '{"mame":["pwrshovl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'power-sled', + 'Power Sled', + 'Sega', + 1996, + array['Power Sled (Slave, Revision A)'], + array['Arcade'], + '{"mame":["powsled"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'power-smash-3-virtua-tennis-3-export', + 'Power Smash 3 / Virtua Tennis 3 (Export)', + 'Sega', + 2006, + '{}'::text[], + array['Sports'], + '{"mame":["psmash3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'power-spikes', + 'Power Spikes', + 'Video System Co.', + 1991, + array['Power Spikes (World)'], + array['Arcade'], + '{"mame":["pspikes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pspikes.cpp"]}'::jsonb + ), + ( + 'power-spikes-ii-ngm-068', + 'Power Spikes II (NGM-068)', + 'Video System Co.', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pspikes2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'power-stone', + 'Power Stone', + 'Capcom', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["pstone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'power-stone-2', + 'Power Stone 2', + 'Capcom', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["pstone2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'power-surge', + 'Power Surge', + 'Vision Electronics', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["psurge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/timeplt.cpp"]}'::jsonb + ), + ( + 'power-up-baseball', + 'Power Up Baseball', + 'Midway / Incredible Technologies', + 1996, + array['Power Up Baseball (prototype)'], + array['Sports'], + '{"mame":["pubball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'powerful-chance', + 'Powerful Chance', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["pwrchanc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'powerjoy-navigator-50-in-1', + 'PowerJoy Navigator 50 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pjoyn50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'powerjoy-supermax-30-in-1', + 'PowerJoy Supermax 30 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pjoys30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'powerjoy-supermax-60-in-1', + 'PowerJoy Supermax 60 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pjoys60"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'powerstack-ii', + 'Powerstack II', + 'Motorola', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["powerstk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/powerstack.cpp"]}'::jsonb + ), + ( + 'pp-01', + 'PP-01', + 'ZVT', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pp01"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zvt/pp01.cpp"]}'::jsonb + ), + ( + 'prebillian', + 'Prebillian', + 'Kaneko / Taito', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pbillian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/superqix.cpp"]}'::jsonb + ), + ( + 'prehistoric-isle-2', + 'Prehistoric Isle 2', + 'Yumekobo / Saurus', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["preisle2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'prehistoric-isle-in-1930', + 'Prehistoric Isle in 1930', + 'SNK', + 1989, + array['Prehistoric Isle in 1930 (World)'], + array['Arcade'], + '{"mame":["prehisle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/prehisle.cpp"]}'::jsonb + ), + ( + 'premier-soccer', + 'Premier Soccer', + 'Konami', + 1993, + array['Premier Soccer (ver EAB)'], + array['Sports'], + '{"mame":["prmrsocr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'premium-double-eight-v5-3fa', + 'Premium Double Eight (V5.3FA)', + 'Dyna & MK Electronics', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["pdouble8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'premiums-line', + 'Premiums Line', + 'MK Electronics', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["premline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'prestige-challenger', + 'Prestige Challenger', + 'Fidelity Electronics', + 1982, + array['Prestige Challenger (original program, set 1)'], + array['Arcade'], + '{"mame":["fpres"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/elite.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.010.sql b/supabase/seed-data/mame-game-catalog.generated.010.sql new file mode 100644 index 0000000..6e137a8 --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.010.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'pretty-present', + 'Pretty Present', + 'Sunwise', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ppresent"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunwise/jankmg2.cpp"]}'::jsonb + ), + ( + 'pretty-soldier-sailor-moon', + 'Pretty Soldier Sailor Moon', + 'Gazelle (Banpresto license)', + 1995, + array['Pretty Soldier Sailor Moon (Version 95/03/22B, Europe)'], + array['Arcade'], + '{"mame":["sailormn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'pride-gp-2003', + 'Pride GP 2003', + 'Namco', + 2003, + array['Pride GP 2003 (PR21 Ver. A)'], + array['Arcade'], + '{"mame":["prdgp03"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'primal-rage', + 'Primal Rage', + 'Atari Games', + 1994, + array['Primal Rage (version 2.3, Jan 1995)'], + array['Arcade'], + '{"mame":["primrage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarigt.cpp"]}'::jsonb + ), + ( + 'prime-goal-ex', + 'Prime Goal EX', + 'Namco', + 1996, + array['Prime Goal EX (Japan, PG1/VER.A)'], + array['Arcade'], + '{"mame":["primglex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'primeval-hunt', + 'Primeval Hunt', + 'Sega', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["primevah"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'primo-novag', + 'Primo (Novag)', + 'Novag Industries / Intelligent Heuristic Programming', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["nprimo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/primo.cpp"]}'::jsonb + ), + ( + 'primo-a-32', + 'Primo A-32', + 'Microkey', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["primoa32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microkey/primo.cpp"]}'::jsonb + ), + ( + 'prin-c-tablet', + 'Prin-C Tablet', + 'Tomy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["princ"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tomy/tomy_princ.cpp"]}'::jsonb + ), + ( + 'princess-clara-daisakusen-j-960910-v1-000', + 'Princess Clara Daisakusen (J 960910 V1.000)', + 'Atlus', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["prikura"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club', + 'Print Club', + 'Atlus', + 1995, + array['Print Club (Japan Vol.1)', 'Print Club (Japan Vol.2)', 'Print Club (Japan Vol.3)', 'Print Club (Japan Vol.4)', 'Print Club (Japan Vol.5)'], + array['Arcade'], + '{"mame":["pclubj","pclubjv2","pclubjv3","pclubjv4","pclubjv5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'print-club-2-97-winter-ver', + 'Print Club 2 ''97 Winter Ver', + 'Atlus', + 1997, + array['Print Club 2 ''97 Winter Ver (J 971017 V1.100, set 1)'], + array['Arcade'], + '{"mame":["prc297wi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-98-autumn-ver-j-980827-v1-000', + 'Print Club 2 ''98 Autumn Ver (J 980827 V1.000)', + 'Atlus', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["prc298au"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-98-spring-ver-j-971017-v1-100', + 'Print Club 2 ''98 Spring Ver (J 971017 V1.100)', + 'Atlus', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["prc298sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-98-summer-ver-j-980603-v1-100', + 'Print Club 2 ''98 Summer Ver (J 980603 V1.100)', + 'Atlus', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["prc298su"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-u-970921-v1-000', + 'Print Club 2 (U 970921 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-2000-summer-j-000509-v1-000', + 'Print Club 2 2000 Summer (J 000509 V1.000)', + 'Atlus', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["prc2ksu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-earth-limited-kobe-j-970808-v1-000', + 'Print Club 2 Earth Limited Kobe (J 970808 V1.000)', + 'Atlus', + 1997, + array['Print Club 2 Earth Limited Kobe (Print Club Custom) (J 970808 V1.000)'], + array['Arcade'], + '{"mame":["pclb2elk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-felix-the-cat-j-970415-v1-100', + 'Print Club 2 Felix The Cat (J 970415 V1.100)', + 'Atlus', + 1999, + array['Print Club 2 Felix The Cat (Rev. A) (J 970415 V1.100)'], + array['Arcade'], + '{"mame":["pclub2fc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-kobe-luminaire-99-j-991203-v1-000', + 'Print Club 2 Kobe Luminaire ''99 (J 991203 V1.000)', + 'Atlus', + 1997, + array['Print Club 2 Kobe Luminaire ''99 (Print Club Custom 3) (J 991203 V1.000)'], + array['Arcade'], + '{"mame":["pckobe99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-pepsiman-j-970618-v1-100', + 'Print Club 2 Pepsiman (J 970618 V1.100)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub2pe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-puffy-j-v1-100', + 'Print Club 2 Puffy (J V1.100)', + 'Atlus', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub2pf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-vol-3-u-990310-v1-000', + 'Print Club 2 Vol. 3 (U 990310 V1.000)', + 'Atlus', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub2v3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-vol-6-winter-j-961210-v1-000', + 'Print Club 2 Vol. 6 Winter (J 961210 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub26w"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-vol-7-spring-j-970313-v1-100', + 'Print Club 2 Vol. 7 Spring (J 970313 V1.100)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub27s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-vol-8-97-summer-j-970616-v1-100', + 'Print Club 2 Vol. 8 ''97 Summer (J 970616 V1.100)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["prc28su"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-vol-9-autumn-j-v1-100', + 'Print Club 2 Vol. 9 Autumn (J V1.100)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["prc29au"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-warner-bros-j-970228-v1-000', + 'Print Club 2 Warner Bros (J 970228 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub2wb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-goukakenran-j-991104-v1-000', + 'Print Club Goukakenran (J 991104 V1.000)', + 'Atlus', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["pclubor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-kome-kome-club-j-970203-v1-000', + 'Print Club Kome Kome Club (J 970203 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub2kc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-lovelove-j-970421-v1-000', + 'Print Club LoveLove (J 970421 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-lovelove-ver-2-j-970825-v1-000', + 'Print Club LoveLove Ver 2 (J 970825 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclove2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-olive-j-980717-v1-000', + 'Print Club Olive (J 980717 V1.000)', + 'Atlus', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["pclubol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-pokemon-b-u-991126-v1-000', + 'Print Club Pokemon B (U 991126 V1.000)', + 'Atlus', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["pclubpok"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-winnie-the-pooh-vol-2-j-971218-v1-000', + 'Print Club Winnie-the-Pooh Vol. 2 (J 971218 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pcpooh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-winnie-the-pooh-vol-3-j-980406-v1-000', + 'Print Club Winnie-the-Pooh Vol. 3 (J 980406 V1.000)', + 'Atlus', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["pcpooh3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-yoshimoto-v1-j-970208-v1-000', + 'Print Club Yoshimoto V1 (J 970208 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclubyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-yoshimoto-v2-j-970422-v1-100', + 'Print Club Yoshimoto V2 (J 970422 V1.100)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclubyo2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'pro-baseball-skill-tryout', + 'Pro Baseball Skill Tryout', + 'Data East Corporation', + 1985, + array['Pro Baseball Skill Tryout (Japan)'], + array['Sports'], + '{"mame":["tryout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tryout.cpp"]}'::jsonb + ), + ( + 'pro-bowling', + 'Pro Bowling', + 'Data East Corporation', + 1983, + array['Pro Bowling (DECO Cassette) (US)'], + array['Sports'], + '{"mame":["cprobowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'pro-cycle-tele-cardioline-salter-fitness-bike-v-1-0-checksum-02ab', + 'Pro Cycle Tele Cardioline (Salter fitness bike, V.1.0, checksum 02AB)', + 'Salter Fitness / Gaelco', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["sltpcycl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'pro-evolution-soccer-the-arcade', + 'Pro Evolution Soccer The Arcade', + 'Konami', + 2002, + array['Pro Evolution Soccer The Arcade (ver EAA)'], + array['Sports'], + '{"mame":["pesta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython.cpp"]}'::jsonb + ), + ( + 'pro-soccer', + 'Pro Soccer', + 'Data East Corporation', + 1983, + array['Pro Soccer (DECO Cassette) (US)'], + array['Sports'], + '{"mame":["cpsoccer","prosoccr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp","dataeast/liberate.cpp"]}'::jsonb + ), + ( + 'pro-sports-bowling-tennis-and-golf', + 'Pro Sports - Bowling, Tennis, and Golf', + 'Data East Corporation', + 1983, + '{}'::text[], + array['Sports'], + '{"mame":["prosport"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/liberate.cpp"]}'::jsonb + ), + ( + 'pro-stepper-tele-cardioline-salter-fitness-stepper-v-1-0-checksum-2b83', + 'Pro Stepper Tele Cardioline (Salter fitness stepper, V.1.0, checksum 2B83)', + 'Salter Fitness / Gaelco', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["sltpstep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'pro-tennis', + 'Pro Tennis', + 'Data East Corporation', + 1982, + array['Pro Tennis (DECO Cassette) (US)', 'Pro Tennis (Japan)'], + array['Sports'], + '{"mame":["cptennis","protenn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp","dataeast/btime.cpp"]}'::jsonb + ), + ( + 'pro-tennis-world-court', + 'Pro Tennis World Court', + 'Namco', + 1988, + array['Pro Tennis World Court (Japan)'], + array['Sports'], + '{"mame":["wldcourt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'pro-wrestling-playchoice-10', + 'Pro Wrestling (PlayChoice-10)', + 'Nintendo', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_pwrst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'pro-yakyuu-world-stadium', + 'Pro Yakyuu World Stadium', + 'Namco', + 1988, + array['Pro Yakyuu World Stadium (Japan)'], + array['Arcade'], + '{"mame":["ws"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'pro-cussion-maximum-percussion-module', + 'Pro/Cussion Maximum Percussion Module', + 'E-mu Systems', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["procuss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'prof-180x', + 'PROF-180X', + 'Conitec Datensysteme', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["prof180x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["conitec/prof180x.cpp"]}'::jsonb + ), + ( + 'prof-80', + 'PROF-80', + 'Conitec Datensysteme', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["prof80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["conitec/prof80.cpp"]}'::jsonb + ), + ( + 'professor-pac-man', + 'Professor Pac-Man', + 'Dave Nutting Associates / Bally Midway', + 1983, + '{}'::text[], + array['Classic'], + '{"mame":["profpac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'progear', + 'Progear', + 'Cave (Capcom license)', + 2001, + array['Progear (Europe 010117)'], + array['Arcade'], + '{"mame":["progear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'progress', + 'Progress', + 'Chuo Co. Ltd', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["progress"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/timelimt.cpp"]}'::jsonb + ), + ( + 'project-justice-moero-justice-gakuen', + 'Project Justice / Moero! Justice Gakuen', + 'Capcom', + 2000, + array['Project Justice / Moero! Justice Gakuen (Rev B)'], + array['Arcade'], + '{"mame":["pjustic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'prop-cycle', + 'Prop Cycle', + 'Namco', + 1996, + array['Prop Cycle (World, PR2 Ver.A)'], + array['Arcade'], + '{"mame":["propcycl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'prophet-5-model-1000-rev-3-0', + 'Prophet 5 (Model 1000) Rev 3.0', + 'Sequential Circuits', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["prophet5rev30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sequential/prophet5.cpp"]}'::jsonb + ), + ( + 'prophet-600', + 'Prophet-600', + 'Sequential Circuits', + 1983, + array['Prophet-600 (set 1)'], + array['Arcade'], + '{"mame":["prpht600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sequential/prophet600.cpp"]}'::jsonb + ), + ( + 'proteus-1-16-bit-multi-timbral-digital-sound-module', + 'Proteus/1 16-Bit Multi-Timbral Digital Sound Module', + 'E-mu Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["proteus1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'proteus-1-xr-16-bit-multi-timbral-digital-sound-module', + 'Proteus/1 XR 16-Bit Multi-Timbral Digital Sound Module', + 'E-mu Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["proteusxr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'ps-400', + 'PS-400', + 'Yamaha', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["ps400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymps400.cpp"]}'::jsonb + ), + ( + 'psi98', + 'PSI98', + 'Kontron', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["psi98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kontron/kdt6.cpp"]}'::jsonb + ), + ( + 'psr-150', + 'PSR-150', + 'Yamaha', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["psr150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr150.cpp"]}'::jsonb + ), + ( + 'psr-16', + 'PSR-16', + 'Yamaha', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["psr16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr16.cpp"]}'::jsonb + ), + ( + 'psr-180', + 'PSR-180', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["psr180"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr150.cpp"]}'::jsonb + ), + ( + 'psr-190', + 'PSR-190', + 'Yamaha', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["psr190"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr150.cpp"]}'::jsonb + ), + ( + 'psr-2000', + 'PSR-2000', + 'Yamaha', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["psr2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr2000.cpp"]}'::jsonb + ), + ( + 'psr-260', + 'PSR-260', + 'Yamaha', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["psr260"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr260.cpp"]}'::jsonb + ), + ( + 'psr-340-portasound', + 'PSR-340 PortaSound', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["psr340"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr340.cpp"]}'::jsonb + ), + ( + 'psr-36', + 'PSR-36', + 'Yamaha', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["psr36"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr16.cpp"]}'::jsonb + ), + ( + 'psr-40', + 'PSR-40', + 'Yamaha', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["psr40"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr40.cpp"]}'::jsonb + ), + ( + 'psr-500', + 'PSR-500', + 'Yamaha', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["psr500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr400.cpp"]}'::jsonb + ), + ( + 'psr-60-portasound', + 'PSR-60 PortaSound', + 'Yamaha', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["psr60"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr60.cpp"]}'::jsonb + ), + ( + 'psr-79', + 'PSR-79', + 'Yamaha', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["psr79"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr260.cpp"]}'::jsonb + ), + ( + 'psr540', + 'PSR540', + 'Yamaha', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["psr540"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr540.cpp"]}'::jsonb + ), + ( + 'pss-12', + 'PSS-12', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pss12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr150.cpp"]}'::jsonb + ), + ( + 'pss-480-pss-580', + 'PSS-480 / PSS-580', + 'Yamaha', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pss480"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr16.cpp"]}'::jsonb + ), + ( + 'pss-680', + 'PSS-680', + 'Yamaha', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pss680"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr16.cpp"]}'::jsonb + ), + ( + 'psychic-5', + 'Psychic 5', + 'Jaleco / NMK', + 1987, + array['Psychic 5 (World)'], + array['Arcade'], + '{"mame":["psychic5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/psychic5.cpp"]}'::jsonb + ), + ( + 'psychic-force-2012', + 'Psychic Force 2012', + 'Taito', + 1998, + array['Psychic Force 2012 (Ver 2.04J)'], + array['Arcade'], + '{"mame":["pf2012"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitowlf.cpp"]}'::jsonb + ), + ( + 'psycho-soldier', + 'Psycho Soldier', + 'SNK', + 1987, + array['Psycho Soldier (US)'], + array['Arcade'], + '{"mame":["psychos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'psycho-nics-oscar', + 'Psycho-Nics Oscar', + 'Data East Corporation', + 1987, + array['Psycho-Nics Oscar (World revision 0)'], + array['Arcade'], + '{"mame":["oscar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'psyvariar-2-the-will-to-fabricate-gdl-0024', + 'Psyvariar 2 - The Will To Fabricate (GDL-0024)', + 'Success', + 2003, + array['Psyvariar 2 - The Will To Fabricate (Japan) (GDL-0024)'], + array['Arcade'], + '{"mame":["psyvar2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'puchi-carat', + 'Puchi Carat', + 'Taito Corporation', + 1997, + array['Puchi Carat (Ver 2.02O 1997/10/29)'], + array['Arcade'], + '{"mame":["puchicar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'puck-man', + 'Puck Man', + 'Namco', + 1980, + array['Puck Man (Japan, set 1)'], + array['Arcade'], + '{"mame":["puckman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'puckman-pockimon-genie-2000', + 'Puckman Pockimon Genie 2000', + 'Sun Mixing', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["puckpkmn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_ybox.cpp"]}'::jsonb + ), + ( + 'pulirula', + 'PuLiRuLa', + 'Taito Corporation Japan', + 1991, + array['PuLiRuLa (World, dual PCB)'], + array['Arcade'], + '{"mame":["pulirula"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'pull-tabs', + 'Pull Tabs', + 'Game-A-Tron', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pulltabs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gametron/gatron.cpp"]}'::jsonb + ), + ( + 'pulsar', + 'Pulsar', + 'Sega', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["pulsar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'pulstar', + 'Pulstar', + 'Aicom', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["pulstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'pump-it-up-extra-mar-21-2001', + 'Pump it Up Extra (Mar 21 2001)', + 'Andamiro', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpite"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-o-b-g-the-3rd-dance-floor-v3-04-jun-02-2000', + 'Pump it Up The O.B.G: The 3rd Dance Floor (v3.04 - Jun 02 2000)', + 'Andamiro', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpit3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-o-b-g-the-season-evolution-dance-floor-r4-v3-25-aug-27-2000', + 'Pump it Up The O.B.G: The Season Evolution Dance Floor (R4/v3.25 - Aug 27 2000)', + 'Andamiro', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpito"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-premiere-2-the-international-2nd-dance-floor-premiere-2-2002', + 'Pump it Up The Premiere 2: The International 2nd Dance Floor (Premiere 2/2002)', + 'Andamiro', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpitp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-premiere-3-the-international-3rd-dance-floor-premiere-3-2003-28th-mar-2003', + 'Pump it Up The Premiere 3: The International 3rd Dance Floor (Premiere 3/2003 - 28th Mar 2003)', + 'Andamiro', + 2003, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpitp3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-premiere-the-international-dance-floor-r6-v4-01-feb-22-2001', + 'Pump it Up The Premiere: The International Dance Floor (R6/v4.01 - Feb 22 2001)', + 'Andamiro', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpitpr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-prex-2-premiere-2-2003', + 'Pump it Up The PREX 2 (Premiere 2/2003)', + 'Andamiro', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpipx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-prex-3-the-international-4th-dance-floor-x3-2mk3', + 'Pump it Up The PREX 3: The International 4th Dance Floor (X3.2MK3)', + 'Andamiro', + 2003, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpipx3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-prex-the-international-dance-floor', + 'Pump it Up The PREX: The International Dance Floor', + 'Andamiro', + 2001, + array['Pump it Up The PREX: The International Dance Floor (REV2 / 101)'], + array['Rhythm'], + '{"mame":["pumpitpx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-rebirth-the-8th-dance-floor-rebirth-2002', + 'Pump it Up The Rebirth: The 8th Dance Floor (Rebirth/2002)', + 'Andamiro', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpit8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-1st-dance-floor', + 'Pump It Up: The 1st Dance Floor', + 'Andamiro', + 1999, + array['Pump It Up: The 1st Dance Floor (ver 0.53.1999.9.31)'], + array['Rhythm'], + '{"mame":["pumpit1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-2nd-dance-floor-feb-28-2000', + 'Pump it Up: The 2nd Dance Floor (Feb 28 2000)', + 'Andamiro', + 1999, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpit2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-collection-r5-v3-43-nov-14-2000', + 'Pump it Up: The Collection (R5/v3.43 - Nov 14 2000)', + 'Andamiro', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpitc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-perfect-collection-r5-v3-52-dec-18-2000', + 'Pump it Up: The Perfect Collection (R5/v3.52 - Dec 18 2000)', + 'Andamiro', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpitpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'punch-mania-2-hokuto-no-ken-gqa09-jaa', + 'Punch Mania 2: Hokuto no Ken (GQA09 JAA)', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["pnchmn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'punch-your-lights-out', + 'Punch Your Lights Out', + 'Tiger', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pylo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tiger/pylo.cpp"]}'::jsonb + ), + ( + 'punch-out', + 'Punch-Out!!', + 'Nintendo', + 1984, + array['Punch-Out!! (Rev B)'], + array['Arcade'], + '{"mame":["punchout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/punchout.cpp"]}'::jsonb + ), + ( + 'punk-shot', + 'Punk Shot', + 'Konami', + 1990, + array['Punk Shot (US 4 Players)'], + array['Arcade'], + '{"mame":["punkshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'pururun', + 'Pururun', + 'Metro / Banpresto', + 1995, + array['Pururun (Japan set 1)'], + array['Arcade'], + '{"mame":["pururun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'push-over-summit-coin', + 'Push-Over (Summit Coin)', + 'Summit Coin', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["pushover"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/summit.cpp"]}'::jsonb + ), + ( + 'pushman', + 'Pushman', + 'Comad', + 1990, + array['Pushman (Korea, set 1)'], + array['Arcade'], + '{"mame":["pushman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/tigeroad.cpp"]}'::jsonb + ), + ( + 'puyo-pop-fever-gds-0034', + 'Puyo Pop Fever (GDS-0034)', + 'Sega', + 2003, + array['Puyo Pop Fever (World) (GDS-0034)'], + array['Puzzle'], + '{"mame":["puyofev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'puyo-puyo', + 'Puyo Puyo', + 'Compile / Sega', + 1992, + array['Puyo Puyo (World)'], + array['Puzzle'], + '{"mame":["puyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'puyo-puyo-2', + 'Puyo Puyo 2', + 'Compile (Sega license)', + 1994, + array['Puyo Puyo 2 (Japan)'], + array['Puzzle'], + '{"mame":["puyopuy2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'puyo-puyo-da', + 'Puyo Puyo Da!', + 'Compile', + 1999, + array['Puyo Puyo Da! (Japan)'], + array['Puzzle'], + '{"mame":["puyoda"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'puyo-puyo-sun-j-961115-v0-001', + 'Puyo Puyo Sun (J 961115 V0.001)', + 'Compile', + 1996, + '{}'::text[], + array['Puzzle'], + '{"mame":["puyosun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'puzz-ball', + 'Puzz Ball', + 'Namco', + 2002, + array['Puzz Ball (Japan, PZB1 Ver.C)'], + array['Arcade'], + '{"mame":["puzzball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'puzz-loop', + 'Puzz Loop', + 'Mitchell', + 1998, + array['Puzz Loop (Europe, v0.94)'], + array['Arcade'], + '{"mame":["puzzloop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'puzz-loop-2', + 'Puzz Loop 2', + 'Mitchell (Capcom license)', + 2001, + array['Puzz Loop 2 (Europe 010302)'], + array['Arcade'], + '{"mame":["pzloop2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'puzzle-and-action-ichidant-r', + 'Puzzle & Action: Ichidant-R', + 'Sega', + 1994, + array['Puzzle & Action: Ichidant-R (World)'], + array['Puzzle'], + '{"mame":["ichir"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'puzzle-and-action-sando-r-j-951114-v1-000', + 'Puzzle & Action: Sando-R (J 951114 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Puzzle'], + '{"mame":["sandor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'puzzle-and-action-tant-r', + 'Puzzle & Action: Tant-R', + 'Sega', + 1992, + array['Puzzle & Action: Tant-R (Japan)'], + array['Puzzle'], + '{"mame":["tantr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble', + 'Puzzle Bobble', + 'Taito Corporation', + 1994, + array['Puzzle Bobble (Japan, B-System)'], + array['Puzzle'], + '{"mame":["pbobble"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble-italian-gambling-game', + 'Puzzle Bobble (Italian gambling game)', + '', + 2001, + '{}'::text[], + array['Puzzle'], + '{"mame":["te0144"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble-bust-a-move-neo-geo-ngm-083', + 'Puzzle Bobble / Bust-A-Move (Neo-Geo, NGM-083)', + 'Taito', + 1994, + '{}'::text[], + array['Puzzle'], + '{"mame":["pbobblen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble-2', + 'Puzzle Bobble 2', + 'Taito Corporation Japan', + 1995, + array['Puzzle Bobble 2 (Ver 2.3O 1995/07/31)'], + array['Puzzle'], + '{"mame":["pbobble2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble-2-bust-a-move-again-neo-geo', + 'Puzzle Bobble 2 / Bust-A-Move Again (Neo-Geo)', + 'Taito (SNK license)', + 1999, + '{}'::text[], + array['Puzzle'], + '{"mame":["pbobbl2n"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble-3', + 'Puzzle Bobble 3', + 'Taito Corporation', + 1996, + array['Puzzle Bobble 3 (Ver 2.1O 1996/09/27)'], + array['Puzzle'], + '{"mame":["pbobble3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble-4', + 'Puzzle Bobble 4', + 'Taito Corporation', + 1997, + array['Puzzle Bobble 4 (Ver 2.04O 1997/12/19)'], + array['Puzzle'], + '{"mame":["pbobble4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'puzzle-break', + 'Puzzle Break', + 'SemiCom / Tirano', + 1997, + array['Puzzle Break (set 1)'], + array['Puzzle'], + '{"mame":["pzlbreak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'puzzle-club', + 'Puzzle Club', + 'Yun Sung', + 2000, + array['Puzzle Club (Yun Sung, set 1)', 'Puzzle Club (Japan prototype)'], + array['Puzzle'], + '{"mame":["pclubys","puzlclub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp","namco/namcos1.cpp"]}'::jsonb + ), + ( + 'puzzle-de-bowling', + 'Puzzle De Bowling', + 'Nihon System / MOSS', + 1999, + array['Puzzle De Bowling (Japan)'], + array['Sports', 'Puzzle'], + '{"mame":["pzlbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'puzzle-de-pon', + 'Puzzle De Pon!', + 'Visco', + 1995, + '{}'::text[], + array['Puzzle'], + '{"mame":["puzzledp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'puzzle-de-pon-r', + 'Puzzle De Pon! R!', + 'Visco', + 1997, + '{}'::text[], + array['Puzzle'], + '{"mame":["puzzldpr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'puzzle-express-more-more', + 'Puzzle Express More More', + 'SemiCom / Exit', + 1999, + array['Puzzle Express More More (Korea)'], + array['Puzzle'], + '{"mame":["moremore"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'puzzle-express-more-more-plus', + 'Puzzle Express More More Plus', + 'SemiCom / Exit', + 1999, + '{}'::text[], + array['Puzzle'], + '{"mame":["moremorp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'puzzle-game-rong-rong', + 'Puzzle Game Rong Rong', + 'Nakanihon (Activision license)', + 1994, + array['Puzzle Game Rong Rong (Europe)'], + array['Puzzle'], + '{"mame":["rongrong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'puzzle-king-dance-and-puzzle', + 'Puzzle King (Dance & Puzzle)', + 'Eolith', + 1998, + '{}'::text[], + array['Puzzle'], + '{"mame":["puzzlekg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'puzzle-king-pacman-2-tetris-hyperman-2-snow-bros', + 'Puzzle King (PacMan 2, Tetris, HyperMan 2, Snow Bros.)', + 'K1 Soft', + 2002, + '{}'::text[], + array['Puzzle'], + '{"mame":["4in1boot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'puzzle-me', + 'Puzzle Me!', + 'Impera', + null, + '{}'::text[], + array['Puzzle'], + '{"mame":["puzzleme"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'puzzle-star-mohuan-xingzuo', + 'Puzzle Star / Mohuan Xingzuo', + 'IGS (Metro license)', + 1999, + array['Puzzle Star / Mohuan Xingzuo (ver. 100MG, 09/30/99 build)'], + array['Puzzle'], + '{"mame":["puzlstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'puzzle-time', + 'Puzzle Time', + 'Elettronica Video-Games', + null, + array['Puzzle Time (prototype)'], + array['Puzzle'], + '{"mame":["pzletime"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/pzletime.cpp"]}'::jsonb + ), + ( + 'puzzle-uo-poko', + 'Puzzle Uo Poko', + 'Cave (Jaleco license)', + 1998, + array['Puzzle Uo Poko (World)'], + array['Puzzle'], + '{"mame":["uopoko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'puzzle-yutnori', + 'Puzzle Yutnori', + 'Nunal', + 1999, + array['Puzzle Yutnori (Korea)'], + array['Puzzle'], + '{"mame":["yutnori"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'puzzle-mushihime-tama', + 'Puzzle! Mushihime-Tama', + 'Cave (AMI license)', + 2005, + array['Puzzle! Mushihime-Tama (Japan, 2005/09/09.MASTER VER)'], + array['Puzzle'], + '{"mame":["mushitam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'puzzled-joy-joy-kid-ngm-021-ngh-021', + 'Puzzled / Joy Joy Kid (NGM-021 ~ NGH-021)', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["joyjoy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'puzzlet', + 'Puzzlet', + 'Unies Corporation', + 2000, + array['Puzzlet (Japan)'], + array['Arcade'], + '{"mame":["puzzlet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'puzzli', + 'Puzzli', + 'Metro / Banpresto', + 1995, + array['Puzzli (Japan revision B)'], + array['Arcade'], + '{"mame":["puzzli"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'puzzli-2-pao-pao-yu', + 'Puzzli 2 / Pao Pao Yu', + 'IGS (Metro license)', + 1999, + array['Puzzli 2 / Pao Pao Yu (ver. 100)'], + array['Arcade'], + '{"mame":["puzzli2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'puzzlove', + 'PuzzLove', + 'Para', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["puzzlove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/silvmil.cpp"]}'::jsonb + ), + ( + 'puzznic', + 'Puzznic', + 'Taito Corporation Japan', + 1989, + array['Puzznic (World)'], + array['Arcade'], + '{"mame":["puzznic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'pv-1000', + 'PV-1000', + 'Casio', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pv1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pv1000.cpp"]}'::jsonb + ), + ( + 'pv-2000', + 'PV-2000', + 'Casio', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pv2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pv2000.cpp"]}'::jsonb + ), + ( + 'pvi-486ap4', + 'PVI-486AP4', + 'Asus', + 1994, + array['PVI-486AP4 (Intel I420EX Aries chipset)'], + array['Arcade'], + '{"mame":["a486ap4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/i420ex.cpp"]}'::jsonb + ), + ( + 'px-4', + 'PX-4', + 'Epson', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["px4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["epson/px4.cpp"]}'::jsonb + ), + ( + 'px-8', + 'PX-8', + 'Epson', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["px8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["epson/px8.cpp"]}'::jsonb + ), + ( + 'pye-nage-taikai', + 'Pye-nage Taikai', + 'Sammy', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["pyenaget"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'pyon-pyon-jump', + 'Pyon Pyon Jump', + 'Success / Taiyo Jidoki', + 1991, + array['Pyon Pyon Jump (V1.40, Japan)'], + array['Arcade'], + '{"mame":["ppj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/kurukuru.cpp"]}'::jsonb + ), + ( + 'python-photon-system', + 'Python (Photon System)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["phpython"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/photon.cpp"]}'::jsonb + ), + ( + 'pyuuta-kun', + 'Pyuuta-kun', + 'Sunwise', + 1995, + array['Pyuuta-kun (Japan)'], + array['Arcade'], + '{"mame":["pyutakun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/sunwise.cpp"]}'::jsonb + ), + ( + 'q-bert', + 'Q*bert', + 'Gottlieb', + 1982, + array['Q*bert (US set 1)'], + array['Puzzle', 'Classic'], + '{"mame":["qbert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'q-bert-s-qubes', + 'Q*bert''s Qubes', + 'Mylstar', + 1983, + '{}'::text[], + array['Puzzle', 'Classic'], + '{"mame":["qbertqub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'qb-3', + 'QB-3', + 'Rock-Ola', + 1982, + array['QB-3 (prototype)'], + array['Arcade'], + '{"mame":["qb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'qi-wang', + 'Qi Wang', + 'Herb Home', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["qiwang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/popobear.cpp"]}'::jsonb + ), + ( + 'qianxi-jielong-hongxin-jielong', + 'Qianxi Jielong / Hongxin Jielong', + 'Hom Inn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["qxjl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hominn/hominn_980924.cpp"]}'::jsonb + ), + ( + 'qiji-6-v118cn', + 'Qiji 6 (V118CN)', + 'IGS', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["qiji6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027_033vid.cpp"]}'::jsonb + ), + ( + 'qing-cheng-zhi-lian', + 'Qing Cheng Zhi Lian', + 'Sealy', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["qczl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_eagle.cpp"]}'::jsonb + ), + ( + 'qix', + 'Qix', + 'Taito America Corporation', + 1981, + array['Qix (Rev 2)'], + array['Arcade'], + '{"mame":["qix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'qs300', + 'QS300', + 'Yamaha', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["qs300"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymqs300.cpp"]}'::jsonb + ), + ( + 'quad-x', + 'Quad X', + 'Torch Computers', + 1988, + array['Quad X (68030 prototype)'], + array['Arcade'], + '{"mame":["quadx","quadxp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["torch/quadx.cpp"]}'::jsonb + ), + ( + 'quantum', + 'Quantum', + 'General Computer Corporation (Atari license)', + 1982, + array['Quantum (rev 2)'], + array['Arcade'], + '{"mame":["quantum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/quantum.cpp"]}'::jsonb + ), + ( + 'quarter-horse', + 'Quarter Horse', + 'Electro-Sport', + 1983, + array['Quarter Horse (set 1, Pioneer PR-8210)'], + array['Arcade'], + '{"mame":["quarterh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dwarfd.cpp"]}'::jsonb + ), + ( + 'quarter-horse-classic', + 'Quarter Horse Classic', + 'ArJay Exports/Prestige Games', + 1995, + '{}'::text[], + array['Classic'], + '{"mame":["qc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dwarfd.cpp"]}'::jsonb + ), + ( + 'quarterback', + 'Quarterback', + 'Leland Corporation', + 1987, + array['Quarterback (rev 5)'], + array['Arcade'], + '{"mame":["quarterb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'quartet', + 'Quartet', + 'Sega', + 1986, + array['Quartet (Rev A, 8751 315-5194)'], + array['Arcade'], + '{"mame":["quartet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'quasar', + 'Quasar', + 'Zaccaria / Zelco', + 1980, + array['Quasar (set 1)'], + array['Arcade'], + '{"mame":["quasar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/quasar.cpp"]}'::jsonb + ), + ( + 'que-huang-zhengba-v100cn', + 'Que Huang Zhengba (V100CN)', + 'IGS', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["qhzb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'que-long-gaoshou-s501cn', + 'Que Long Gaoshou (S501CN)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["qlgs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'queen-bee', + 'Queen Bee', + 'Subsino (American Alpha license)', + 2001, + array['Queen Bee (Ver. 114)'], + array['Arcade'], + '{"mame":["queenbee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'queen-of-the-games', + 'Queen of the Games', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["queenotg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl3.cpp"]}'::jsonb + ), + ( + 'quest-of-d-cdv-10005c', + 'Quest of D (CDV-10005C)', + 'Sega', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["questofd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'quest-of-d-oukoku-no-syugosya-ver-3-02-cdv-10026d', + 'Quest of D Oukoku no Syugosya Ver. 3.02 (CDV-10026D)', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["qofd3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'quest-of-d-the-battle-kingdom-cdv-10035b', + 'Quest of D The Battle Kingdom (CDV-10035B)', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["qofdtbk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'quester', + 'Quester', + 'Namco', + 1987, + array['Quester (Japan)'], + array['Arcade'], + '{"mame":["quester"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'quick-jack', + 'Quick Jack', + 'ADP', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["quickjac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/adp.cpp"]}'::jsonb + ), + ( + 'quick-pick-5', + 'Quick Pick 5', + 'Konami', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["quickp5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/quickpick5.cpp"]}'::jsonb + ), + ( + 'quingo-export-5-00', + 'Quingo Export (5.00)', + 'Impera', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["quingo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'quizard-v1-8-german-i8751-de-11-d3', + 'Quizard (v1.8, German, i8751 DE 11 D3)', + 'TAB Austria', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["quizard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'quizard-2-v2-3-german-i8751-dn-122-d3', + 'Quizard 2 (v2.3, German, i8751 DN 122 D3)', + 'TAB Austria', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["quizard2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'quizard-3-v3-4-german-i8751-de-132-d3', + 'Quizard 3 (v3.4, German, i8751 DE 132 D3)', + 'TAB Austria', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["quizard3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'quizard-4-rainbow-v4-2-german-i8751-de-142-d3', + 'Quizard 4 Rainbow (v4.2, German, i8751 DE 142 D3)', + 'TAB Austria', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["quizard4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'quizard-fun-and-fascination-french-edition-v1-01-96', + 'Quizard Fun and Fascination (French Edition V1 - 01/96)', + 'TAB Austria', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["quizardff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'quizmaster-german', + 'Quizmaster (German)', + 'Löwen Spielautomaten', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["quizmstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmstr.cpp"]}'::jsonb + ), + ( + 'qvt-102', + 'QVT-102', + 'Qume', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["qvt102"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["qume/qvt102.cpp"]}'::jsonb + ), + ( + 'qvt-103', + 'QVT-103', + 'Qume', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["qvt103"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["qume/qvt103.cpp"]}'::jsonb + ), + ( + 'qvt-190', + 'QVT-190', + 'Qume', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["qvt190"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["qume/qvt190.cpp"]}'::jsonb + ), + ( + 'qvt-201', + 'QVT-201', + 'Qume', + 1986, + array['QVT-201 (Rev. T201VE)'], + array['Arcade'], + '{"mame":["qvt201"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["qume/qvt201.cpp"]}'::jsonb + ), + ( + 'qvt-70', + 'QVT-70', + 'Qume', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["qvt70"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["qume/qvt70.cpp"]}'::jsonb + ), + ( + 'qvt-82', + 'QVT-82', + 'Qume', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["qvt82"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["qume/qvt70.cpp"]}'::jsonb + ), + ( + 'qwak', + 'Qwak', + 'Atari', + 1982, + array['Qwak (prototype)'], + array['Arcade'], + '{"mame":["qwak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/runaway.cpp"]}'::jsonb + ), + ( + 'qwak-quack', + 'Qwak!/Quack', + 'Atari', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["qwakttl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'qx-10', + 'QX-10', + 'Epson', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["qx10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["epson/qx10.cpp"]}'::jsonb + ), + ( + 'qy70-music-sequencer', + 'QY70 Music Sequencer', + 'Yamaha', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["qy70"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymqy70.cpp"]}'::jsonb + ), + ( + 'r-100-digital-drum-machine', + 'R-100 Digital Drum Machine', + 'Kawai Musical Instrument Manufacturing', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["r100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/r100.cpp"]}'::jsonb + ), + ( + 'r-shark', + 'R-Shark', + 'Dooyong', + 1995, + array['R-Shark (set 1)'], + array['Arcade'], + '{"mame":["rshark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'r-type', + 'R-Type', + 'Irem', + 1987, + array['R-Type (World)'], + array['Shooter'], + '{"mame":["rtype"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'r-type-ii', + 'R-Type II', + 'Irem', + 1989, + array['R-Type II (World)'], + array['Shooter'], + '{"mame":["rtype2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'r-type-leo', + 'R-Type Leo', + 'Irem', + 1992, + array['R-Type Leo (World)'], + array['Shooter'], + '{"mame":["rtypeleo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'r-c-pro-am-playchoice-10', + 'R.C. Pro-Am (PlayChoice-10)', + 'Rare', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_rcpam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'r2d-tank', + 'R2D Tank', + 'Sigma Enterprises Inc.', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["r2dtank"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/r2dtank.cpp"]}'::jsonb + ), + ( + 'ra-s-scepter', + 'Ra''s Scepter', + 'Astro Corp.', + 2005, + array['Ra''s Scepter (Russia)'], + array['Arcade'], + '{"mame":["rasce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'rabbit', + 'Rabbit', + 'Aorn / Electronic Arts', + 1997, + array['Rabbit (Asia 3/6)'], + array['Arcade'], + '{"mame":["rabbit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/rabbit.cpp"]}'::jsonb + ), + ( + 'rabio-lepus', + 'Rabio Lepus', + 'V-System Co.', + 1987, + array['Rabio Lepus (Japan)'], + array['Arcade'], + '{"mame":["rabiolep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/rpunch.cpp"]}'::jsonb + ), + ( + 'raccoon-world', + 'Raccoon World', + 'Eolith', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["raccoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'race-drivin', + 'Race Drivin''', + 'Atari Games', + 1990, + array['Race Drivin'' (cockpit, rev 5)'], + array['Arcade'], + '{"mame":["racedriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/harddriv.cpp"]}'::jsonb + ), + ( + 'race-on', + 'Race On!', + 'Namco', + 1998, + array['Race On! (World, RO2 Ver. A)'], + array['Arcade'], + '{"mame":["raceon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'racin-force', + 'Racin'' Force', + 'Konami', + 1994, + array['Racin'' Force (ver EAC)'], + array['Arcade'], + '{"mame":["racinfrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'racing-beat', + 'Racing Beat', + 'Taito Corporation Japan', + 1991, + array['Racing Beat (World)'], + array['Racing'], + '{"mame":["racingb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'racing-challenge-8-games-in-1', + 'Racing Challenge - 8 Games In 1', + 'Play Vision / Taikee', + 2005, + '{}'::text[], + array['Racing'], + '{"mame":["racechl8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'racing-hero-fd1094-317-0144', + 'Racing Hero (FD1094 317-0144)', + 'Sega', + 1989, + '{}'::text[], + array['Racing'], + '{"mame":["rachero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'racing-jam-gq676uac', + 'Racing Jam (GQ676UAC)', + 'Konami', + 1998, + '{}'::text[], + array['Racing'], + '{"mame":["racingj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nwk-tr.cpp"]}'::jsonb + ), + ( + 'racing-jam-dx', + 'Racing Jam DX', + 'Konami', + 1997, + '{}'::text[], + array['Racing'], + '{"mame":["racjamdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/cobra.cpp"]}'::jsonb + ), + ( + 'racing-jam-chapter-ii-gq888uaa', + 'Racing Jam: Chapter II (GQ888UAA)', + 'Konami', + 1998, + '{}'::text[], + array['Racing'], + '{"mame":["racingj2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nwk-tr.cpp"]}'::jsonb + ), + ( + 'rack-em-up', + 'Rack ''em Up', + 'Konami', + 1987, + array['Rack ''em Up (version L)'], + array['Arcade'], + '{"mame":["rackemup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/battlnts.cpp"]}'::jsonb + ), + ( + 'rack-roll', + 'Rack + Roll', + 'Senko Industries (Status license from Shinkai Inc.)', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["racknrol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxold.cpp"]}'::jsonb + ), + ( + 'rad-mobile', + 'Rad Mobile', + 'Sega', + 1990, + array['Rad Mobile (World)'], + array['Arcade'], + '{"mame":["radm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'rad-racer-playchoice-10', + 'Rad Racer (PlayChoice-10)', + 'Square', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_radrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'rad-racer-ii-playchoice-10', + 'Rad Racer II (PlayChoice-10)', + 'Square (Nintendo of America license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_radr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'rad-rally', + 'Rad Rally', + 'Sega', + 1991, + array['Rad Rally (World)'], + array['Arcade'], + '{"mame":["radr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'radar-scope', + 'Radar Scope', + 'Nintendo', + 1980, + array['Radar Scope (TRS02, rev. D)'], + array['Arcade'], + '{"mame":["radarscp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'radar-zone', + 'Radar Zone', + 'Century Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["radarzon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'radiant-silvergun-juet-980523-v1-000', + 'Radiant Silvergun (JUET 980523 V1.000)', + 'Treasure', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["rsgun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'radical-enduro', + 'Radical Enduro', + 'TCH / Sator Videogames', + null, + array['Radical Enduro (early prototype)'], + array['Arcade'], + '{"mame":["radendur"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/wheelfir.cpp"]}'::jsonb + ), + ( + 'radical-radial', + 'Radical Radial', + 'Logitec Corp. (Nichibutsu USA license)', + 1982, + array['Radical Radial (US)'], + array['Arcade'], + '{"mame":["radrad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/seicross.cpp"]}'::jsonb + ), + ( + 'radikal-bikers', + 'Radikal Bikers', + 'Gaelco', + 1998, + array['Radikal Bikers (version 2.02)'], + array['Arcade'], + '{"mame":["radikalb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco3d.cpp"]}'::jsonb + ), + ( + 'radikal-darts', + 'Radikal Darts', + 'Gaelco Darts', + null, + array['Radikal Darts (Diana Version 7.29.25)'], + array['Arcade'], + '{"mame":["radikald"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/radsys.cpp"]}'::jsonb + ), + ( + 'radirgy-gdl-0032a', + 'Radirgy (GDL-0032A)', + 'Milestone', + 2005, + array['Radirgy (Japan, Rev A) (GDL-0032A)'], + array['Arcade'], + '{"mame":["radirgy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'radirgy-noa', + 'Radirgy Noa', + 'Milestone / Lucky', + 2009, + array['Radirgy Noa (Japan)'], + array['Arcade'], + '{"mame":["radirgyn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'rafflesia-315-5162', + 'Rafflesia (315-5162)', + 'Coreland / Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["raflesia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'rage-of-the-dragons-ngm-2640', + 'Rage of the Dragons (NGM-2640?)', + 'Evoga / Playmore', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["rotd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ragnagard-shin-oh-ken', + 'Ragnagard / Shin-Oh-Ken', + 'Saurus', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["ragnagrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'raiden', + 'Raiden', + 'Seibu Kaihatsu', + 1990, + array['Raiden (World set 1)'], + array['Shooter'], + '{"mame":["raiden"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/raiden.cpp"]}'::jsonb + ), + ( + 'raiden-dx-uk', + 'Raiden DX (UK)', + 'Seibu Kaihatsu', + 1994, + '{}'::text[], + array['Shooter'], + '{"mame":["raidendx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/raiden2.cpp"]}'::jsonb + ), + ( + 'raiden-fighters-germany', + 'Raiden Fighters (Germany)', + 'Seibu Kaihatsu (Tuning license)', + 1996, + '{}'::text[], + array['Shooter'], + '{"mame":["rdft"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'raiden-fighters-2-operation-hell-dive-germany', + 'Raiden Fighters 2 - Operation Hell Dive (Germany)', + 'Seibu Kaihatsu (Tuning license)', + 1997, + '{}'::text[], + array['Shooter'], + '{"mame":["rdft2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'raiden-fighters-jet-germany', + 'Raiden Fighters Jet (Germany)', + 'Seibu Kaihatsu (Tuning license)', + 1998, + '{}'::text[], + array['Shooter'], + '{"mame":["rfjet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'raiden-ii', + 'Raiden II', + 'Seibu Kaihatsu (Fabtek license)', + 1993, + array['Raiden II (US, set 1)'], + array['Shooter'], + '{"mame":["raiden2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/raiden2.cpp"]}'::jsonb + ), + ( + 'raiden-ii-new-raiden-dx-newer-v33-pcb-raiden-dx-eeprom', + 'Raiden II New / Raiden DX (newer V33 PCB) (Raiden DX EEPROM)', + 'Seibu Kaihatsu', + 1996, + '{}'::text[], + array['Shooter'], + '{"mame":["r2dx_v33"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/r2dx_v33.cpp"]}'::jsonb + ), + ( + 'raiden-iii-v2-01j', + 'Raiden III (v2.01J)', + 'MOSS / Seibu Kaihatsu', + 2005, + '{}'::text[], + array['Shooter'], + '{"mame":["raiden3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'raiden-iv-v1-00j', + 'Raiden IV (v1.00J)', + 'MOSS / Seibu Kaihatsu', + 2007, + '{}'::text[], + array['Shooter'], + '{"mame":["raiden4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'raiders', + 'Raiders', + 'Century Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["raiders"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'raiders5', + 'Raiders5', + 'UPL', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["raiders5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/nova2001.cpp"]}'::jsonb + ), + ( + 'raiga-strato-fighter', + 'Raiga - Strato Fighter', + 'Tecmo', + 1991, + array['Raiga - Strato Fighter (US)'], + array['Arcade'], + '{"mame":["stratof"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/gaiden.cpp"]}'::jsonb + ), + ( + 'rail-chase', + 'Rail Chase', + 'Sega', + 1991, + array['Rail Chase (World)'], + array['Arcade'], + '{"mame":["rchase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaybd.cpp"]}'::jsonb + ), + ( + 'rail-chase-2', + 'Rail Chase 2', + 'Sega', + 1994, + array['Rail Chase 2 (Revision A)'], + array['Arcade'], + '{"mame":["rchase2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'raimais', + 'Raimais', + 'Taito Corporation Japan', + 1988, + array['Raimais (World, rev 1)'], + array['Arcade'], + '{"mame":["raimais"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'rainbow-100-b', + 'Rainbow 100-B', + 'Digital Equipment Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["rainbow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/rainbow.cpp"]}'::jsonb + ), + ( + 'rainbow-brite-mini-arcade', + 'Rainbow Brite (mini-arcade)', + 'Coleco', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["rbbrite"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'rainbow-islands', + 'Rainbow Islands', + 'Taito Corporation', + 1987, + array['Rainbow Islands (rev 1)'], + array['Arcade'], + '{"mame":["rbisland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/rbisland.cpp"]}'::jsonb + ), + ( + 'rainbow-islands-extra-version', + 'Rainbow Islands - Extra Version', + 'Taito Corporation', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["rbislande"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/rbisland.cpp"]}'::jsonb + ), + ( + 'raizin-ping-pong', + 'Raizin Ping Pong', + 'Taito', + 2002, + array['Raizin Ping Pong (VER.2.01O)'], + array['Arcade'], + '{"mame":["raizpin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'rally-bike-dash-yarou', + 'Rally Bike / Dash Yarou', + 'Toaplan / Taito Corporation', + 1988, + array['Rally Bike (Europe, US) / Dash Yarou (Japan)'], + array['Arcade'], + '{"mame":["rallybik"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/rallybik.cpp"]}'::jsonb + ), + ( + 'rally-x', + 'Rally X', + 'Namco', + 1980, + array['Rally X (32k Ver.?)'], + array['Arcade'], + '{"mame":["rallyx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rallyx.cpp"]}'::jsonb + ), + ( + 'rambo-export', + 'Rambo (Export)', + 'Sega', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["rambo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'rambo-iii', + 'Rambo III', + 'Taito Europe Corporation', + 1989, + array['Rambo III (Europe)'], + array['Arcade'], + '{"mame":["rambo3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'rampage', + 'Rampage', + 'Bally Midway', + 1986, + array['Rampage (Rev 3, 8/27/86)'], + array['Arcade'], + '{"mame":["rampage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'rampage-world-tour', + 'Rampage: World Tour', + 'Midway', + 1997, + array['Rampage: World Tour (rev 1.3)'], + array['Arcade'], + '{"mame":["rmpgwt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwunit.cpp"]}'::jsonb + ), + ( + 'rampart-trackball', + 'Rampart (Trackball)', + 'Atari Games', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["rampart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/rampart.cpp"]}'::jsonb + ), + ( + 'ranger-mission', + 'Ranger Mission', + 'RIZ Inc./ Sammy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["rangrmsn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'rapid-fire-v1-1-build-239', + 'Rapid Fire (v1.1, Build 239)', + 'Hanaho Games', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["rapidfir"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tickee.cpp"]}'::jsonb + ), + ( + 'rapid-fire-5-konami-endeavour-nsw', + 'Rapid Fire 5 (Konami Endeavour, NSW)', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rapfire5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'rapid-river', + 'Rapid River', + 'Namco', + 1997, + array['Rapid River (US, RD3 Ver. C)'], + array['Arcade'], + '{"mame":["rapidrvr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'rastan', + 'Rastan', + 'Taito Corporation Japan', + 1987, + array['Rastan (World Rev 1)'], + array['Platformer'], + '{"mame":["rastan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/rastan.cpp"]}'::jsonb + ), + ( + 'rave-racer', + 'Rave Racer', + 'Namco', + 1995, + array['Rave Racer (World, RV2 Ver.B)'], + array['Arcade'], + '{"mame":["raverace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'ravensburger-selbstbaucomputer-v0-9', + 'Ravensburger Selbstbaucomputer V0.9', + 'Joseph Glagla and Dieter Feiler', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["ravens"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/ravens.cpp"]}'::jsonb + ), + ( + 'razzmatazz', + 'Razzmatazz', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["razmataz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/zaxxon.cpp"]}'::jsonb + ), + ( + 'rc2014-classic', + 'RC2014 Classic', + 'RFC2795 Ltd', + 2016, + '{}'::text[], + array['Classic'], + '{"mame":["rc2014"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/rc2014.cpp"]}'::jsonb + ), + ( + 'rc2030', + 'RC2030', + 'MIPS', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["rc2030"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mips/mips_i2000.cpp"]}'::jsonb + ), + ( + 'rc3230', + 'RC3230', + 'MIPS', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["rc3230"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mips/mips_r3030.cpp"]}'::jsonb + ), + ( + 'rc702-piccolo', + 'RC702 Piccolo', + 'Regnecentralen', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["rc702"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["regnecentralen/rc702.cpp"]}'::jsonb + ), + ( + 'rc759-piccoline', + 'RC759 Piccoline', + 'Regnecentralen', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["rc759"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["regnecentralen/rc759.cpp"]}'::jsonb + ), + ( + 'rca-ns-500-30-in-1', + 'RCA NS-500 30-in-1', + 'RCA / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rcapnp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'reactor', + 'Reactor', + 'Gottlieb', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["reactor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'reactor-md', + 'Reactor MD', + 'AtGames / Sega / Waixing', + 2009, + array['Reactor MD (Firecore/SunPlus hybrid, PAL)'], + array['Arcade'], + '{"mame":["reactmd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_firecore.cpp"]}'::jsonb + ), + ( + 'reaktor', + 'Reaktor', + 'Zilec', + 1987, + array['Reaktor (Track & Field conversion)'], + array['Arcade'], + '{"mame":["reaktor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/trackfld.cpp"]}'::jsonb + ), + ( + 'real-bout-fatal-fury-real-bout-garou-densetsu-ngm-095-ngh-095', + 'Real Bout Fatal Fury / Real Bout Garou Densetsu (NGM-095 ~ NGH-095)', + 'SNK', + 1995, + '{}'::text[], + array['Fighting'], + '{"mame":["rbff1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'real-bout-fatal-fury-2-the-newcomers-real-bout-garou-densetsu-2-the-newcomers-ngm-2400', + 'Real Bout Fatal Fury 2 - The Newcomers / Real Bout Garou Densetsu 2 - The Newcomers (NGM-2400)', + 'SNK', + 1998, + '{}'::text[], + array['Fighting'], + '{"mame":["rbff2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'real-bout-fatal-fury-special-real-bout-garou-densetsu-special', + 'Real Bout Fatal Fury Special / Real Bout Garou Densetsu Special', + 'SNK', + 1996, + '{}'::text[], + array['Fighting'], + '{"mame":["rbffspec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'reality-tennis', + 'Reality Tennis', + 'TCH', + 1993, + array['Reality Tennis (set 1)'], + array['Sports'], + '{"mame":["rltennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/rltennis.cpp"]}'::jsonb + ), + ( + 'rebound', + 'Rebound', + 'Atari', + 1974, + array['Rebound (Rev B)'], + array['Arcade'], + '{"mame":["rebound"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/pong.cpp"]}'::jsonb + ), + ( + 'rebus', + 'Rebus', + 'Microhard', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["rebus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/splash.cpp"]}'::jsonb + ), + ( + 'recalhorn', + 'Recalhorn', + 'Taito Corporation', + 1994, + array['Recalhorn (Ver 1.42J 1994/5/11, prototype)'], + array['Arcade'], + '{"mame":["recalh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'record', + 'Record', + 'High Video', + 2000, + array['Record (Version 1)'], + array['Arcade'], + '{"mame":["record"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'recordbreaker', + 'Recordbreaker', + 'Taito Corporation Japan', + 1988, + array['Recordbreaker (World)'], + array['Arcade'], + '{"mame":["recordbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_h.cpp"]}'::jsonb + ), + ( + 'red-alert', + 'Red Alert', + 'Irem (GDI license)', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["redalert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/redalert.cpp"]}'::jsonb + ), + ( + 'red-baron', + 'Red Baron', + 'Atari', + 1980, + array['Red Baron (revised hardware)'], + array['Arcade'], + '{"mame":["redbaron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bzone.cpp"]}'::jsonb + ), + ( + 'red-clash', + 'Red Clash', + 'Kaneko', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["redclash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/zerohour.cpp"]}'::jsonb + ), + ( + 'red-corsair', + 'Red Corsair', + 'Nakasawa', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["rcorsair"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/rcorsair.cpp"]}'::jsonb + ), + ( + 'red-earth', + 'Red Earth', + 'Capcom', + 1996, + array['Red Earth (Europe 961121)'], + array['Arcade'], + '{"mame":["redearth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'red-line-v808-encrypted', + 'Red Line (v808, encrypted)', + 'Fun World', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["redline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/supercrd.cpp"]}'::jsonb + ), + ( + 'red-robin', + 'Red Robin', + 'Elettronolo', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["redrobin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/fastfred.cpp"]}'::jsonb + ), + ( + 'redline-racer-2-players', + 'Redline Racer (2 players)', + 'Cinematronics (Tradewest license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["redlin2p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'reel-em-in-english', + 'Reel ''Em In (English)', + 'WMS', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["reelemin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'reel-fun', + 'Reel Fun', + 'Grayhound Electronics', + 1986, + array['Reel Fun (Version 7.03)'], + array['Arcade'], + '{"mame":["reelfun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'reel-magic-turbo-play', + 'Reel Magic Turbo Play', + 'Accept Ltd.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["reelmtp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/hitpoker.cpp"]}'::jsonb + ), + ( + 'reel-n-quake', + 'Reel''N Quake!', + '', + 1997, + array['Reel''N Quake! (Version 1.05)'], + array['Arcade'], + '{"mame":["reelquak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'regulus', + 'Regulus', + 'Sega', + 1983, + array['Regulus (315-5033, Rev A.)'], + array['Arcade'], + '{"mame":["regulus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'relief-pitcher', + 'Relief Pitcher', + 'Atari Games', + 1992, + array['Relief Pitcher (Rev D, 07 Jun 1992 / 28 May 1992)', 'Relief Pitcher (System 1, prototype)'], + array['Arcade'], + '{"mame":["relief","reliefs1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/relief.cpp","atari/atarisy1.cpp"]}'::jsonb + ), + ( + 'renda-fighter', + 'Renda Fighter', + 'Taito Corporation', + 2000, + array['Renda Fighter (Japan, main ver. 2.02, video ver. 2.03)'], + array['Arcade'], + '{"mame":["rendfgtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/sbmjb.cpp"]}'::jsonb + ), + ( + 'renegade', + 'Renegade', + 'Technos Japan (Taito America license)', + 1986, + array['Renegade (US)'], + array['Arcade'], + '{"mame":["renegade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/renegade.cpp"]}'::jsonb + ), + ( + 'renju-kizoku-kira-kira-gomoku-narabe', + 'Renju Kizoku - Kira Kira Gomoku Narabe', + 'Visco', + 1994, + array['Renju Kizoku - Kira Kira Gomoku Narabe (ver. 1.0)'], + array['Arcade'], + '{"mame":["renju"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'repulse', + 'Repulse', + 'Crux / Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["repulse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/kyugo.cpp"]}'::jsonb + ), + ( + 'rescue', + 'Rescue', + 'Stern Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["rescue"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scobra.cpp"]}'::jsonb + ), + ( + 'rescue-raider-5-11-87-non-cartridge', + 'Rescue Raider (5/11/87) (non-cartridge)', + 'Bally Midway', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["rescraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'resident', + 'Resident', + 'Igrosoft', + 2004, + array['Resident (100311 World)'], + array['Arcade'], + '{"mame":["resdnt_6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'retro-mini-tv-console-300-in-1', + 'Retro ''Mini TV'' Console 300-in-1', + 'Orb Gaming', + 2015, + '{}'::text[], + array['Arcade'], + '{"mame":["rminitv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'retro-arcade-fc-a6plus-8bt-game-console', + 'Retro Arcade FC A6Plus - 8Bt Game Console', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["a6plus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'retro-dance-mat-110-song-super-stepmania-9-in-1-games-pal', + 'Retro Dance Mat (110 song Super StepMania + 9-in-1 games) (PAL)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["110dance"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'retro-fc-400-in-1', + 'Retro FC 400-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["retro400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'retro-fc-620-in-1', + 'Retro FC 620-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["retro620"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'retro-fc-plus-168-in-1-handheld', + 'Retro FC Plus 168 in 1 Handheld', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rfcp168"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'retro-racer-30-in-1', + 'Retro Racer (30-in-1)', + 'Orb Gaming', + 2021, + '{}'::text[], + array['Arcade'], + '{"mame":["retror30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'retro-tv-game-console-300-games', + 'Retro TV Game Console - 300 Games', + 'Lexibook', + 2016, + '{}'::text[], + array['Arcade'], + '{"mame":["rtvgc300"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'retro-tv-game-console-disney-cars-300-games-jg7800dc-1', + 'Retro TV Game Console - Disney Cars - 300 Games (JG7800DC-1)', + 'Lexibook', + 2017, + '{}'::text[], + array['Arcade'], + '{"mame":["rtvgc300cr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'retro-tv-game-console-frozen-300-games', + 'Retro TV Game Console - Frozen - 300 Games', + 'Lexibook', + 2017, + '{}'::text[], + array['Arcade'], + '{"mame":["rtvgc300fz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'retro-tv-game-console-pj-masks-300-games-jg7800pjm-1', + 'Retro TV Game Console - PJ Masks - 300 Games (JG7800PJM-1)', + 'Lexibook', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["rtvgc300pj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'rettou-juudan-nekkyoku-janshi-higashi-nippon-hen', + 'Rettou Juudan Nekkyoku Janshi - Higashi Nippon Hen', + 'Video System Co.', + 1988, + array['Rettou Juudan Nekkyoku Janshi - Higashi Nippon Hen (Japan)'], + array['Arcade'], + '{"mame":["nekkyoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/fromance.cpp"]}'::jsonb + ), + ( + 'return-of-sel-jan-ii', + 'Return of Sel Jan II', + 'Dynax / Face', + 1996, + array['Return of Sel Jan II (Japan, NM557)'], + array['Arcade'], + '{"mame":["seljan2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'return-of-the-invaders', + 'Return of the Invaders', + 'Taito Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["retofinv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/retofinv.cpp"]}'::jsonb + ), + ( + 'return-of-the-jedi', + 'Return of the Jedi', + 'Atari', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["jedi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jedi.cpp"]}'::jsonb + ), + ( + 'revelations', + 'Revelations', + 'Nova Productions Ltd.', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["revlatns"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cops.cpp"]}'::jsonb + ), + ( + 'revenger-84-newer', + 'Revenger ''84 (newer)', + 'Epos Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["revngr84"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'reversi-sensory-challenger', + 'Reversi Sensory Challenger', + 'Fidelity Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["reversic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/csc.cpp"]}'::jsonb + ), + ( + 'revolution-x', + 'Revolution X', + 'Midway', + 1994, + array['Revolution X (revision 2.0 9/8/94)'], + array['Arcade'], + '{"mame":["revx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midxunit.cpp"]}'::jsonb + ), + ( + 'rex-6000', + 'REX 6000', + 'Xircom / Intel', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["rex6000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/rex6000.cpp"]}'::jsonb + ), + ( + 'rezon', + 'Rezon', + 'Allumer', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["rezon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'rhythm-nation-v01-00-04-boot-v3-1-5', + 'Rhythm Nation (v01.00.04, boot v3.1.5)', + 'ICE/Play Mechanix', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["rhnation"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/vp101.cpp"]}'::jsonb + ), + ( + 'rhythm-tengoku', + 'Rhythm Tengoku', + 'Sega / Nintendo - J.P ROOM', + 2007, + array['Rhythm Tengoku (Japan)'], + array['Arcade'], + '{"mame":["rhytngk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'ribbit', + 'Ribbit!', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["ribbit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'riddle-of-pythagoras', + 'Riddle of Pythagoras', + 'Sega / Nasco', + 1986, + array['Riddle of Pythagoras (Japan)'], + array['Arcade'], + '{"mame":["ridleofp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'ridge-racer', + 'Ridge Racer', + 'Namco', + 1993, + array['Ridge Racer (World, RR2 Ver.B)'], + array['Racing'], + '{"mame":["ridgerac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'ridge-racer-2', + 'Ridge Racer 2', + 'Namco', + 1994, + array['Ridge Racer 2 (World, RRS2)'], + array['Racing'], + '{"mame":["ridgera2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'ridge-racer-full-scale', + 'Ridge Racer Full Scale', + 'Namco', + 1993, + array['Ridge Racer Full Scale (World, RRF2)'], + array['Racing'], + '{"mame":["ridgeracf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'ridge-racer-v-arcade-battle', + 'Ridge Racer V Arcade Battle', + 'Namco', + 2000, + array['Ridge Racer V Arcade Battle (RRV3 Ver. A)'], + array['Racing'], + '{"mame":["rrvac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'riding-fight', + 'Riding Fight', + 'Taito Corporation Japan', + 1992, + array['Riding Fight (Ver 1.0O)'], + array['Arcade'], + '{"mame":["ridingf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'riding-hero-ngm-006-ngh-006', + 'Riding Hero (NGM-006 ~ NGH-006)', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ridhero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'rim-rockin-basketball-v2-2', + 'Rim Rockin'' Basketball (v2.2)', + 'Strata / Incredible Technologies', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["rimrockn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'ring-of-destruction-slammasters-ii', + 'Ring of Destruction: Slammasters II', + 'Capcom', + 1994, + array['Ring of Destruction: Slammasters II (Europe 940902)'], + array['Arcade'], + '{"mame":["ringdest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'ring-out-4x4', + 'Ring Out 4x4', + 'Sega', + 1999, + array['Ring Out 4x4 (Rev A)'], + array['Arcade'], + '{"mame":["ringout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'ring-rage', + 'Ring Rage', + 'Taito Corporation Japan', + 1992, + array['Ring Rage (Ver 2.3O 1992/08/09)'], + array['Arcade'], + '{"mame":["ringrage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'ring-riders', + 'Ring Riders', + 'Gaelco', + 2004, + array['Ring Riders (Software version v2.2)'], + array['Arcade'], + '{"mame":["rriders"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelcopc.cpp"]}'::jsonb + ), + ( + 'riot-nmk', + 'Riot (NMK)', + 'Tecmo (NMK license)', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["riot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo16.cpp"]}'::jsonb + ), + ( + 'riot-city', + 'Riot City', + 'Sega / Westone', + 1991, + array['Riot City (Japan)'], + array['Arcade'], + '{"mame":["riotcity"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'rip-cord', + 'Rip Cord', + 'Exidy', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["ripcord"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/circus.cpp"]}'::jsonb + ), + ( + 'rip-off', + 'Rip Off', + 'Cinematronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ripoff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'ripper-ribbit', + 'Ripper Ribbit', + 'LAI Games', + 1997, + array['Ripper Ribbit (Version 3.5)'], + array['Arcade'], + '{"mame":["ripribit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/lethalj.cpp"]}'::jsonb + ), + ( + 'risky-challenge', + 'Risky Challenge', + 'Irem', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["riskchal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m90.cpp"]}'::jsonb + ), + ( + 'river-patrol', + 'River Patrol', + 'Orca', + 1981, + array['River Patrol (Japan)'], + array['Arcade'], + '{"mame":["rpatrol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'riviera-hi-score-2131-08-u5-4a', + 'Riviera Hi-Score (2131-08, U5-4A)', + 'Merit', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["riviera"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'rm-380z-cos-4-0b-f', + 'RM-380Z, COS 4.0B/F', + 'Research Machines', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["rm380zf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rm/rm380z.cpp"]}'::jsonb + ), + ( + 'rm-380z-cos-4-0b-m', + 'RM-380Z, COS 4.0B/M', + 'Research Machines', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["rm380z"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rm/rm380z.cpp"]}'::jsonb + ), + ( + 'road-blaster-data-east-ld', + 'Road Blaster (Data East LD)', + 'Data East', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["rblaster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_ld.cpp"]}'::jsonb + ), + ( + 'road-blasters', + 'Road Blasters', + 'Atari Games', + 1987, + array['Road Blasters (upright, rev 4)'], + array['Arcade'], + '{"mame":["roadblst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy1.cpp"]}'::jsonb + ), + ( + 'road-burners', + 'Road Burners', + 'Atari Games', + 1999, + array['Road Burners (ver 1.04)'], + array['Arcade'], + '{"mame":["roadburn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'road-fighter', + 'Road Fighter', + 'Konami', + 1984, + array['Road Fighter (set 1)'], + array['Arcade'], + '{"mame":["roadf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hyperspt.cpp"]}'::jsonb + ), + ( + 'road-riot-4wd', + 'Road Riot 4WD', + 'Atari Games', + 1991, + array['Road Riot 4WD (04 Dec 1991, conversion kit)'], + array['Arcade'], + '{"mame":["roadriot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarig42.cpp"]}'::jsonb + ), + ( + 'road-riot-s-revenge', + 'Road Riot''s Revenge', + 'Atari Games', + 1993, + array['Road Riot''s Revenge (prototype, Sep 06, 1994)'], + array['Arcade'], + '{"mame":["rrreveng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarigx2.cpp"]}'::jsonb + ), + ( + 'road-runner', + 'Road Runner', + 'Atari Games', + 1985, + array['Road Runner (rev 2)'], + array['Arcade'], + '{"mame":["roadrunn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy1.cpp"]}'::jsonb + ), + ( + 'road-star', + 'Road Star', + 'San Remo Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["roadstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sanremo.cpp"]}'::jsonb + ), + ( + 'roads-edge-round-trip-rv', + 'Roads Edge / Round Trip RV', + 'SNK', + 1997, + array['Roads Edge / Round Trip RV (rev.B)'], + array['Arcade'], + '{"mame":["roadedge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'roadwars-arcadia-v-2-3', + 'RoadWars (Arcadia, V 2.3)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_rdwr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'robin-s-adventure', + 'Robin''s Adventure', + 'Amcoe', + 2004, + array['Robin''s Adventure (Version 1.7E Dual)'], + array['Arcade'], + '{"mame":["robadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'robin-s-adventure-2', + 'Robin''s Adventure 2', + 'Amcoe', + 2004, + array['Robin''s Adventure 2 (Version 1.7E Dual)'], + array['Arcade'], + '{"mame":["robadv2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'robo-army', + 'Robo Army', + 'SNK', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["roboarmy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'robo-wres-2001', + 'Robo Wres 2001', + 'Sanritsu / Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["robowres"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/appoooh.cpp"]}'::jsonb + ), + ( + 'robocop', + 'Robocop', + 'Data East Corporation', + 1988, + array['Robocop (World, revision 4)'], + array['Arcade'], + '{"mame":["robocop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'robocop-2', + 'Robocop 2', + 'Data East Corporation', + 1991, + array['Robocop 2 (Euro/Asia v0.10)'], + array['Arcade'], + '{"mame":["robocop2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cninja.cpp"]}'::jsonb + ), + ( + 'robocop-3-nintendo-super-system', + 'Robocop 3 (Nintendo Super System)', + 'Ocean', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_rob3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'robot-bowl', + 'Robot Bowl', + 'Exidy', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["robotbwl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/circus.cpp"]}'::jsonb + ), + ( + 'robot-training-arm-cs-113', + 'Robot Training Arm CS-113', + 'Sciento b.v.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cs113"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["multitech/mpf1.cpp"]}'::jsonb + ), + ( + 'robotech', + 'Robotech', + 'Coleco', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["robotech"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gba.cpp"]}'::jsonb + ), + ( + 'robotron-pc-1715', + 'Robotron PC-1715', + 'Robotron', + 1986, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["rt1715"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/rt1715.cpp"]}'::jsonb + ), + ( + 'robotron-2084-solid-blue-label', + 'Robotron: 2084 (Solid Blue label)', + 'Williams / Vid Kidz', + 1982, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["robotron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'roc-n-rope', + 'Roc''n Rope', + 'Konami', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["rocnrope"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/rocnrope.cpp"]}'::jsonb + ), + ( + 'rock-climber', + 'Rock Climber', + 'Igrosoft', + 2004, + array['Rock Climber (040827 World)'], + array['Arcade'], + '{"mame":["rclimb_3","rockclim"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp","galaxian/galaxian_rockclim.cpp"]}'::jsonb + ), + ( + 'rock-duck', + 'Rock Duck', + 'Datel SAS', + 1983, + array['Rock Duck (prototype?)'], + array['Arcade'], + '{"mame":["rockduck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'rock-tris', + 'Rock Tris', + 'Yun Sung', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rocktris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsung8.cpp"]}'::jsonb + ), + ( + 'rock-n-3', + 'Rock''n 3', + 'Jaleco', + 1999, + array['Rock''n 3 (Japan)'], + array['Arcade'], + '{"mame":["rockn3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'rock-n-4', + 'Rock''n 4', + 'Jaleco / PCCWJ', + 2000, + array['Rock''n 4 (Japan, prototype)'], + array['Arcade'], + '{"mame":["rockn4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'rock-n-megasession', + 'Rock''n MegaSession', + 'Jaleco', + 1999, + array['Rock''n MegaSession (Japan)'], + array['Arcade'], + '{"mame":["rocknms"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'rock-n-rage', + 'Rock''n Rage', + 'Konami', + 1986, + array['Rock''n Rage (World)'], + array['Arcade'], + '{"mame":["rockrage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/rockrage.cpp"]}'::jsonb + ), + ( + 'rock-n-tread', + 'Rock''n Tread', + 'Jaleco', + 1999, + array['Rock''n Tread (Japan)'], + array['Arcade'], + '{"mame":["rockn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'rock-n-tread-2', + 'Rock''n Tread 2', + 'Jaleco', + 1999, + array['Rock''n Tread 2 (Japan)'], + array['Arcade'], + '{"mame":["rockn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'rockin-bowl-o-rama-v2-1-1', + 'Rockin'' Bowl-O-Rama (v2.1.1)', + 'Namco / Cosmodog', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["rbowlorama"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rbowlorama.cpp"]}'::jsonb + ), + ( + 'rockin-kats-playchoice-10', + 'Rockin'' Kats (PlayChoice-10)', + 'Atlus (Nintendo of America license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_rkats"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'rockman-exe-battle-chip-stadium-ver-3-00', + 'Rockman EXE Battle Chip Stadium Ver.3.00', + 'Capcom', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["rockmanbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'rod-land', + 'Rod-Land', + 'Jaleco', + 1990, + array['Rod-Land (World, set 1)'], + array['Arcade'], + '{"mame":["rodland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'rodent-exterminator', + 'Rodent Exterminator', + 'The Game Room', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["rodent"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/39in1.cpp"]}'::jsonb + ), + ( + 'rodeo-king', + 'Rodeo King', + 'Amuzy Corporation', + 2005, + array['Rodeo King (Japan, ver 1.00)'], + array['Arcade'], + '{"mame":["rodeokng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'rohga-armor-force', + 'Rohga: Armor Force', + 'Data East Corporation', + 1991, + array['Rohga: Armor Force (Asia/Europe v5.0)'], + array['Arcade'], + '{"mame":["rohga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/rohga.cpp"]}'::jsonb + ), + ( + 'roller-jammer', + 'Roller Jammer', + 'Nichibutsu / Alice', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["rjammer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/tubep.cpp"]}'::jsonb + ), + ( + 'rollergames', + 'Rollergames', + 'Konami', + 1991, + array['Rollergames (US)'], + array['Arcade'], + '{"mame":["rollerg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/rollerg.cpp"]}'::jsonb + ), + ( + 'rolling-crash-moon-base', + 'Rolling Crash / Moon Base', + 'Nichibutsu', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["rollingc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'rolling-crush', + 'Rolling Crush', + 'SemiCom / Exit (Trust license)', + 1999, + array['Rolling Crush (version 1.07.E - 1999/02/11, Trust license)'], + array['Arcade'], + '{"mame":["rolcrush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dreamwld.cpp"]}'::jsonb + ), + ( + 'rolling-ex-tre-me', + 'ROLLing eX.tre.me', + 'Gaelco (Namco America license)', + 1999, + array['ROLLing eX.tre.me (US)'], + array['Arcade'], + '{"mame":["rollext"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/rollext.cpp"]}'::jsonb + ), + ( + 'rolling-joker', + 'Rolling Joker', + 'Paloma Elektronik?', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["roljokr1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'rolling-joker-v-99-7', + 'Rolling Joker (v.99.7)', + 'Paloma Elektronik?', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["roljokr3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'rolling-joker-v23-11-91', + 'Rolling Joker (v23.11.91)', + 'Paloma Elektronik?', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["roljokr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'rolling-thunder', + 'Rolling Thunder', + 'Namco', + 1986, + array['Rolling Thunder (rev 3)'], + array['Arcade'], + '{"mame":["rthunder"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos86.cpp"]}'::jsonb + ), + ( + 'rolling-thunder-2', + 'Rolling Thunder 2', + 'Namco', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["rthun2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'rolm-9751-model-10', + 'ROLM 9751 Model 10', + 'ROLM Systems, Inc.', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["r9751"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rolm/r9751.cpp"]}'::jsonb + ), + ( + 'roman-legions', + 'Roman Legions', + 'Konami', + null, + array['Roman Legions (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["romanl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'romar-triv', + 'Romar Triv', + 'Romar', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rtriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'rompers', + 'Rompers )', + 'Namco', + 1989, + array['Rompers (Japan, new version (Rev B))'], + array['Arcade'], + '{"mame":["rompers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'ron-jan-super', + 'Ron Jan Super', + 'Wing Co., Ltd', + 1994, + array['Ron Jan Super (set 1)'], + array['Arcade'], + '{"mame":["ronjans"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/pinkiri8.cpp"]}'::jsonb + ), + ( + 'rootin-tootin-la-pa-pa', + 'Rootin'' Tootin'' / La-Pa-Pa', + 'Data East Corporation', + 1983, + array['Rootin'' Tootin'' / La-Pa-Pa (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["clapapa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'rotary-fighter', + 'Rotary Fighter', + 'Kasco', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["rotaryf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/rotaryf.cpp"]}'::jsonb + ), + ( + 'rough-racer', + 'Rough Racer', + 'Sega', + 1990, + array['Rough Racer (Japan, Floppy Based, FD1094 317-0058-06b)'], + array['Arcade'], + '{"mame":["roughrac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'rougien', + 'Rougien', + 'Sanritsu', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["rougien"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/mermaid.cpp"]}'::jsonb + ), + ( + 'roulette-icp-1-pcb', + 'Roulette (ICP-1 PCB)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["icproul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'round-up-5-super-delta-force', + 'Round Up 5 - Super Delta Force', + 'Tatsumi', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["roundup5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/roundup5.cpp"]}'::jsonb + ), + ( + 'round-up', + 'Round-Up', + 'Taito Corporation (Amenip/Centuri license)', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["roundup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'route-16', + 'Route 16', + 'Sun Electronics', + 1981, + array['Route 16 (Sun Electronics, set 1)'], + array['Arcade'], + '{"mame":["route16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/route16.cpp"]}'::jsonb + ), + ( + 'royal-5-x-mas-5', + 'Royal 5+ / X''mas 5', + 'IGS', + 2005, + array['Royal 5+ / X''mas 5 (V101US)'], + array['Arcade'], + '{"mame":["royal5p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'royal-ascot', + 'Royal Ascot', + 'Sega', + 1991, + array['Royal Ascot (Japan, terminal?)'], + array['Arcade'], + '{"mame":["rascot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'royal-ascot-ii', + 'Royal Ascot II', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["rascot2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'royal-card', + 'Royal Card', + 'TAB Austria', + 1991, + array['Royal Card (German, set 1)'], + array['Arcade'], + '{"mame":["royalcrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'royal-card-italian-dino-4-hardware-encrypted', + 'Royal Card (Italian, Dino 4 hardware, encrypted)', + '', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["rcdino4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'royal-card-nichibutsu-hw', + 'Royal Card (Nichibutsu HW)', + 'Amusement', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["roylcrdn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/jangou.cpp"]}'::jsonb + ), + ( + 'royal-king-jang-oh-2-v4-00-1984-jun-10th', + 'Royal King Jang Oh 2 (v4.00 1984 Jun 10th)', + 'SNK / Dyna Corp', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["rkjanoh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'royal-on-ten', + 'Royal on Ten', + '', + 2005, + array['Royal on Ten (hack of Noraut Deluxe Poker)'], + array['Arcade'], + '{"mame":["ndxron10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'royal-queen', + 'Royal Queen', + 'Royal Denshi', + 1984, + array['Royal Queen (Japan 841010 RQ 0-07)'], + array['Arcade'], + '{"mame":["royalqn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nightgal.cpp"]}'::jsonb + ), + ( + 'royal-vegas-joker-card-slow-deal', + 'Royal Vegas Joker Card (slow deal)', + 'Fun World', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["vegasslw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'royale', + 'Royale', + '', + null, + array['Royale (set 1)'], + array['Arcade'], + '{"mame":["royale"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'rpc-86', + 'RPC 86', + 'Intel', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rpc86"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'rs-232-dce-dce-bridge', + 'RS-232 DCE-DCE Bridge', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dcebridge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/dcebridge.cpp"]}'::jsonb + ), + ( + 'rs-6000-type-7009-model-c10-server', + 'RS/6000 Type 7009 Model C10 Server', + 'International Business Machines', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["rs6k7009"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/rs6000_type7xxx.cpp"]}'::jsonb + ), + ( + 'rs2030', + 'RS2030', + 'MIPS', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["rs2030"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mips/mips_i2000.cpp"]}'::jsonb + ), + ( + 'rugby-four-roses-hardware', + 'Rugby? (four roses hardware)', + 'C.M.C.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["rugby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/4roses.cpp"]}'::jsonb + ), + ( + 'ruleta-rci-6-players-spanish', + 'Ruleta RCI (6-players, Spanish)', + 'Entretenimientos GEMINIS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rcirulet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/corona.cpp"]}'::jsonb + ), + ( + 'ruleta-re-800', + 'Ruleta RE-800', + 'Entretenimientos GEMINIS', + 1991, + array['Ruleta RE-800 (v1.0, set 1)'], + array['Arcade'], + '{"mame":["re800v1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/corona.cpp"]}'::jsonb + ), + ( + 'ruleta-re-800-v3-0', + 'Ruleta RE-800 (v3.0)', + 'Entretenimientos GEMINIS', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["re800v3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/corona.cpp"]}'::jsonb + ), + ( + 'ruleta-re-900', + 'Ruleta RE-900', + 'Entretenimientos GEMINIS', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["re900"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/re900.cpp"]}'::jsonb + ), + ( + 'rumba-lumber', + 'Rumba Lumber', + 'Taito', + 1984, + array['Rumba Lumber (rev 1)'], + array['Arcade'], + '{"mame":["rumba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/flstory.cpp"]}'::jsonb + ), + ( + 'run-and-gun', + 'Run and Gun', + 'Konami', + 1993, + array['Run and Gun (ver EAA 1993 10.8)'], + array['Arcade'], + '{"mame":["rungun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/rungun.cpp"]}'::jsonb + ), + ( + 'run-and-gun-2', + 'Run and Gun 2', + 'Konami', + 1996, + array['Run and Gun 2 (ver UAA)'], + array['Arcade'], + '{"mame":["rungun2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'run-run-puppy', + 'Run Run Puppy', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["runpuppy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigs.cpp"]}'::jsonb + ), + ( + 'runaway', + 'Runaway', + 'Atari', + 1982, + array['Runaway (Atari, prototype)', 'Runaway (Sun Electronics, Japan)'], + array['Arcade'], + '{"mame":["runaway","runaways"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/runaway.cpp","sunelectronics/dai3wksi.cpp"]}'::jsonb + ), + ( + 'rush-n-attack-playchoice-10', + 'Rush''n Attack (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_rnatk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'rushing-beat-shura', + 'Rushing Beat Shura', + 'bootleg', + 1997, + array['Rushing Beat Shura (SNES bootleg)'], + array['Arcade'], + '{"mame":["rushbets"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'rushing-heroes', + 'Rushing Heroes', + 'Konami', + 1996, + array['Rushing Heroes (ver UAB)'], + array['Arcade'], + '{"mame":["rushhero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'rx15-digital-rhythm-programmer', + 'RX15 Digital Rhythm Programmer', + 'Yamaha', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["rx15"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymrx15.cpp"]}'::jsonb + ), + ( + 'rygar', + 'Rygar', + 'Tecmo', + 1986, + array['Rygar (US set 1)'], + array['Arcade'], + '{"mame":["rygar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo.cpp"]}'::jsonb + ), + ( + 'rygar-playchoice-10', + 'Rygar (PlayChoice-10)', + 'Tecmo (Nintendo of America license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_rygar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'ryu-jin', + 'Ryu Jin', + 'Taito Corporation', + 1993, + array['Ryu Jin (Japan, ET910000B PCB)'], + array['Arcade'], + '{"mame":["ryujin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'ryukyu-fd1094-317-5023a', + 'RyuKyu (FD1094 317-5023A)', + 'Success / Sega', + 1990, + array['RyuKyu (Rev A, Japan) (FD1094 317-5023A)'], + array['Arcade'], + '{"mame":["ryukyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'ryuusei-janshi-kirara-star', + 'Ryuusei Janshi Kirara Star', + 'Jaleco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["kirarast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'rz-1', + 'RZ-1', + 'Casio', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["rz1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/rz1.cpp"]}'::jsonb + ), + ( + 's-p-y-special-project-y', + 'S.P.Y.: Special Project Y.', + 'Konami', + 1989, + array['S.P.Y.: Special Project Y. (World ver. N)'], + array['Arcade'], + '{"mame":["spy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/spy.cpp"]}'::jsonb + ), + ( + 's-r-d-mission', + 'S.R.D. Mission', + 'Kyugo / Taito Corporation', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["srdmissn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/kyugo.cpp"]}'::jsonb + ), + ( + 's-s-mission', + 'S.S. Mission', + 'Comad', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ssmissin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 's-t-u-n-runner', + 'S.T.U.N. Runner', + 'Atari Games', + 1989, + array['S.T.U.N. Runner (rev 6)'], + array['Arcade'], + '{"mame":["stunrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/harddriv.cpp"]}'::jsonb + ), + ( + 's-v-g-spectral-vs-generation-sheng-mo-shiji-m68k-label-v200-arm-label-v200-rom-10-11-05-s-', + 'S.V.G. - Spectral vs Generation / Sheng Mo Shiji (M68k label V200) (ARM label V200, ROM 10/11/05 S.V.G V201)', + 'IGS / Idea Factory', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["svg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 's10-handheld-game-console-520-in-1-fake-entries', + 'S10 Handheld Game Console (520-in-1, fake entries)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["s10fake"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 's10-handheld-game-console-520-in-1', + 'S10 Handheld Game Console (520-in-1)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["s10_520"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 's2000', + 'S2000', + 'Akai', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["s2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/s3000.cpp"]}'::jsonb + ), + ( + 's3000', + 'S3000', + 'Akai', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["s3000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/s3000.cpp"]}'::jsonb + ), + ( + 's3000xl', + 'S3000XL', + 'Akai', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["s3000xl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/s3000.cpp"]}'::jsonb + ), + ( + 's5-game-box-520-in-1', + 'S5 Game Box (520-in-1)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["s5_520"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'saboten-bombers', + 'Saboten Bombers', + 'NMK / Tecmo', + 1992, + array['Saboten Bombers (set 1)'], + array['Arcade'], + '{"mame":["sabotenb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'sadari', + 'Sadari', + 'Dooyong (NTC license)', + 1993, + array['Sadari (Japan, NTC license)'], + array['Arcade'], + '{"mame":["sadari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'safari', + 'Safari', + 'Gremlin', + 1977, + array['Safari (set 1)'], + array['Arcade'], + '{"mame":["safari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'safari-extrema-ukraine-v-43-14', + 'Safari (Extrema, Ukraine, V. 43.14)', + 'Extrema', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["exsafar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'safari-rally', + 'Safari Rally', + 'SNK (Taito license)', + 1979, + array['Safari Rally (World)'], + array['Arcade'], + '{"mame":["safarir"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["phoenix/safarir.cpp"]}'::jsonb + ), + ( + 'safe-money', + 'Safe Money', + 'Konami', + null, + array['Safe Money (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["safemon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'sage-ii', + 'Sage II', + 'Sage Technology', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["sage2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sage/sage2.cpp"]}'::jsonb + ), + ( + 'saikyou-saisoku-battle-racer', + 'Saikyou Saisoku Battle Racer', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["btlracer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'saint-dragon', + 'Saint Dragon', + 'Jaleco', + 1989, + array['Saint Dragon (set 1)'], + array['Arcade'], + '{"mame":["stdragon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'sakura-taisen-hanagumi-taisen-columns-j-971007-v1-010', + 'Sakura Taisen - Hanagumi Taisen Columns (J 971007 V1.010)', + 'Sega', + 1997, + '{}'::text[], + array['Puzzle'], + '{"mame":["hanagumi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'sala-due', + 'Sala Due', + 'Industrias Brasileiras', + null, + array['Sala Due (Version 3.04)'], + array['Arcade'], + '{"mame":["saladue"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'salamander', + 'Salamander', + 'Konami', + 1986, + array['Salamander (version D)'], + array['Arcade'], + '{"mame":["salamand"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'salamander-2', + 'Salamander 2', + 'Konami', + 1996, + array['Salamander 2 (ver JAA)'], + array['Arcade'], + '{"mame":["salmndr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'salary-man-champ-tatakau-salary-man', + 'Salary Man Champ - Tatakau Salary Man', + 'Success / Konami', + 2000, + array['Salary Man Champ - Tatakau Salary Man (GCA18 VER. JAA)'], + array['Arcade'], + '{"mame":["salarymc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'saloon-french-encrypted', + 'Saloon (French, encrypted)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["saloon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'sam-coup', + 'SAM Coupé', + 'Miles Gordon Technology plc', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["samcoupe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["samcoupe/samcoupe.cpp"]}'::jsonb + ), + ( + 'samba-de-amigo', + 'Samba De Amigo', + 'Sega', + 1999, + array['Samba De Amigo (Rev B)'], + array['Arcade'], + '{"mame":["samba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'samba-de-amigo-ver-2000', + 'Samba de Amigo ver. 2000', + 'Sega', + 2000, + array['Samba de Amigo ver. 2000 (Japan)'], + array['Arcade'], + '{"mame":["samba2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'samsung-nuon-enhanced-dvd-player-dvd-n501', + 'Samsung NUON Enhanced DVD Player / DVD-N501', + 'Samsung', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["n501"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["samsung/dvd-n5xx.cpp"]}'::jsonb + ), + ( + 'samurai', + 'Samurai', + 'Sega', + 1980, + array['Samurai (World)'], + array['Arcade'], + '{"mame":["samurai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'samurai-aces', + 'Samurai Aces', + 'Psikyo (Banpresto license)', + 1993, + array['Samurai Aces (World)'], + array['Arcade'], + '{"mame":["samuraia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo.cpp"]}'::jsonb + ), + ( + 'samurai-nihon-ichi', + 'Samurai Nihon-Ichi', + 'Kaneko / Taito', + 1985, + array['Samurai Nihon-Ichi (rev 1)'], + array['Arcade'], + '{"mame":["tsamurai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tsamurai.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-samurai-spirits-ngm-045', + 'Samurai Shodown / Samurai Spirits (NGM-045)', + 'SNK', + 1993, + '{}'::text[], + array['Fighting'], + '{"mame":["samsho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-64-samurai-spirits-paewang-jeonseol-64', + 'Samurai Shodown 64 / Samurai Spirits / Paewang Jeonseol 64', + 'SNK', + 1997, + '{}'::text[], + array['Fighting'], + '{"mame":["sams64"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-64-warriors-rage-samurai-spirits-2-asura-zanmaden', + 'Samurai Shodown 64: Warriors Rage / Samurai Spirits 2: Asura Zanmaden', + 'SNK', + 1998, + '{}'::text[], + array['Fighting'], + '{"mame":["sams64_2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-ii-shin-samurai-spirits-haohmaru-jigokuhen-ngm-063-ngh-063', + 'Samurai Shodown II / Shin Samurai Spirits - Haohmaru Jigokuhen (NGM-063 ~ NGH-063)', + 'SNK', + 1994, + '{}'::text[], + array['Fighting'], + '{"mame":["samsho2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-iii-samurai-spirits-zankurou-musouken-ngm-087', + 'Samurai Shodown III / Samurai Spirits - Zankurou Musouken (NGM-087)', + 'SNK', + 1995, + '{}'::text[], + array['Fighting'], + '{"mame":["samsho3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-iv-amakusa-s-revenge-samurai-spirits-amakusa-kourin-ngm-222-ngh-222', + 'Samurai Shodown IV - Amakusa''s Revenge / Samurai Spirits - Amakusa Kourin (NGM-222 ~ NGH-222)', + 'SNK', + 1996, + '{}'::text[], + array['Fighting'], + '{"mame":["samsho4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-v-samurai-spirits-zero', + 'Samurai Shodown V / Samurai Spirits Zero', + 'Yuki Enterprise / SNK Playmore', + 2003, + array['Samurai Shodown V / Samurai Spirits Zero (NGM-2700, set 1)'], + array['Fighting'], + '{"mame":["samsho5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-v-special-samurai-spirits-zero-special-ngm-2720', + 'Samurai Shodown V Special / Samurai Spirits Zero Special (NGM-2720)', + 'Yuki Enterprise / SNK Playmore', + 2004, + '{}'::text[], + array['Fighting'], + '{"mame":["samsh5sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.011.sql b/supabase/seed-data/mame-game-catalog.generated.011.sql new file mode 100644 index 0000000..33f620a --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.011.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'samurai-spirits-sen-v1-00', + 'Samurai Spirits Sen (v1.00)', + 'SNK Playmore', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["samspsen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'samurai-spirits-tenkaichi-kenkakuden', + 'Samurai Spirits Tenkaichi Kenkakuden', + 'Sammy / SNK Playmore', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["samsptk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'samuri-60-in-1', + 'Samuri (60 in 1)', + 'Hummer Technology Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_sam60"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'san-da-ha', + 'San Da Ha', + 'Sealy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["sandaha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_m16c.cpp"]}'::jsonb + ), + ( + 'san-da-yi', + 'San Da Yi', + 'Sealy', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["sandayi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/menghong.cpp"]}'::jsonb + ), + ( + 'san-francisco-rush', + 'San Francisco Rush', + 'Atari Games', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["sfrush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'san-francisco-rush-2049', + 'San Francisco Rush 2049', + 'Atari Games', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["sf2049"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'san-francisco-rush-2049-special-edition', + 'San Francisco Rush 2049: Special Edition', + 'Atari Games', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["sf2049se"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'san-francisco-rush-2049-tournament-edition', + 'San Francisco Rush 2049: Tournament Edition', + 'Atari Games', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["sf2049te"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'san-francisco-rush-the-rock-boot-rom-l-1-0-guts-oct-6-1997-main-oct-16-1997', + 'San Francisco Rush: The Rock (boot rom L 1.0, GUTS Oct 6 1997 / MAIN Oct 16 1997)', + 'Atari Games', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["sfrushrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'san-se-caishen', + 'San Se Caishen', + 'GMS', + 1999, + array['San Se Caishen (Version 0502)'], + array['Arcade'], + '{"mame":["sscs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'sanguo-lieche', + 'Sanguo Lieche', + 'GMS', + 1999, + array['Sanguo Lieche (880103 1.6 CHINA)'], + array['Arcade'], + '{"mame":["sglc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'sankokushi', + 'Sankokushi', + 'Mitchell', + 1996, + array['Sankokushi (Japan)'], + array['Arcade'], + '{"mame":["3kokushi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'santa-claus-in-001-07-a', + 'Santa Claus (IN.001.07.A)', + 'Astro Corp.', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["santacl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'santa-maria-atronic', + 'Santa Maria (Atronic)', + 'Atronic', + 2002, + array['Santa Maria (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["santam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'sapi-1-zps-1', + 'SAPI-1 ZPS 1', + 'Tesla', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sapi1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tesla/sapi1.cpp"]}'::jsonb + ), + ( + 'sapphire', + 'Sapphire', + 'Novag Industries / Intelligent Heuristic Programming', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["sapphire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/sapphire.cpp"]}'::jsonb + ), + ( + 'sapphire-ii', + 'Sapphire II', + 'Novag Industries / Intelligent Heuristic Programming', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["sapphire2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/sapphire.cpp"]}'::jsonb + ), + ( + 'sar-search-and-rescue', + 'SAR - Search And Rescue', + 'SNK', + 1989, + array['SAR - Search And Rescue (World)'], + array['Arcade'], + '{"mame":["searchar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk68.cpp"]}'::jsonb + ), + ( + 'sarge', + 'Sarge', + 'Bally Midway', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sarge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'sasuke-vs-commander', + 'Sasuke vs. Commander', + 'SNK', + 1980, + array['Sasuke vs. Commander (set 1)'], + array['Arcade'], + '{"mame":["sasuke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk6502.cpp"]}'::jsonb + ), + ( + 'satan-of-saturn', + 'Satan of Saturn', + 'SNK', + 1981, + array['Satan of Saturn (set 1)'], + array['Arcade'], + '{"mame":["satansat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk6502.cpp"]}'::jsonb + ), + ( + 'satan-s-hollow', + 'Satan''s Hollow', + 'Bally Midway', + 1981, + array['Satan''s Hollow (set 1)'], + array['Arcade'], + '{"mame":["shollow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'saturday-night-slam-masters', + 'Saturday Night Slam Masters', + 'Capcom', + 1993, + array['Saturday Night Slam Masters (World 930713)'], + array['Arcade'], + '{"mame":["slammast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'saturn', + 'Saturn', + 'Sega', + 1994, + array['Saturn (USA)'], + array['Arcade'], + '{"mame":["saturn","saturnzi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/saturn.cpp","jaleco/blueprnt.cpp"]}'::jsonb + ), + ( + 'saturn-space-fighter-3d', + 'Saturn: Space Fighter 3D', + 'Data East', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["satsf3d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/astrof.cpp"]}'::jsonb + ), + ( + 'sauro', + 'Sauro', + 'Tecfri', + 1987, + array['Sauro (set 1)'], + array['Arcade'], + '{"mame":["sauro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/sauro.cpp"]}'::jsonb + ), + ( + 'savage-quest', + 'Savage Quest', + 'Interactive Light', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["savquest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/savquest.cpp"]}'::jsonb + ), + ( + 'savage-reign-fu-un-mokushiroku-kakutou-sousei', + 'Savage Reign / Fu''un Mokushiroku - Kakutou Sousei', + 'SNK', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["savagere"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'savant', + 'Savant', + 'Novag Industries / Intelligent Heuristic Programming', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["savant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/savant.cpp"]}'::jsonb + ), + ( + 'sawatte', + 'Sawatte', + 'Sega', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sawatte"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_sawatte.cpp"]}'::jsonb + ), + ( + 'sbc6510', + 'SBC6510', + 'Josip Perusanec', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["sbc6510"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/sbc6510.cpp"]}'::jsonb + ), + ( + 'sc-3000-ntsc', + 'SC-3000 (NTSC)', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["sc3000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000.cpp"]}'::jsonb + ), + ( + 'scacco-matto-space-win', + 'Scacco Matto / Space Win', + 'Playmark', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["spacewin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'schach-und-lerncomputer-slc-1', + 'Schach- und Lerncomputer SLC 1', + 'Dieter Scheuschner', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["slc1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/slc1.cpp"]}'::jsonb + ), + ( + 'schachcomputer-sc-2', + 'Schachcomputer SC 2', + 'VEB Funkwerk Erfurt', + 1981, + array['Schachcomputer SC 2 (rev. E)'], + array['Arcade'], + '{"mame":["sc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/sc2.cpp"]}'::jsonb + ), + ( + 'schmeiser-robo', + 'Schmeiser Robo', + 'Hot-B', + 1993, + array['Schmeiser Robo (Japan)'], + array['Arcade'], + '{"mame":["schmeisr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/rohga.cpp"]}'::jsonb + ), + ( + 'scion', + 'Scion', + 'Seibu Denshi', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["scion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/wiz.cpp"]}'::jsonb + ), + ( + 'scooter-shooter', + 'Scooter Shooter', + 'Konami', + 1985, + '{}'::text[], + array['Shooter'], + '{"mame":["scotrsht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/scotrsht.cpp"]}'::jsonb + ), + ( + 'score-5', + 'Score 5', + 'Z Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["score5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'scorpio-68000', + 'Scorpio 68000', + 'Novag Industries / Intelligent Heuristic Programming', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["scorpio68"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/diablo.cpp"]}'::jsonb + ), + ( + 'scramble', + 'Scramble', + 'Konami', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["scramble"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'scramble-spirits', + 'Scramble Spirits', + 'Sega', + 1988, + array['Scramble Spirits (World, Floppy Based)'], + array['Arcade'], + '{"mame":["sspirits"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'scrambled-egg', + 'Scrambled Egg', + 'Technos Japan', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["scregg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'scratch-scratch', + 'Scratch!! Scratch!!', + 'Videos A A', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["scratch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videosaa.cpp"]}'::jsonb + ), + ( + 'screw-loose', + 'Screw Loose', + 'Mylstar', + 1983, + array['Screw Loose (prototype)'], + array['Arcade'], + '{"mame":["screwloo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'scrum-try', + 'Scrum Try', + 'Data East Corporation', + 1984, + array['Scrum Try (DECO Cassette) (US) (set 1)'], + array['Arcade'], + '{"mame":["cscrtry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'scud-hammer', + 'Scud Hammer', + 'Jaleco', + 1994, + array['Scud Hammer (ver 1.4)'], + array['Arcade'], + '{"mame":["scudhamm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'scud-race-sega-super-gt-twin-dx', + 'Scud Race / Sega Super GT - Twin/DX', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["scud"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'sd-fighters', + 'SD Fighters', + 'SemiCom / Tirano', + 1996, + array['SD Fighters (Korea)'], + array['Arcade'], + '{"mame":["sdfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'sd-gundam-neo-battling', + 'SD Gundam Neo Battling', + 'Banpresto', + 1992, + array['SD Gundam Neo Battling (Japan)'], + array['Arcade'], + '{"mame":["neobattl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'sd-gundam-psycho-salamander-no-kyoui', + 'SD Gundam Psycho Salamander no Kyoui', + 'Banpresto / Bandai', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["sdgndmps"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/dcon.cpp"]}'::jsonb + ), + ( + 'sd-gundam-sangokushi-rainbow-tairiku-senki', + 'SD Gundam Sangokushi Rainbow Tairiku Senki', + 'Banpresto', + 1993, + array['SD Gundam Sangokushi Rainbow Tairiku Senki (Japan)'], + array['Arcade'], + '{"mame":["grainbow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/legionna.cpp"]}'::jsonb + ), + ( + 'sd-1-32-voice', + 'SD-1 (32 voice)', + 'Ensoniq', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["sd132"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq5505.cpp"]}'::jsonb + ), + ( + 'sdi-strategic-defense-initiative', + 'SDI - Strategic Defense Initiative', + 'Sega', + 1987, + array['SDI - Strategic Defense Initiative (Japan, newer, System 16A, FD1089B 317-0027)'], + array['Arcade'], + '{"mame":["sdi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'sdk-80', + 'SDK-80', + 'Intel', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["sdk80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/sdk80.cpp"]}'::jsonb + ), + ( + 'sea-bass-fishing-juet-971110-v0-001', + 'Sea Bass Fishing (JUET 971110 V0.001)', + 'A wave inc. (Able license)', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["seabass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'sea-battle', + 'Sea Battle', + 'Zaccaria', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["seabattl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/seabattl.cpp"]}'::jsonb + ), + ( + 'sea-devil', + 'Sea Devil', + 'Z Games', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["seadevil"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'sea-fighter-poseidon', + 'Sea Fighter Poseidon', + 'Taito Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sfposeid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'sea-hunter-penguin', + 'Sea Hunter Penguin', + 'WSAC Systems?', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["shpeng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'sea-wolf', + 'Sea Wolf', + 'Dave Nutting Associates / Midway', + 1976, + array['Sea Wolf (set 1)'], + array['Arcade'], + '{"mame":["seawolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'sea-wolf-ii', + 'Sea Wolf II', + 'Dave Nutting Associates / Midway', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["seawolf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'sea-world', + 'Sea World', + 'Amcoe', + 2005, + array['Sea World (Version 1.6E Dual)'], + array['Arcade'], + '{"mame":["seawld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'search-eye', + 'Search Eye', + 'Yun Sung', + 1999, + array['Search Eye (English / Korean / Japanese / Italian)'], + array['Arcade'], + '{"mame":["searchey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp"]}'::jsonb + ), + ( + 'search-eye-plus-v2-0', + 'Search Eye Plus V2.0', + 'Yun Sung', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["searchp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp"]}'::jsonb + ), + ( + 'second-chance', + 'Second Chance', + 'SMS Manufacturing Corp.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["secondch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/smsmcorp.cpp"]}'::jsonb + ), + ( + 'second-love', + 'Second Love', + 'Nichibutsu', + 1986, + array['Second Love (Japan 861201)'], + array['Arcade'], + '{"mame":["secolove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'secret-agent', + 'Secret Agent', + 'Data East Corporation', + 1989, + array['Secret Agent (World, revision 3)'], + array['Arcade'], + '{"mame":["secretag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'section-z', + 'Section Z', + 'Capcom', + 1985, + array['Section Z (US)'], + array['Arcade'], + '{"mame":["sectionz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lwings.cpp"]}'::jsonb + ), + ( + 'sega-bass-fishing-challenge-version-a', + 'Sega Bass Fishing Challenge Version A', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["basschal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'sega-bass-fishing-deluxe', + 'Sega Bass Fishing Deluxe', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["bassdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'sega-cd', + 'Sega CD', + 'Sega', + 1992, + array['Sega CD (USA, NTSC)'], + array['Arcade'], + '{"mame":["segacd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'sega-cd-2', + 'Sega CD 2', + 'Sega', + 1993, + array['Sega CD 2 (USA, NTSC)'], + array['Arcade'], + '{"mame":["segacd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'sega-cd-with-32x', + 'Sega CD with 32X', + 'Sega', + 1994, + array['Sega CD with 32X (USA, NTSC)'], + array['Arcade'], + '{"mame":["32x_scd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'sega-clay-challenge', + 'Sega Clay Challenge', + 'Sega', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["claychal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'sega-club-golf-2006-next-tours-gdx-0018a', + 'Sega Club Golf 2006 Next Tours (GDX-0018A)', + 'Sega', + 2005, + array['Sega Club Golf 2006 Next Tours (Rev A) (GDX-0018A)'], + array['Sports'], + '{"mame":["scg06nt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'sega-golf-club-network-pro-tour-2005-gdx-0010c', + 'Sega Golf Club Network Pro Tour 2005 (GDX-0010C)', + 'Sega', + 2004, + array['Sega Golf Club Network Pro Tour 2005 (Rev C) (GDX-0010C)'], + array['Sports'], + '{"mame":["scg05nt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'sega-marine-fishing', + 'Sega Marine Fishing', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["smarinef"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'sega-netmerc', + 'Sega NetMerc', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["netmerc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model1.cpp"]}'::jsonb + ), + ( + 'sega-ninja-315-5102', + 'Sega Ninja (315-5102)', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["seganinj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'sega-race-tv-export', + 'Sega Race-TV (Export)', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["segartv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'sega-rally-2-sega-rally-championship', + 'Sega Rally 2: Sega Rally Championship', + 'Sega', + 1998, + '{}'::text[], + array['Racing'], + '{"mame":["srally2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'sega-rally-championship-twin-dx', + 'Sega Rally Championship - Twin/DX', + 'Sega', + 1995, + array['Sega Rally Championship - Twin/DX (Revision C)'], + array['Racing'], + '{"mame":["srallyc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'sega-ski-super-g', + 'Sega Ski Super G', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["skisuprg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'sega-strike-fighter', + 'Sega Strike Fighter', + 'Sega', + 2000, + array['Sega Strike Fighter (Rev A)'], + array['Arcade'], + '{"mame":["sstrkfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'sega-tetris', + 'Sega Tetris', + 'Sega', + 1999, + '{}'::text[], + array['Puzzle'], + '{"mame":["sgtetris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'sega-touring-car-championship-newer', + 'Sega Touring Car Championship (newer)', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["stcc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'sega-water-ski', + 'Sega Water Ski', + 'Sega', + 1997, + array['Sega Water Ski (Japan, Revision A)'], + array['Arcade'], + '{"mame":["segawski"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'segasonic-bros', + 'SegaSonic Bros.', + 'hack', + 1992, + array['SegaSonic Bros. (prototype, hack)'], + array['Arcade'], + '{"mame":["ssonicbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'segasonic-cosmo-fighter', + 'SegaSonic Cosmo Fighter', + 'Sega', + 1993, + array['SegaSonic Cosmo Fighter (World)'], + array['Arcade'], + '{"mame":["sonicfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'segasonic-the-hedgehog', + 'SegaSonic The Hedgehog', + 'Sega', + 1992, + array['SegaSonic The Hedgehog (Japan, rev. C)'], + array['Arcade'], + '{"mame":["sonic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'seibu-cup-soccer', + 'Seibu Cup Soccer', + 'Seibu Kaihatsu', + 1992, + array['Seibu Cup Soccer (set 1)'], + array['Sports'], + '{"mame":["cupsoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/legionna.cpp"]}'::jsonb + ), + ( + 'seicross', + 'Seicross', + 'Nichibutsu / Alice', + 1984, + array['Seicross (set 1)'], + array['Arcade'], + '{"mame":["seicross"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/seicross.cpp"]}'::jsonb + ), + ( + 'seiha', + 'Seiha', + 'Nichibutsu', + 1987, + array['Seiha (Japan 870725)'], + array['Arcade'], + '{"mame":["seiha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'seimei-kantei-meimei-ki-cult-name', + 'Seimei-Kantei-Meimei-Ki Cult Name', + 'I''Max', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["cultname"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/macs.cpp"]}'::jsonb + ), + ( + 'sekai-kaseki-hakken', + 'Sekai Kaseki Hakken', + 'Namco', + 2004, + array['Sekai Kaseki Hakken (Japan, SKH1 Ver.B)'], + array['Arcade'], + '{"mame":["sekaikh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'sel-feena', + 'Sel Feena', + 'East Technology', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["selfeena"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'sel-jan', + 'Sel-Jan', + 'Jem / Dyna Corp', + 1983, + array['Sel-Jan (Japan)'], + array['Arcade'], + '{"mame":["seljan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'select-a-game-machine', + 'Select-A-Game Machine', + 'Entex', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["sag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["entex/sag.cpp"]}'::jsonb + ), + ( + 'selection', + 'Selection', + 'Greyhound Electronics', + 1982, + array['Selection (Version 40.02TMB, set 1)'], + array['Arcade'], + '{"mame":["gs4002"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'sen-know', + 'Sen-Know', + 'Kaneko / Kouyousha', + 1999, + array['Sen-Know (Japan)'], + array['Arcade'], + '{"mame":["senknow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'sengeki-striker', + 'Sengeki Striker', + 'Kaneko / Warashi', + 1997, + array['Sengeki Striker (Asia)'], + array['Arcade'], + '{"mame":["sengekis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'sengoku-sengoku-denshou-ngm-017-ngh-017', + 'Sengoku / Sengoku Denshou (NGM-017 ~ NGH-017)', + 'SNK', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["sengoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'sengoku-2-sengoku-denshou-2', + 'Sengoku 2 / Sengoku Denshou 2', + 'SNK', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["sengoku2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'sengoku-3-sengoku-densho-2001', + 'Sengoku 3 / Sengoku Densho 2001', + 'Noise Factory / SNK', + 2001, + array['Sengoku 3 / Sengoku Densho 2001 (set 1)'], + array['Arcade'], + '{"mame":["sengoku3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'sengoku-basara-x-cross', + 'Sengoku Basara X Cross', + 'Capcom / Arc System Works', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["sbxc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'sengoku-no-jieitai', + 'Sengoku no Jieitai', + 'Universal', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["nomnlnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmic.cpp"]}'::jsonb + ), + ( + 'senjyo', + 'Senjyo', + 'Tehkan', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["senjyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/senjyo.cpp"]}'::jsonb + ), + ( + 'senko-no-ronde-gdl-0030a', + 'Senko no Ronde (GDL-0030A)', + 'G.Rev', + 2005, + array['Senko no Ronde (Japan, Rev A) (GDL-0030A)'], + array['Arcade'], + '{"mame":["senko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'senko-no-ronde-special-gdl-0038', + 'Senko no Ronde Special (GDL-0038)', + 'G.Rev', + 2006, + array['Senko no Ronde Special (Export, Japan) (GDL-0038)'], + array['Arcade'], + '{"mame":["senkosp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'senkyu', + 'Senkyu', + 'Seibu Kaihatsu', + 1995, + array['Senkyu (Japan, newer)'], + array['Arcade'], + '{"mame":["senkyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'sensor-computachess', + 'Sensor Computachess', + 'Newcrest Technology / CXG Systems / Intelligent Chess Software', + 1985, + array['Sensor Computachess (1985 version)'], + array['Arcade'], + '{"mame":["scpchess"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/computachess.cpp"]}'::jsonb + ), + ( + 'sensory-chess-challenger-12-b-model-6086', + 'Sensory Chess Challenger "12 B" (model 6086)', + 'Fidelity International', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["fscc12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc12.cpp"]}'::jsonb + ), + ( + 'sensory-chess-challenger-6', + 'Sensory Chess Challenger "6"', + 'Fidelity Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["fscc6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc6.cpp"]}'::jsonb + ), + ( + 'sensory-chess-challenger-8', + 'Sensory Chess Challenger "8"', + 'Fidelity Electronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["fscc8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc8.cpp"]}'::jsonb + ), + ( + 'sensory-chess-challenger-9', + 'Sensory Chess Challenger "9"', + 'Fidelity Electronics', + 1982, + array['Sensory Chess Challenger "9" (rev. D)'], + array['Arcade'], + '{"mame":["fscc9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc9.cpp"]}'::jsonb + ), + ( + 'sente-diagnostic-cartridge', + 'Sente Diagnostic Cartridge', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sentetst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'serie-20', + 'Serie 20', + 'Secoinsa', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["secoinsa20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/secoinsa20.cpp"]}'::jsonb + ), + ( + 'sex-appeal', + 'Sex Appeal', + 'Grayhound Electronics', + 1992, + array['Sex Appeal (Version 6.02)'], + array['Arcade'], + '{"mame":["sexappl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'sex-triv', + 'Sex Triv', + 'Status Games', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sextriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'sexy-gal', + 'Sexy Gal', + 'Nichibutsu', + 1985, + array['Sexy Gal (Japan 850501 SXG 1-00)'], + array['Arcade'], + '{"mame":["sexygal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nightgal.cpp"]}'::jsonb + ), + ( + 'sexy-gal-tropical', + 'Sexy Gal Tropical', + 'Nichibutsu', + 1985, + array['Sexy Gal Tropical (Japan 850805 SXG T-02)'], + array['Arcade'], + '{"mame":["sgaltrop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nightgal.cpp"]}'::jsonb + ), + ( + 'sexy-parodius', + 'Sexy Parodius', + 'Konami', + 1996, + array['Sexy Parodius (ver JAA)'], + array['Arcade'], + '{"mame":["sexyparo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'sf-hisplitter', + 'SF-HiSplitter', + 'Nintendo', + 1979, + array['SF-HiSplitter (set 1)'], + array['Arcade'], + '{"mame":["highsplt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/n8080.cpp"]}'::jsonb + ), + ( + 'sf-x', + 'SF-X', + 'Nihon Game (Tokyo Nichibutsu license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["sfx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'sg-1000', + 'SG-1000', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["sg1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000.cpp"]}'::jsonb + ), + ( + 'shackled', + 'Shackled', + 'Data East USA', + 1986, + array['Shackled (US)'], + array['Arcade'], + '{"mame":["shackled"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'shadow-dancer', + 'Shadow Dancer', + 'Sega', + 1989, + array['Shadow Dancer (World)'], + array['Arcade'], + '{"mame":["shdancer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'shadow-dancer-mega-tech', + 'Shadow Dancer (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_shado"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'shadow-fighters', + 'Shadow Fighters', + 'Dutech Inc.', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["shadfgtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vcombat.cpp"]}'::jsonb + ), + ( + 'shadow-force', + 'Shadow Force', + 'Technos Japan', + 1993, + array['Shadow Force (World, Version 3)'], + array['Arcade'], + '{"mame":["shadfrce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/shadfrce.cpp"]}'::jsonb + ), + ( + 'shadow-warriors', + 'Shadow Warriors', + 'Tecmo', + 1988, + array['Shadow Warriors (World, set 1)'], + array['Arcade'], + '{"mame":["shadoww"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/gaiden.cpp"]}'::jsonb + ), + ( + 'shadowland-yd3', + 'Shadowland (YD3)', + 'Namco', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["shadowld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'shakatto-tambourine-gds-0002b', + 'Shakatto Tambourine (GDS-0002B)', + 'Sega', + 2000, + array['Shakatto Tambourine (Rev B) (GDS-0002B)'], + array['Arcade'], + '{"mame":["shaktam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shakatto-tambourine-cho-powerup-chu-2k1-aut-gds-0016', + 'Shakatto Tambourine Cho Powerup Chu (2K1 AUT) (GDS-0016)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["shaktamb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shakatto-tambourine-motto-norinori-shinkyoku-tsuika-2k1-spr-gds-0013', + 'Shakatto Tambourine Motto Norinori Shinkyoku Tsuika (2K1 SPR) (GDS-0013)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["shaktmsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shamisen-brothers-vol-1-v1-01k', + 'Shamisen Brothers Vol 1 (V1.01K)', + 'Kato''s', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["shambros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sttechno.cpp"]}'::jsonb + ), + ( + 'shan-liang-san-he-yi-flash-3-in-1-v102-08-23-04-13-03-26', + 'Shan Liang San He Yi (Flash 3-in-1) (V102 08/23/04 13:03:26)', + 'IGS', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["pgm3in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'shanghai', + 'Shanghai', + 'Sunsoft', + 1988, + array['Shanghai (World)'], + array['Arcade'], + '{"mame":["shanghai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shanghai.cpp"]}'::jsonb + ), + ( + 'shanghai-the-great-wall-shanghai-triple-threat-jue-950623-v1-005', + 'Shanghai - The Great Wall / Shanghai Triple Threat (JUE 950623 V1.005)', + 'Sunsoft / Activision', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["shanhigw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'shanghai-ii', + 'Shanghai II', + 'Sunsoft', + 1989, + array['Shanghai II (Japan, set 1)'], + array['Arcade'], + '{"mame":["shangha2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shanghai.cpp"]}'::jsonb + ), + ( + 'shanghai-iii', + 'Shanghai III', + 'Sunsoft', + 1993, + array['Shanghai III (World)'], + array['Arcade'], + '{"mame":["shangha3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shangha3.cpp"]}'::jsonb + ), + ( + 'shanghai-kid', + 'Shanghai Kid', + 'Taiyo System (Data East license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["shangkid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/shangkid.cpp"]}'::jsonb + ), + ( + 'shark', + 'Shark', + 'US Billiards Inc.', + 1975, + array['Shark (US Billiards)'], + array['Arcade'], + '{"mame":["sharkusb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/usbilliards.cpp"]}'::jsonb + ), + ( + 'shark-attack', + 'Shark Attack', + 'Pacific Novelty', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["sharkatt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacific/thief.cpp"]}'::jsonb + ), + ( + 'shark-jaws', + 'Shark JAWS', + 'Atari/Horror Games', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["sharkjaw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'shark-party-italy-v1-3', + 'Shark Party (Italy, v1.3)', + 'Subsino', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["sharkpy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'sharpshooter', + 'Sharpshooter', + 'P&P Marketing', + 1998, + array['Sharpshooter (Rev 1.9)'], + array['Arcade'], + '{"mame":["sshooter"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/policetr.cpp"]}'::jsonb + ), + ( + 'shatekids', + 'Shatekids', + 'Sammy', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["shatekds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'shayu-daheng-v104cn', + 'Shayu Daheng (V104CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sydh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'sheng-dan-wu-xian', + 'Sheng Dan Wu Xian', + 'IGS', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["sdwx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'sheriff', + 'Sheriff', + 'Nintendo', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sheriff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/n8080.cpp"]}'::jsonb + ), + ( + 'shienryu-juet-961226-v1-000', + 'Shienryu (JUET 961226 V1.000)', + 'Warashi', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["shienryu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'shikigami-no-shiro-ii-the-castle-of-shikigami-ii-gdl-0021', + 'Shikigami no Shiro II / The Castle of Shikigami II (GDL-0021)', + 'Alfa System', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["shikgam2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shikigami-no-shiro-iii-v2-06j', + 'Shikigami no Shiro III (v2.06J)', + 'Alfa System/SKonec Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["shikiga3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'shin-nihon-pro-wrestling-toukon-retsuden-3-arcade-edition', + 'Shin Nihon Pro Wrestling Toukon Retsuden 3 Arcade Edition', + 'Namco / Tomy', + 1997, + array['Shin Nihon Pro Wrestling Toukon Retsuden 3 Arcade Edition (Japan, TR1/VER.A)'], + array['Arcade'], + '{"mame":["toukon3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'shin-nihon-pro-wrestling-toukon-retsuden-4-arcade-edition', + 'Shin Nihon Pro Wrestling Toukon Retsuden 4 Arcade Edition', + 'Namco', + 2000, + array['Shin Nihon Pro Wrestling Toukon Retsuden 4 Arcade Edition (Japan, TRF1 Ver.A)'], + array['Arcade'], + '{"mame":["toukon4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shingen-samurai-fighter', + 'Shingen Samurai-Fighter', + 'Jaleco', + 1988, + array['Shingen Samurai-Fighter (Japan, English)'], + array['Arcade'], + '{"mame":["tshingen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'shinobi-mega-tech-sms-based', + 'Shinobi (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_shnbi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'shinobi-unprotected', + 'Shinobi (unprotected)', + 'Sega', + 1987, + array['Shinobi (set 6, System 16A) (unprotected)'], + array['Arcade'], + '{"mame":["shinobi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'shinobi-fz-2006-isg-selection-master-type-2006', + 'Shinobi / FZ-2006 (ISG Selection Master Type 2006)', + 'bootleg (ISG)', + 2008, + array['Shinobi / FZ-2006 (Korean System 16 bootleg) (ISG Selection Master Type 2006)'], + array['Arcade'], + '{"mame":["shinfz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b_isgsm.cpp"]}'::jsonb + ), + ( + 'shinobi-iii-mega-play', + 'Shinobi III (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_shnb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'shiny-golds', + 'Shiny Golds', + 'Playmark', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["shinygld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'shippe-champion', + 'Shippe Champion', + 'Amuzy Corporation', + 2008, + array['Shippe Champion (Japan, ver 1.02)'], + array['Arcade'], + '{"mame":["shpchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'shizhan-ding-huang-maque', + 'Shizhan Ding Huang Maque', + 'GMS', + 1998, + array['Shizhan Ding Huang Maque (Version 4.1)'], + array['Arcade'], + '{"mame":["rbspm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'shizhan-majiang-wang', + 'Shizhan Majiang Wang', + 'GMS', + 1998, + array['Shizhan Majiang Wang (Version 8.8)'], + array['Arcade'], + '{"mame":["rbmk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'shizhan-majiang-wangchao', + 'Shizhan Majiang Wangchao', + 'GMS', + 1998, + array['Shizhan Majiang Wangchao (Version 2.0)'], + array['Arcade'], + '{"mame":["smwc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'shizhan-sanguo-ji-jiaqiang-ban', + 'Shizhan Sanguo Ji Jiaqiang Ban', + 'GMS', + 1998, + array['Shizhan Sanguo Ji Jiaqiang Ban (Version 8.9 980413)'], + array['Arcade'], + '{"mame":["ssanguoj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'shock-troopers', + 'Shock Troopers', + 'Saurus', + 1997, + array['Shock Troopers (set 1)'], + array['Arcade'], + '{"mame":["shocktro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'shock-troopers-2nd-squad', + 'Shock Troopers - 2nd Squad', + 'Saurus', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["shocktr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'shocking', + 'Shocking', + 'Yun Sung', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["shocking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsun16.cpp"]}'::jsonb + ), + ( + 'shogun-warriors', + 'Shogun Warriors', + 'Kaneko', + 1992, + array['Shogun Warriors (World)'], + array['Arcade'], + '{"mame":["shogwarr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'shoot-away-ii', + 'Shoot Away II', + 'Namco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["shootaw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/shootaway2.cpp"]}'::jsonb + ), + ( + 'shoot-out', + 'Shoot Out', + 'Data East USA', + 1985, + array['Shoot Out (US)'], + array['Arcade'], + '{"mame":["shootout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/shootout.cpp"]}'::jsonb + ), + ( + 'shoot-the-bull', + 'Shoot the Bull', + 'Bally Midway', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["shootbul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'shooting-gallery', + 'Shooting Gallery', + 'Seatongrove UK, Ltd. (Zaccaria license)', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["shootgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'shooting-love-2007', + 'Shooting Love 2007', + 'Triangle Service', + 2007, + array['Shooting Love 2007 (Japan)'], + array['Arcade'], + '{"mame":["sl2007"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shooting-master-8751-315-5159a', + 'Shooting Master (8751 315-5159a)', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["shtngmst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'shooting-star', + 'Shooting Star', + 'Nova', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["shtstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/artmagic.cpp"]}'::jsonb + ), + ( + 'shootout-at-old-tucson-3do-hardware', + 'Shootout at Old Tucson (3DO hardware)', + 'American Laser Games', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["sht3do"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + 'shootout-pool', + 'Shootout Pool', + 'Sega', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["shootopl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shot-rider', + 'Shot Rider', + 'Seibu Kaihatsu', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["shtrider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/travrusa.cpp"]}'::jsonb + ), + ( + 'shougi', + 'Shougi', + 'Alpha Denshi Co. (Tehkan license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["shougi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/shougi.cpp"]}'::jsonb + ), + ( + 'shougi-no-tatsujin-master-of-shougi', + 'Shougi no Tatsujin - Master of Shougi', + 'ADK / SNK', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["moshougi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'shougi-part-ii', + 'Shougi Part II', + 'Alpha Denshi Co. (Tehkan license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["shougi2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/shougi.cpp"]}'::jsonb + ), + ( + 'show-hand-italy', + 'Show Hand (Italy)', + 'Astro Corp.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["showhand"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'show-queen', + 'Show Queen', + 'Konami', + null, + array['Show Queen (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["showqn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'showdown', + 'Showdown', + 'Exidy', + 1988, + array['Showdown (version 5.0)'], + array['Arcade'], + '{"mame":["showdown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'shrike-avenger', + 'Shrike Avenger', + 'Bally/Sente', + 1986, + array['Shrike Avenger (prototype)'], + array['Arcade'], + '{"mame":["shrike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'shuang-long-qiang-zhu-2-vs', + 'Shuang Long Qiang Zhu 2 VS', + 'IGS', + 1998, + array['Shuang Long Qiang Zhu 2 VS (China, VS203J, set 1)'], + array['Arcade'], + '{"mame":["slqz2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'shuang-long-qiang-zhu-3', + 'Shuang Long Qiang Zhu 3', + 'IGS', + 1999, + array['Shuang Long Qiang Zhu 3 (China, VS107C)'], + array['Arcade'], + '{"mame":["slqz3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'shuang-long-qiang-zhu-tebie-ban-v104cn', + 'Shuang Long Qiang Zhu Tebie Ban (V104CN)', + 'IGS', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["slqzsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'shuffleboard', + 'Shuffleboard', + 'Midway', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["shuffle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'shuffleshot-v1-40', + 'Shuffleshot (v1.40)', + 'Incredible Technologies', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["shufshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'shuiguo-leyuan-ii-v150ui', + 'Shuiguo Leyuan II (V150UI)', + 'IGS', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["sleyuan2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'shuihu-feng-yun-zhuan', + 'Shuihu Feng Yun Zhuan', + 'WAH LAP', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["shuifeng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_ybox.cpp"]}'::jsonb + ), + ( + 'shun', + 'Shun', + 'Taito Corporation', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["shun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/pkspirit.cpp"]}'::jsonb + ), + ( + 'shuriken-boy', + 'Shuriken Boy', + 'Konami', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["shuriboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'shuttle-invader', + 'Shuttle Invader', + 'Omori Electric Co., Ltd.', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["shuttlei"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'shuuz', + 'Shuuz', + 'Atari Games', + 1990, + array['Shuuz (version 8.0)'], + array['Arcade'], + '{"mame":["shuuz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/shuuz.cpp"]}'::jsonb + ), + ( + 'si-se-7', + 'Si Se 7', + 'Yung Yu / CYE', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["sise7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gluck2.cpp"]}'::jsonb + ), + ( + 'side-by-side', + 'Side by Side', + 'Taito', + 1996, + array['Side by Side (Ver 3.0 OK)'], + array['Arcade'], + '{"mame":["sidebs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitojc.cpp"]}'::jsonb + ), + ( + 'side-by-side-2', + 'Side by Side 2', + 'Taito', + 1997, + array['Side by Side 2 (Ver 2.6 OK)'], + array['Arcade'], + '{"mame":["sidebs2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitojc.cpp"]}'::jsonb + ), + ( + 'side-pocket', + 'Side Pocket', + 'Data East Corporation', + 1986, + array['Side Pocket (World)', 'Side Pocket (Conny bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["sidepckt","sidepmbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/sidepckt.cpp","sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'side-trak', + 'Side Trak', + 'Exidy', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sidetrac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'sidewinder', + 'Sidewinder', + 'Arcadia Systems', + 1988, + array['Sidewinder (Arcadia, set 1, V 2.1)'], + array['Arcade'], + '{"mame":["ar_sdwr","sidewndr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp","misc/acefruit.cpp"]}'::jsonb + ), + ( + 'silent-dragon', + 'Silent Dragon', + 'Taito Corporation Japan', + 1992, + array['Silent Dragon (World)'], + array['Arcade'], + '{"mame":["silentd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'silent-scope', + 'Silent Scope', + 'Konami', + 1999, + array['Silent Scope (ver UAD, Ver 1.33)'], + array['Arcade'], + '{"mame":["sscope"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hornet.cpp"]}'::jsonb + ), + ( + 'silent-scope-2-dark-silhouette', + 'Silent Scope 2 : Dark Silhouette', + 'Konami', + 2000, + array['Silent Scope 2 : Dark Silhouette (ver UAD, Ver 1.03)'], + array['Arcade'], + '{"mame":["sscope2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hornet.cpp"]}'::jsonb + ), + ( + 'silent-scope-ex', + 'Silent Scope EX', + 'Konami', + 2001, + array['Silent Scope EX (ver EAC 1.20)'], + array['Arcade'], + '{"mame":["sscopex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'silent-scope-fortune-hunter', + 'Silent Scope Fortune Hunter', + 'Konami', + 2002, + array['Silent Scope Fortune Hunter (ver EAA)'], + array['Arcade'], + '{"mame":["sscopefh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'silhouette', + 'Silhouette', + 'ACE', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["acefruit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/acefruit.cpp"]}'::jsonb + ), + ( + 'silk-worm', + 'Silk Worm', + 'Tecmo', + 1988, + array['Silk Worm (World)'], + array['Arcade'], + '{"mame":["silkworm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo.cpp"]}'::jsonb + ), + ( + 'silver-game', + 'Silver Game', + '', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["silverga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'silver-millennium', + 'Silver Millennium', + 'Para', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["silvmil"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/silvmil.cpp"]}'::jsonb + ), + ( + 'silverball-6-32', + 'Silverball (6.32)', + 'TAB Austria', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["slvrball632"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/silverball.cpp"]}'::jsonb + ), + ( + 'silverball-7-20', + 'Silverball (7.20)', + 'TAB Austria', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["slvrball720"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/silverball.cpp"]}'::jsonb + ), + ( + 'silverball-bulova', + 'Silverball Bulova', + 'TAB Austria', + null, + array['Silverball Bulova (4.09, set 1)'], + array['Arcade'], + '{"mame":["slvrballbu409"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/silverball.cpp"]}'::jsonb + ), + ( + 'simatic-pg675', + 'Simatic PG675', + 'Siemens', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pg675"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["siemens/pg685.cpp"]}'::jsonb + ), + ( + 'simatic-pg685-oua11', + 'Simatic PG685 OUA11', + 'Siemens', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pg685"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["siemens/pg685.cpp"]}'::jsonb + ), + ( + 'simple-6502-machine', + 'Simple 6502 Machine', + 'Grant Searle', + 2013, + '{}'::text[], + array['Arcade'], + '{"mame":["gs6502"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/gs6502.cpp"]}'::jsonb + ), + ( + 'simple-6809-machine', + 'Simple 6809 Machine', + 'Grant Searle', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["gs6809"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/gs6809.cpp"]}'::jsonb + ), + ( + 'simple-cp-m-machine', + 'Simple CP/M Machine', + 'Grant Searle', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gscpm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/gscpm.cpp"]}'::jsonb + ), + ( + 'simple-z-80-machine', + 'Simple Z-80 Machine', + 'Grant Searle', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["gsz80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/gsz80.cpp"]}'::jsonb + ), + ( + 'simply-the-best-cz750-v1-0', + 'Simply the Best (CZ750, v1.0)', + 'Kajot', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["simpbest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'sindbad-mystery', + 'Sindbad Mystery', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["sindbadm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80r.cpp"]}'::jsonb + ), + ( + 'sinistar', + 'Sinistar', + 'Williams', + 1982, + array['Sinistar (revision 3, upright)'], + array['Arcade'], + '{"mame":["sinistar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'sitcom', + 'SITCOM', + 'San Bergmans & Izabella Malcolm', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["sitcom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/sitcom.cpp"]}'::jsonb + ), + ( + 'six-trak-model-610-rev-b-c', + 'Six-Trak (Model 610) Rev B/C', + 'Sequential Circuits', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sixtrak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sequential/sixtrak.cpp"]}'::jsonb + ), + ( + 'sk-1', + 'SK-1', + 'Casio', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sk1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/sk1.cpp"]}'::jsonb + ), + ( + 'sk-10', + 'SK-10', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sk10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/sk1.cpp"]}'::jsonb + ), + ( + 'sk-2', + 'SK-2', + 'Casio', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sk2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/sk1.cpp"]}'::jsonb + ), + ( + 'sk-5', + 'SK-5', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sk5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/sk1.cpp"]}'::jsonb + ), + ( + 'skat-bierskat-solitaire-f2', + 'Skat Bierskat Solitaire (F2)', + 'ADP', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["sbsoli"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/adp.cpp"]}'::jsonb + ), + ( + 'skat-tv', + 'Skat TV', + 'ADP', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["skattv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/adp.cpp"]}'::jsonb + ), + ( + 'skater', + 'Skater', + 'Data East Corporation', + 1983, + array['Skater (DECO Cassette) (Japan)'], + array['Arcade'], + '{"mame":["cskater"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'skeet-shot', + 'Skeet Shot', + 'Dynamo', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["skeetsht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/skeetsht.cpp"]}'::jsonb + ), + ( + 'ski-champ', + 'Ski Champ', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["skichamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'skill-98', + 'Skill ''98', + 'Amcoe', + 1998, + array['Skill ''98 (Talking ver. s98-1.33)'], + array['Arcade'], + '{"mame":["skill98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'skill-chance', + 'Skill Chance', + 'Wing Co., Ltd.', + 1986, + array['Skill Chance (W-7, set 1, 62-98 main)'], + array['Arcade'], + '{"mame":["skillch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'skill-cherry-97', + 'Skill Cherry ''97', + 'Amcoe', + 1997, + array['Skill Cherry ''97 (Talking ver. sc3.52)'], + array['Arcade'], + '{"mame":["schery97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'skill-drop-georgia', + 'Skill Drop Georgia', + 'Astro Corp.', + 2002, + array['Skill Drop Georgia (Ver. G1.01S, Oct 1 2002)'], + array['Arcade'], + '{"mame":["skilldrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'skimaxx', + 'Skimaxx', + 'Kyle Hodgetts / ICE', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["skimaxx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/skimaxx.cpp"]}'::jsonb + ), + ( + 'skins-game-1-06', + 'Skins Game (1.06)', + 'Midway', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mwskins"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/atlantis.cpp"]}'::jsonb + ), + ( + 'skins-game-nintendo-super-system', + 'Skins Game (Nintendo Super System)', + 'Irem', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_skin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'skull-and-crossbones', + 'Skull & Crossbones', + 'Atari Games', + 1989, + array['Skull & Crossbones (rev 5)'], + array['Arcade'], + '{"mame":["skullxbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/skullxbo.cpp"]}'::jsonb + ), + ( + 'skull-fang', + 'Skull Fang', + 'Data East Corporation', + 1996, + array['Skull Fang (Europe 1.13)'], + array['Arcade'], + '{"mame":["skullfng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_mlc.cpp"]}'::jsonb + ), + ( + 'sky-adventure', + 'Sky Adventure', + 'Alpha Denshi Co.', + 1989, + array['Sky Adventure (World)'], + array['Arcade'], + '{"mame":["skyadvnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k.cpp"]}'::jsonb + ), + ( + 'sky-alert', + 'Sky Alert', + 'Metro', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["skyalert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'sky-army', + 'Sky Army', + 'Shoei', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["skyarmy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/skyarmy.cpp"]}'::jsonb + ), + ( + 'sky-base', + 'Sky Base', + 'Omori Electric Co., Ltd.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["skybase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'sky-bumper', + 'Sky Bumper', + 'Venture Line', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["skybump"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["videogames/looping.cpp"]}'::jsonb + ), + ( + 'sky-challenger-j-000406-v1-000', + 'Sky Challenger (J 000406 V1.000)', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["skychal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'sky-chuter', + 'Sky Chuter', + 'Irem', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["skychut"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m10.cpp"]}'::jsonb + ), + ( + 'sky-destroyer', + 'Sky Destroyer', + 'Taito Corporation', + 1985, + array['Sky Destroyer (Japan)'], + array['Arcade'], + '{"mame":["skydest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/cyclemb.cpp"]}'::jsonb + ), + ( + 'sky-diver', + 'Sky Diver', + 'Atari', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["skydiver"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/skydiver.cpp"]}'::jsonb + ), + ( + 'sky-fox', + 'Sky Fox', + 'Jaleco (Nichibutsu USA license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["skyfox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/skyfox.cpp"]}'::jsonb + ), + ( + 'sky-kid', + 'Sky Kid', + 'Namco', + 1985, + array['Sky Kid (new version)'], + array['Arcade'], + '{"mame":["skykid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/skykid.cpp"]}'::jsonb + ), + ( + 'sky-kid-deluxe', + 'Sky Kid Deluxe', + 'Namco', + 1986, + array['Sky Kid Deluxe (set 1)'], + array['Arcade'], + '{"mame":["skykiddx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos86.cpp"]}'::jsonb + ), + ( + 'sky-lancer', + 'Sky Lancer', + 'Orca', + 1983, + array['Sky Lancer (Bordun, version U450C)'], + array['Arcade'], + '{"mame":["skylancr","skylncr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/funkybee.cpp","bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'sky-love', + 'Sky Love', + 'Omori Electric Co., Ltd.', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["skylove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'sky-raider', + 'Sky Raider', + 'Atari', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["skyraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/skyraid.cpp"]}'::jsonb + ), + ( + 'sky-robo', + 'Sky Robo', + 'Nichibutsu', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["skyrobo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/armedf.cpp"]}'::jsonb + ), + ( + 'sky-skipper', + 'Sky Skipper', + 'Nintendo', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["skyskipr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/popeye.cpp"]}'::jsonb + ), + ( + 'sky-smasher', + 'Sky Smasher', + 'Nihon System', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["skysmash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/bloodbro.cpp"]}'::jsonb + ), + ( + 'sky-soldiers', + 'Sky Soldiers', + 'Alpha Denshi Co. (SNK of America/Romstar license)', + 1988, + array['Sky Soldiers (US)'], + array['Arcade'], + '{"mame":["skysoldr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k.cpp"]}'::jsonb + ), + ( + 'sky-target', + 'Sky Target', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["skytargt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'slap-shooter', + 'Slap Shooter', + 'Sega', + 1986, + '{}'::text[], + array['Shooter'], + '{"mame":["slapshtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'slap-shot', + 'Slap Shot', + 'Taito Corporation Japan', + 1994, + array['Slap Shot (Ver 3.0 O)'], + array['Arcade'], + '{"mame":["slapshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/slapshot.cpp"]}'::jsonb + ), + ( + 'slashout', + 'Slashout', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["slasho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'slashout-gds-0004', + 'Slashout (GDS-0004)', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["slashout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'slicer', + 'Slicer', + 'Slicer Computers', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["slicer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["slicer/slicer.cpp"]}'::jsonb + ), + ( + 'slime-kun', + 'Slime Kun', + 'Konami', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["slimekun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'slip-stream-brazil-950515', + 'Slip Stream (Brazil 950515)', + 'Capcom', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["slipstrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'slither', + 'Slither', + 'Century II (GDI license)', + 1982, + array['Slither (set 1)'], + array['Arcade'], + '{"mame":["slither"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'sliver', + 'Sliver', + 'Hollow Corp', + 1996, + array['Sliver (set 1)'], + array['Arcade'], + '{"mame":["sliver"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sliver.cpp"]}'::jsonb + ), + ( + 'slotters-club-umi-monogatari', + 'Slotters Club: Umi Monogatari', + 'Irem', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["scumimon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m119.cpp"]}'::jsonb + ), + ( + 'sm1810', + 'SM1810', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sm1810"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'small-scale-experimental-machine-ssem-baby', + 'Small-Scale Experimental Machine (SSEM), ''Baby''', + 'Manchester University', + 1948, + '{}'::text[], + array['Arcade'], + '{"mame":["ssem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mchester/ssem.cpp"]}'::jsonb + ), + ( + 'smash-court-pro-tournament-scp1', + 'Smash Court Pro Tournament (SCP1)', + 'Namco', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["scptour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'smash-t-v', + 'Smash T.V.', + 'Williams', + 1990, + array['Smash T.V. (rev 8.00)'], + array['Arcade'], + '{"mame":["smashtv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'smashing-drive', + 'Smashing Drive', + 'Gaelco', + 2000, + array['Smashing Drive (World)'], + array['Arcade'], + '{"mame":["smashdrv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/atvtrack.cpp"]}'::jsonb + ), + ( + 'sms-1000', + 'SMS-1000', + 'Scientific Micro Systems', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sms1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/pdp11.cpp"]}'::jsonb + ), + ( + 'snacks-n-jaxson', + 'Snacks''n Jaxson', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["snakjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'snake-pit', + 'Snake Pit', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["snakepit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'snap-jack', + 'Snap Jack', + 'Universal', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["snapjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/ladybug.cpp"]}'::jsonb + ), + ( + 'snapper', + 'Snapper', + 'Philko', + 1990, + array['Snapper (Korea)'], + array['Arcade'], + '{"mame":["snapper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'snk-vs-capcom-svc-chaos-jamma-pcb-neo-mvh-mvo-pcb', + 'SNK vs. Capcom - SVC Chaos (JAMMA PCB, NEO-MVH MVO PCB)', + 'Playmore / Capcom', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["svcpcb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neopcb.cpp"]}'::jsonb + ), + ( + 'snk-vs-capcom-svc-chaos-ngm-2690-ngh-2690', + 'SNK vs. Capcom - SVC Chaos (NGM-2690 ~ NGH-2690)', + 'Playmore / Capcom', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["svc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'snooker-10', + 'Snooker 10', + 'Sandii''', + 1998, + array['Snooker 10 (Ver 1.11)'], + array['Arcade'], + '{"mame":["snookr10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/snookr10.cpp"]}'::jsonb + ), + ( + 'snow-board-championship', + 'Snow Board Championship', + 'Gaelco / OMK', + 1997, + array['Snow Board Championship (version 2.1)'], + array['Arcade'], + '{"mame":["snowboar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'snow-bros-nick-and-tom', + 'Snow Bros. - Nick & Tom', + 'Toaplan', + 1990, + array['Snow Bros. - Nick & Tom (set 1)'], + array['Arcade'], + '{"mame":["snowbros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'snow-bros-2-with-new-elves-otenki-paradise-hanafram', + 'Snow Bros. 2 - With New Elves / Otenki Paradise (Hanafram)', + 'Hanafram', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["snowbro2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/snowbro2.cpp"]}'::jsonb + ), + ( + 'snow-brothers-3-magical-adventure', + 'Snow Brothers 3 - Magical Adventure', + 'Syrmex', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["snowbro3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'snowball-war-wakuwaku-yukigassen', + 'Snowball War - WakuWaku Yukigassen', + 'Sealy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["snowbwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_fr.cpp"]}'::jsonb + ), + ( + 'soccer-ramtek', + 'Soccer (Ramtek)', + 'Ramtek', + 1973, + '{}'::text[], + array['Sports'], + '{"mame":["soccrrmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/ramtek.cpp"]}'::jsonb + ), + ( + 'soccer-10', + 'Soccer 10', + 'I.G.T. International Games Trade', + 1996, + array['Soccer 10 (ver. 16.44)'], + array['Sports'], + '{"mame":["soccer10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'soccer-brawl-ngm-031', + 'Soccer Brawl (NGM-031)', + 'SNK', + 1991, + '{}'::text[], + array['Sports'], + '{"mame":["socbrawl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'soccer-new-italian', + 'Soccer New (Italian)', + '', + null, + '{}'::text[], + array['Sports'], + '{"mame":["soccernw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'soccer-superstars', + 'Soccer Superstars', + 'Konami', + 1994, + array['Soccer Superstars (ver EAC)'], + array['Sports'], + '{"mame":["soccerss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'sokonuke-taisen-game', + 'Sokonuke Taisen Game', + 'Sammy Industries', + 1995, + array['Sokonuke Taisen Game (Japan)'], + array['Arcade'], + '{"mame":["sokonuke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'sol-divide-sword-of-darkness', + 'Sol Divide: Sword Of Darkness', + 'Psikyo', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["soldivid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'solar-assault', + 'Solar Assault', + 'Konami', + 1997, + array['Solar Assault (ver UAA)'], + array['Arcade'], + '{"mame":["slrasslt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gticlub.cpp"]}'::jsonb + ), + ( + 'solar-fox-upright', + 'Solar Fox (upright)', + 'Bally Midway', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["solarfox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'solar-games-80-in-1-pal', + 'Solar Games 80-in-1 (PAL)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["solargm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'solar-jetman-playchoice-10', + 'Solar Jetman (PlayChoice-10)', + 'Rare', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_sjetm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'solar-quest', + 'Solar Quest', + 'Cinematronics', + 1981, + array['Solar Quest (rev 10 8 81)'], + array['Arcade'], + '{"mame":["solarq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'solar-war', + 'Solar War', + 'Atari', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["solarwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/videopin.cpp"]}'::jsonb + ), + ( + 'soldam', + 'Soldam', + 'Jaleco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["soldam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'soldier-girl-amazon', + 'Soldier Girl Amazon', + 'Nichibutsu', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["amazon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/terracre.cpp"]}'::jsonb + ), + ( + 'solitaire', + 'Solitaire', + 'F2 System', + 1999, + array['Solitaire (version 2.5)'], + array['Arcade'], + '{"mame":["solitaire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'solitary-fighter', + 'Solitary Fighter', + 'Taito Corporation Japan', + 1991, + array['Solitary Fighter (World)'], + array['Arcade'], + '{"mame":["solfigtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'solite-spirits', + 'Solite Spirits', + 'Promat', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["slspirit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["promat/1945kiii.cpp"]}'::jsonb + ), + ( + 'solomon-s-key', + 'Solomon''s Key', + 'Tecmo', + 1986, + array['Solomon''s Key (US)'], + array['Arcade'], + '{"mame":["solomon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/solomon.cpp"]}'::jsonb + ), + ( + 'solvalou', + 'Solvalou', + 'Namco', + 1991, + array['Solvalou (SV1, Japan)'], + array['Arcade'], + '{"mame":["solvalou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21_c67.cpp"]}'::jsonb + ), + ( + 'something-for-nothing', + 'Something For Nothing', + 'WMS', + null, + array['Something For Nothing (Russian)'], + array['Arcade'], + '{"mame":["sonoth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'son-son', + 'Son Son', + 'Capcom', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sonson"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/sonson.cpp"]}'::jsonb + ), + ( + 'songjiangyanyi-final', + 'Songjiangyanyi Final', + 'WAH LAP', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["songjang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_ybox.cpp"]}'::jsonb + ), + ( + 'sonic-blast-man-ii-special-turbo', + 'Sonic Blast Man II Special Turbo', + 'bootleg', + 1997, + array['Sonic Blast Man II Special Turbo (SNES bootleg)'], + array['Arcade'], + '{"mame":["sblast2b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'sonic-blast-man-no-janken-battle', + 'Sonic Blast Man no Janken Battle', + 'Taito Corporation', + 1998, + array['Sonic Blast Man no Janken Battle (Japan, main ver. 1.1, video ver. 1.0)'], + array['Arcade'], + '{"mame":["sbmjb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/sbmjb.cpp"]}'::jsonb + ), + ( + 'sonic-boom-fd1094-317-0053', + 'Sonic Boom (FD1094 317-0053)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sonicbom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'sonic-championship', + 'Sonic Championship', + 'Sega', + 1996, + array['Sonic Championship (USA)'], + array['Arcade'], + '{"mame":["schamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'sonic-the-hedgehog', + 'Sonic The Hedgehog', + 'Sega', + 1991, + array['Sonic The Hedgehog (Mega-Tech, set 1)'], + array['Arcade'], + '{"mame":["mt_sonic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'sonic-the-hedgehog-mega-play', + 'Sonic The Hedgehog (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_sonic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'sonic-the-hedgehog-2', + 'Sonic The Hedgehog 2', + 'bootleg / Sega', + 1993, + array['Sonic The Hedgehog 2 (bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["sonic2mb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'sonic-the-hedgehog-2-mega-play', + 'Sonic The Hedgehog 2 (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_soni2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'sonic-the-hedgehog-2-mega-tech', + 'Sonic The Hedgehog 2 (Mega-Tech)', + 'Sega', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_soni2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'sonic-the-hedgehog-3', + 'Sonic The Hedgehog 3', + 'bootleg / Sega', + 1993, + array['Sonic The Hedgehog 3 (bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["sonic3mb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'sonik-fighter', + 'Sonik Fighter', + 'Z Games', + 2000, + array['Sonik Fighter (version 02, encrypted)'], + array['Arcade'], + '{"mame":["sonikfig"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'sorcer-striker', + 'Sorcer Striker', + 'Raizing', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["sstriker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/raizing.cpp"]}'::jsonb + ), + ( + 'sorcerer', + 'Sorcerer', + 'Exidy Inc', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sorcerer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/sorcerer.cpp"]}'::jsonb + ), + ( + 'soreike-kokology', + 'Soreike Kokology', + 'Sega', + 1992, + array['Soreike Kokology (Rev A)'], + array['Arcade'], + '{"mame":["kokoroj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'soreike-kokology-vol-2-kokoro-no-tanteikyoku', + 'Soreike Kokology Vol. 2 - Kokoro no Tanteikyoku', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["kokoroj2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'soreike-anpanman-popcorn-koujou-2', + 'Soreike! Anpanman Popcorn Koujou 2', + 'Sega', + 2003, + array['Soreike! Anpanman Popcorn Koujou 2 (Rev C)'], + array['Arcade'], + '{"mame":["anpanman2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'soreyuke-anpanman-crayon-kids-j-001026-v1-000', + 'Soreyuke Anpanman Crayon Kids (J 001026 V1.000)', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["sackids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'sos', + 'SOS', + 'K.K. Tokki (Namco license)', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'sotsugyo-shousho', + 'Sotsugyo Shousho', + 'Mitchell (Atlus license)', + 1995, + array['Sotsugyo Shousho (Japan)'], + array['Arcade'], + '{"mame":["sotsugyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/funkyjet.cpp"]}'::jsonb + ), + ( + 'soukyugurentai-terra-diver-juet-960821-v1-000', + 'Soukyugurentai / Terra Diver (JUET 960821 V1.000)', + 'Raizing / Eighting', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["sokyugrt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'soul-calibur', + 'Soul Calibur', + 'Namco', + 1998, + array['Soul Calibur (World, SOC12/VER.A2)'], + array['Fighting'], + '{"mame":["soulclbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'soul-calibur-ii', + 'Soul Calibur II', + 'Namco', + 2002, + array['Soul Calibur II (SC23 Ver. A)'], + array['Fighting'], + '{"mame":["soulclb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'soul-calibur-iii-arcade-edition-sc31001-na-a-key-na-b-disc', + 'Soul Calibur III: Arcade Edition (SC31001-NA-A key, NA-B disc)', + 'Namco', + 2006, + '{}'::text[], + array['Fighting'], + '{"mame":["soulclb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'soul-edge-ver-ii', + 'Soul Edge Ver. II', + 'Namco', + 1996, + array['Soul Edge Ver. II (Asia, SO4/VER.C)'], + array['Arcade'], + '{"mame":["souledge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'soul-surfer', + 'Soul Surfer', + 'Sega', + 2002, + array['Soul Surfer (Rev A)'], + array['Arcade'], + '{"mame":["soulsurf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'space-ace', + 'Space Ace', + 'Cinematronics', + 1983, + array['Space Ace (US Rev. A3)'], + array['Arcade'], + '{"mame":["spaceace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/dlair.cpp"]}'::jsonb + ), + ( + 'space-attack', + 'Space Attack', + 'Sega', + 1979, + array['Space Attack (upright set 1)'], + array['Arcade'], + '{"mame":["sspaceat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'space-attack-head-on', + 'Space Attack / Head On', + 'Sega', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sspacaho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'space-battle', + 'Space Battle', + 'Hoei', + 1980, + array['Space Battle (Hoei, set 1)'], + array['Arcade'], + '{"mame":["sbhoei"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'space-beam', + 'Space Beam', + 'Irem', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["spacbeam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m10.cpp"]}'::jsonb + ), + ( + 'space-bomber', + 'Space Bomber', + 'Psikyo', + 1998, + array['Space Bomber (ver. B)'], + array['Arcade'], + '{"mame":["sbomber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'space-bugger', + 'Space Bugger', + 'Game-A-Tron', + 1981, + array['Space Bugger (set 1)'], + array['Arcade'], + '{"mame":["sbugger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gametron/sbugger.cpp"]}'::jsonb + ), + ( + 'space-chaser', + 'Space Chaser', + 'Taito', + 1979, + array['Space Chaser (set 1)'], + array['Arcade'], + '{"mame":["schaser"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'space-computer', + 'Space Computer', + '', + 1999, + array['Space Computer (ver. 1.8a)'], + array['Arcade'], + '{"mame":["spccomp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'space-cruiser', + 'Space Cruiser', + 'Taito Corporation', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["spacecr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'space-cyclone', + 'Space Cyclone', + 'Taito Corporation', + 1980, + array['Space Cyclone (Japan)'], + array['Arcade'], + '{"mame":["scyclone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/scyclone.cpp"]}'::jsonb + ), + ( + 'space-duel', + 'Space Duel', + 'Atari', + 1980, + array['Space Duel (version 2)'], + array['Arcade'], + '{"mame":["spacduel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bwidow.cpp"]}'::jsonb + ), + ( + 'space-dungeon', + 'Space Dungeon', + 'Taito America Corporation', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["sdungeon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'space-encounters', + 'Space Encounters', + 'Midway', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["spcenctr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'space-fever', + 'Space Fever', + 'Nintendo', + 1979, + array['Space Fever (new version)'], + array['Arcade'], + '{"mame":["spacefev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/n8080.cpp"]}'::jsonb + ), + ( + 'space-fighter-mark-ii', + 'Space Fighter Mark II', + 'Data East', + 1979, + array['Space Fighter Mark II (set 1)'], + array['Arcade'], + '{"mame":["spfghmk2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/astrof.cpp"]}'::jsonb + ), + ( + 'space-firebird', + 'Space Firebird', + 'Nintendo', + 1980, + array['Space Firebird (rev. 04-u)'], + array['Arcade'], + '{"mame":["spacefb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/spacefb.cpp"]}'::jsonb + ), + ( + 'space-force', + 'Space Force', + 'Venture Line', + 1980, + array['Space Force (set 1)'], + array['Arcade'], + '{"mame":["spcforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/spcforce.cpp"]}'::jsonb + ), + ( + 'space-fortress-cvs', + 'Space Fortress (CVS)', + 'Century Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["spacefrt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'space-fury', + 'Space Fury', + 'Sega', + 1981, + array['Space Fury (revision C)'], + array['Arcade'], + '{"mame":["spacfury"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80v.cpp"]}'::jsonb + ), + ( + 'space-guerrilla', + 'Space Guerrilla', + 'Omori Electric Co., Ltd.', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["spaceg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omori/spaceg.cpp"]}'::jsonb + ), + ( + 'space-gun', + 'Space Gun', + 'Taito Corporation Japan', + 1990, + array['Space Gun (World)'], + array['Arcade'], + '{"mame":["spacegun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'space-harrier', + 'Space Harrier', + 'Sega', + 1985, + array['Space Harrier (Rev A, 8751 315-5163A)'], + array['Arcade'], + '{"mame":["sharrier"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segahang.cpp"]}'::jsonb + ), + ( + 'space-harrier-ii-mega-tech', + 'Space Harrier II (Mega-Tech)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_shar2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'space-intruder', + 'Space Intruder', + 'Shoei', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["spaceint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/astinvad.cpp"]}'::jsonb + ), + ( + 'space-invaders-95-the-attack-of-lunar-loonies', + 'Space Invaders ''95: The Attack Of Lunar Loonies', + 'Taito Corporation Japan', + 1995, + array['Space Invaders ''95: The Attack Of Lunar Loonies (Ver 2.5O 1995/06/14)'], + array['Shooter'], + '{"mame":["spcinv95"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'space-invaders-qix-silver-anniversary-edition', + 'Space Invaders / Qix Silver Anniversary Edition', + 'Taito / Namco', + 2003, + array['Space Invaders / Qix Silver Anniversary Edition (Ver. 2.03)'], + array['Shooter'], + '{"mame":["invqix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/invqix.cpp"]}'::jsonb + ), + ( + 'space-invaders-space-invaders-m', + 'Space Invaders / Space Invaders M', + 'Taito / Midway', + 1978, + '{}'::text[], + array['Shooter'], + '{"mame":["invaders"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'space-invaders-dx', + 'Space Invaders DX', + 'Taito Corporation', + 1994, + array['Space Invaders DX (US, v2.1)'], + array['Shooter'], + '{"mame":["spacedx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'space-invaders-ii-midway-cocktail', + 'Space Invaders II (Midway, cocktail)', + 'Midway', + 1980, + '{}'::text[], + array['Shooter'], + '{"mame":["invad2ct"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'space-invaders-multigame-m8-03d', + 'Space Invaders Multigame (M8.03D)', + 'hack (Braze Technologies)', + 2002, + '{}'::text[], + array['Shooter'], + '{"mame":["invmulti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'space-invaders-part-ii-taito-bigger-roms', + 'Space Invaders Part II (Taito, bigger ROMs)', + 'Taito', + 1979, + '{}'::text[], + array['Shooter'], + '{"mame":["invadpt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'space-invasion-eti', + 'Space Invasion (ETI)', + 'Tangerine/ETI', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["spinveti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tangerine/microtan.cpp"]}'::jsonb + ), + ( + 'space-king-2', + 'Space King 2', + 'Konami', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["spcking2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/astinvad.cpp"]}'::jsonb + ), + ( + 'space-launcher', + 'Space Launcher', + 'Nintendo', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["spacelnc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/n8080.cpp"]}'::jsonb + ), + ( + 'space-liner', + 'Space Liner', + 'Z Games', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["spcliner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'space-lords', + 'Space Lords', + 'Atari Games', + 1992, + array['Space Lords (rev C)'], + array['Arcade'], + '{"mame":["spclords"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarigx2.cpp"]}'::jsonb + ), + ( + 'space-micon-kit', + 'Space Micon Kit', + 'SNK', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["smiconk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/miconkit.cpp"]}'::jsonb + ), + ( + 'space-odyssey', + 'Space Odyssey', + 'Sega', + 1981, + array['Space Odyssey (version 2)'], + array['Arcade'], + '{"mame":["spaceod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80r.cpp"]}'::jsonb + ), + ( + 'space-panic', + 'Space Panic', + 'Universal', + 1980, + array['Space Panic (version E)'], + array['Arcade'], + '{"mame":["panic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmic.cpp"]}'::jsonb + ), + ( + 'space-pirates-v2-2', + 'Space Pirates (v2.2)', + 'American Laser Games', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["spacepir"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'space-pokan', + 'Space Pokan', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["spcpokan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'space-position', + 'Space Position', + 'Sega / Nasco', + 1986, + array['Space Position (Japan)'], + array['Arcade'], + '{"mame":["spcpostn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/angelkds.cpp"]}'::jsonb + ), + ( + 'space-raider', + 'Space Raider', + 'Universal', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["sraider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/sraider.cpp"]}'::jsonb + ), + ( + 'space-ranger-arcadia-v-2-0', + 'Space Ranger (Arcadia, V 2.0)', + 'Arcadia Systems', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_sprg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'space-seeker', + 'Space Seeker', + 'Taito Corporation', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["spaceskr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'space-stranger', + 'Space Stranger', + 'Yachiyo Electric', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["sstrangr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yachiyo/sstrangr.cpp"]}'::jsonb + ), + ( + 'space-tactics', + 'Space Tactics', + 'Sega', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["stactics"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stactics.cpp"]}'::jsonb + ), + ( + 'space-trek-upright', + 'Space Trek (upright)', + 'Sega', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["spacetrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'space-walk', + 'Space Walk', + 'Midway', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["spacwalk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'space-war-leijac-corporation', + 'Space War (Leijac Corporation)', + 'Konami (Leijac Corporation license)', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["spcewarl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'space-warp', + 'Space Warp?', + 'Century Electronics', + 1983, + array['Space Warp? (Cosmos conversion on Galaxian hardware)'], + array['Arcade'], + '{"mame":["spcwarp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxold.cpp"]}'::jsonb + ), + ( + 'space-wars', + 'Space Wars', + 'Cinematronics', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["spacewar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'space-zap-midway', + 'Space Zap (Midway)', + 'Midway', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["spacezap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'spark-man', + 'Spark Man', + 'SunA', + 1989, + array['Spark Man (v2.0, set 1)'], + array['Arcade'], + '{"mame":["sparkman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna8.cpp"]}'::jsonb + ), + ( + 'sparkz', + 'Sparkz', + 'Atari Games', + 1992, + array['Sparkz (prototype)'], + array['Arcade'], + '{"mame":["sparkz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/arcadecl.cpp"]}'::jsonb + ), + ( + 'spatter-315-5096', + 'Spatter (315-5096)', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["spatter"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'spawn-in-the-demon-s-hand', + 'Spawn: In the Demon''s Hand', + 'Todd McFarlane / Capcom', + 1999, + array['Spawn: In the Demon''s Hand (Rev B)'], + array['Arcade'], + '{"mame":["spawn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'spc-1000', + 'SPC-1000', + 'Samsung', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["spc1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["samsung/spc1000.cpp"]}'::jsonb + ), + ( + 'spc-1500', + 'SPC-1500', + 'Samsung', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["spc1500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["samsung/spc1500.cpp"]}'::jsonb + ), + ( + 'speak-and-rescue', + 'Speak & Rescue', + 'Sun Electronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["speakres"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/route16.cpp"]}'::jsonb + ), + ( + 'special-7', + 'Special 7', + 'unknown', + null, + array['Special 7 (Taiwanese Hardware, encrypted, set 1)'], + array['Arcade'], + '{"mame":["special7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'special-criminal-investigation', + 'Special Criminal Investigation', + 'Taito Corporation Japan', + 1989, + array['Special Criminal Investigation (World set 1)'], + array['Arcade'], + '{"mame":["sci"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'special-dream-9-v1-0-7g', + 'Special Dream 9 (v1.0.7G)', + 'Excellent System', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["specd9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/es9501.cpp"]}'::jsonb + ), + ( + 'special-forces-kung-fu-commando', + 'Special Forces - Kung Fu Commando', + 'Senko Industries (Magic Electronics Inc. license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["spclforc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'special-forces-elite-training-v01-02-00', + 'Special Forces Elite Training (v01.02.00)', + 'ICE/Play Mechanix', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["specfrce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/vp101.cpp"]}'::jsonb + ), + ( + 'special-forces-ii', + 'Special Forces II', + 'Senko Industries (Magic Electronics Inc. license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["spcfrcii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'spectar', + 'Spectar', + 'Exidy', + 1980, + array['Spectar (revision 3)'], + array['Arcade'], + '{"mame":["spectar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'spectrum-2000', + 'Spectrum 2000', + 'Yona Tech', + 2000, + array['Spectrum 2000 (vertical, Korea)'], + array['Arcade'], + '{"mame":["spec2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'spectrum-i', + 'Spectrum I+', + 'Roy Abel & Associates', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["raaspec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["miltonbradley/vectrex.cpp"]}'::jsonb + ), + ( + 'speed-attack', + 'Speed Attack!', + 'Seta Kikaku', + 1984, + array['Speed Attack! (Japan)'], + array['Arcade'], + '{"mame":["speedatk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/speedatk.cpp"]}'::jsonb + ), + ( + 'speed-ball', + 'Speed Ball', + 'Tecfri / Desystem S.A.', + 1987, + array['Speed Ball (set 1)'], + array['Arcade'], + '{"mame":["speedbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/speedbal.cpp"]}'::jsonb + ), + ( + 'speed-ball-contest-at-neonworld', + 'Speed Ball - Contest at Neonworld', + 'Williams', + 1985, + array['Speed Ball - Contest at Neonworld (prototype)'], + array['Arcade'], + '{"mame":["spdball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'speed-coin', + 'Speed Coin', + 'Stern Electronics', + 1984, + array['Speed Coin (prototype)'], + array['Arcade'], + '{"mame":["spdcoin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'speed-driver', + 'Speed Driver', + 'IGS', + 2004, + '{}'::text[], + array['Racing'], + '{"mame":["speeddrv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspc.cpp"]}'::jsonb + ), + ( + 'speed-drop', + 'Speed Drop', + 'Astro Corp.', + 2003, + array['Speed Drop (Ver. 1.06, Sep 3 2003)'], + array['Arcade'], + '{"mame":["speeddrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'speed-freak', + 'Speed Freak', + 'Vectorbeam', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["speedfrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'speed-master-d2-01-c-apr-29-2004', + 'Speed Master (D2.01.C, Apr 29 2004)', + 'D2 Enterprises', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["speedmst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'speed-race-seletron-olympia', + 'Speed Race (Seletron / Olympia)', + 'Seletron / Olympia', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["speedrs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympia/lbeach.cpp"]}'::jsonb + ), + ( + 'speed-race-taito', + 'Speed Race (Taito)', + 'Taito', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["speedrac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 'speed-racer', + 'Speed Racer', + 'Namco', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["speedrcr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcofl.cpp"]}'::jsonb + ), + ( + 'speed-spin', + 'Speed Spin', + 'TCH', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["speedspn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/speedspn.cpp"]}'::jsonb + ), + ( + 'speed-up', + 'Speed Up', + 'Gaelco', + 1996, + array['Speed Up (version 2.20, checksum 2037)'], + array['Arcade'], + '{"mame":["speedup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco3d.cpp"]}'::jsonb + ), + ( + 'speedway', + 'Speedway', + 'hack (Drivers)', + null, + array['Speedway (set 1)'], + array['Arcade'], + '{"mame":["speedway"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'spell-master-atronic', + 'Spell Master (Atronic)', + 'Atronic', + 2002, + array['Spell Master (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["splmastr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'spellbound', + 'Spellbound', + 'ACE', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["spellbnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/acefruit.cpp"]}'::jsonb + ), + ( + 'spelunker', + 'Spelunker', + 'Irem (licensed from Broderbund)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["spelunkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'spelunker-ii-23-no-kagi', + 'Spelunker II - 23 no Kagi', + 'Irem (licensed from Broderbund)', + 1986, + array['Spelunker II - 23 no Kagi (Japan)'], + array['Arcade'], + '{"mame":["spelunk2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'sphinx-40', + 'Sphinx 40', + 'Newcrest Technology / CXG Systems / Intelligent Chess Software', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sphinx40"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/sphinx40.cpp"]}'::jsonb + ), + ( + 'sphinx-chess-professor', + 'Sphinx Chess Professor', + 'Newcrest Technology / CXG Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["scprof"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/professor.cpp"]}'::jsonb + ), + ( + 'sphinx-commander-v2-00', + 'Sphinx Commander (v2.00)', + 'Newcrest Technology / CXG Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["scmder"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/dominator.cpp"]}'::jsonb + ), + ( + 'sphinx-dominator-v2-05', + 'Sphinx Dominator (v2.05)', + 'Newcrest Technology / CXG Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["sdtor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/dominator.cpp"]}'::jsonb + ), + ( + 'sphinx-galaxy-v2-03', + 'Sphinx Galaxy (v2.03)', + 'Newcrest Technology / CXG Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sgalaxy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/dominator.cpp"]}'::jsonb + ), + ( + 'sphinx-ii-atronic', + 'Sphinx II (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["sphinxii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'sphinx-junior', + 'Sphinx Junior', + 'Newcrest Technology / CXG Systems / Intelligent Chess Software', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sjunior"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/junior.cpp"]}'::jsonb + ), + ( + 'sphinx-legend', + 'Sphinx Legend', + 'National Telecommunication System', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["slegend"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/legend.cpp"]}'::jsonb + ), + ( + 'sphinx-royal', + 'Sphinx Royal', + 'Newcrest Technology / CXG Systems / Intelligent Chess Software', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sroyal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/royal.cpp"]}'::jsonb + ), + ( + 'spica-adventure-v2-03j', + 'Spica Adventure (v2.03J)', + 'Taito Corporation', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["spicaadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'spice-it-up', + 'Spice It Up', + 'Konami', + null, + array['Spice It Up (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["spiceup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'spider-buena-vision-without-nudity', + 'Spider (Buena Vision, without nudity)', + 'Buena Vision', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["spider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/twins.cpp"]}'::jsonb + ), + ( + 'spider-man-vs-the-kingpin-mega-tech', + 'Spider-Man vs The Kingpin (Mega-Tech)', + 'Sega / Marvel', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_spman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'spider-man-the-videogame', + 'Spider-Man: The Videogame', + 'Sega', + 1991, + array['Spider-Man: The Videogame (World)'], + array['Arcade'], + '{"mame":["spidman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'spiders', + 'Spiders', + 'Sigma Enterprises Inc.', + 1981, + array['Spiders (set 1)'], + array['Arcade'], + '{"mame":["spiders"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/spiders.cpp"]}'::jsonb + ), + ( + 'spiel-bude-german', + 'Spiel Bude (German)', + 'ADP', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["spielbud"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/slotcarn.cpp"]}'::jsonb + ), + ( + 'spikeout', + 'Spikeout', + 'Sega', + 1998, + array['Spikeout (Revision C)'], + array['Arcade'], + '{"mame":["spikeout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'spikeout-final-edition', + 'Spikeout Final Edition', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["spikeofe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'spiker-6-9-86', + 'Spiker (6/9/86)', + 'Bally/Sente', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["spiker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'spikers-battle-gds-0005', + 'Spikers Battle (GDS-0005)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["spkrbtl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'spillekonsol-game-console-108-in-1', + 'Spillekonsol Game console - 108-in-1', + 'Zebra AS / Tiger Retail', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tiger108"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'spin-fever', + 'Spin Fever', + 'Konami', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["spinfev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/cougar.cpp"]}'::jsonb + ), + ( + 'spin-master-miracle-adventure', + 'Spin Master / Miracle Adventure', + 'Data East Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["spinmast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'spinal-breakers', + 'Spinal Breakers', + 'V-System Co.', + 1990, + array['Spinal Breakers (World)'], + array['Arcade'], + '{"mame":["spinlbrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pspikes.cpp"]}'::jsonb + ), + ( + 'splash', + 'Splash!', + 'Gaelco / OMK Software', + 1992, + array['Splash! (ver. 1.3, checksum E7BEF3FA, World)'], + array['Arcade'], + '{"mame":["splash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/splash.cpp"]}'::jsonb + ), + ( + 'splat', + 'Splat!', + 'Williams', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["splat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'splatter-house', + 'Splatter House )', + 'Namco', + 1988, + array['Splatter House (World, new version (SH3))'], + array['Arcade'], + '{"mame":["splatter"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'splendor-blast', + 'Splendor Blast', + 'Alpha Denshi Co.', + 1985, + array['Splendor Blast (set 1)'], + array['Arcade'], + '{"mame":["splndrbt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/splendor.cpp"]}'::jsonb + ), + ( + 'splendor-blast-ii', + 'Splendor Blast II', + 'Alpha Denshi Co.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["splndrbt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/splendor.cpp"]}'::jsonb + ), + ( + 'spongebob-squarepants-ticket-boom', + 'SpongeBob SquarePants Ticket Boom', + 'Sega', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["spongbob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaatom.cpp"]}'::jsonb + ), + ( + 'spooky-night-2nd-edition', + 'Spooky Night 2nd Edition', + 'Amcoe', + null, + array['Spooky Night 2nd Edition (Version 2.0.4)'], + array['Arcade'], + '{"mame":["spooky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'sport-fishing-2-uet-951106-v1-10e', + 'Sport Fishing 2 (UET 951106 V1.10e)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["sfish2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'sport-memory', + 'Sport Memory', + 'Nova Desitec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sportmem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novadesitec/novadesitec_fr002.cpp"]}'::jsonb + ), + ( + 'sports-and-dance-fit-games-mat-d-555-pal', + 'Sports and Dance Fit Games Mat D-555 (PAL)', + 'Subor', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dance555"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'sports-authority-challenge', + 'Sports Authority Challenge', + 'Classic Games', + 1992, + array['Sports Authority Challenge (Rev 3)'], + array['Arcade'], + '{"mame":["sprtauth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'sports-game-69-in-1', + 'Sports Game 69 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_sp69"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'sports-jam-gds-0003', + 'Sports Jam (GDS-0003)', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["sprtjam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'sports-shooting-usa', + 'Sports Shooting USA', + 'Sammy USA', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["sprtshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'sportstation-nba-showtime-nba-on-nbc-nfl-blitz-2000-gold-edition', + 'SportStation: NBA Showtime NBA on NBC / NFL Blitz 2000 Gold Edition', + 'Midway Games', + 1999, + array['SportStation: NBA Showtime NBA on NBC (ver 2.1, Sep 22 1999) / NFL Blitz 2000 Gold Edition (ver 1.5, Sep 22 1999)'], + array['Sports'], + '{"mame":["nbanfl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'sportstation-nba-showtime-nba-on-nbc-gold-edition-nfl-blitz-2000-gold-edition', + 'SportStation: NBA Showtime NBA on NBC Gold Edition / NFL Blitz 2000 Gold Edition', + 'Midway Games', + 2000, + array['SportStation: NBA Showtime NBA on NBC Gold Edition (ver 3.0, Feb 18 2000) / NFL Blitz 2000 Gold Edition'], + array['Sports'], + '{"mame":["nbagold"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'sporttime-bowling-arcadia-v-2-1', + 'SportTime Bowling (Arcadia, V 2.1)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Sports'], + '{"mame":["ar_bowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'sporttime-table-hockey', + 'SportTime Table Hockey', + 'Arcadia Systems', + 1988, + array['SportTime Table Hockey (Arcadia, set 1, V 2.1)'], + array['Arcade'], + '{"mame":["ar_airh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'spot-arcadia-v-2-0', + 'Spot (Arcadia, V 2.0)', + 'Arcadia Systems', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_spot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'spotty', + 'Spotty', + 'Prince Co.', + 2001, + array['Spotty (Ver. 2.0.2)'], + array['Arcade'], + '{"mame":["spotty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/limenko.cpp"]}'::jsonb + ), + ( + 'springer', + 'Springer', + 'Orca', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["springer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'sprint-1', + 'Sprint 1', + 'Atari (Kee Games)', + 1978, + '{}'::text[], + array['Racing'], + '{"mame":["sprint1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/sprint2.cpp"]}'::jsonb + ), + ( + 'sprint-4', + 'Sprint 4', + 'Atari', + 1977, + array['Sprint 4 (Rev 03)'], + array['Racing'], + '{"mame":["sprint4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/sprint4.cpp"]}'::jsonb + ), + ( + 'sprint-8', + 'Sprint 8', + 'Atari', + 1977, + '{}'::text[], + array['Racing'], + '{"mame":["sprint8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/sprint8.cpp"]}'::jsonb + ), + ( + 'spy-hunter', + 'Spy Hunter', + 'Bally Midway', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["spyhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'spy-hunter-ii', + 'Spy Hunter II', + 'Bally Midway', + 1987, + array['Spy Hunter II (rev 2)'], + array['Arcade'], + '{"mame":["spyhunt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr68.cpp"]}'::jsonb + ), + ( + 'sq-1', + 'SQ-1', + 'Ensoniq', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["sq1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq5505.cpp"]}'::jsonb + ), + ( + 'sq-2', + 'SQ-2', + 'Ensoniq', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["sq2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq5505.cpp"]}'::jsonb + ), + ( + 'sq-80-cross-wave-synthesizer', + 'SQ-80 Cross Wave Synthesizer', + 'Ensoniq', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sq80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq1.cpp"]}'::jsonb + ), + ( + 'squash', + 'Squash', + 'Gaelco', + 1992, + array['Squash (World, ver. 1.0, checksum 015aef61)'], + array['Arcade'], + '{"mame":["squash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp"]}'::jsonb + ), + ( + 'squash-itisa', + 'Squash (Itisa)', + 'Itisa', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["squaitsa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["valadon/bagman.cpp"]}'::jsonb + ), + ( + 'srd-super-real-darwin', + 'SRD: Super Real Darwin', + 'Data East Corporation', + 1987, + array['SRD: Super Real Darwin (World)'], + array['Arcade'], + '{"mame":["srdarwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'st', + 'ST', + 'Atari', + 1985, + array['ST (USA)'], + array['Arcade'], + '{"mame":["st"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarist.cpp"]}'::jsonb + ), + ( + 'st-1700', + 'ST-1700', + 'Saturn', + null, + array['ST-1700 (headphone version)'], + array['Arcade'], + '{"mame":["st1700h"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1701', + 'ST-1701', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1701"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1702', + 'ST-1702', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1702"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1703', + 'ST-1703', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1703"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1704', + 'ST-1704', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1704"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1705', + 'ST-1705', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1705"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1706', + 'ST-1706', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1706"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1707', + 'ST-1707', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1707"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1708', + 'ST-1708', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1708"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1714', + 'ST-1714', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1714"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-v-486-dev-box-pc', + 'ST-V 486 dev box PC', + 'Sega / ALi', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["stvdev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stvdev.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.012.sql b/supabase/seed-data/mame-game-catalog.generated.012.sql new file mode 100644 index 0000000..a04bd84 --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.012.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'stack-columns', + 'Stack Columns', + 'Sega', + 1994, + array['Stack Columns (World)'], + array['Puzzle'], + '{"mame":["stkclmns"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'stadium-cross', + 'Stadium Cross', + 'Sega', + 1992, + array['Stadium Cross (World)'], + array['Arcade'], + '{"mame":["scross"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'stadium-hero', + 'Stadium Hero', + 'Data East Corporation', + 1988, + array['Stadium Hero (Japan)'], + array['Arcade'], + '{"mame":["stadhero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/stadhero.cpp"]}'::jsonb + ), + ( + 'stadium-hero-96', + 'Stadium Hero ''96', + 'Data East Corporation', + 1996, + array['Stadium Hero ''96 (Europe, EAJ, Tuning license)'], + array['Arcade'], + '{"mame":["stadhr96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_mlc.cpp"]}'::jsonb + ), + ( + 'stagger-i', + 'Stagger I', + 'Afega', + 1998, + array['Stagger I (Japan)'], + array['Arcade'], + '{"mame":["stagger1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'stakes-winner-stakes-winner-gi-kinzen-seiha-e-no-michi', + 'Stakes Winner / Stakes Winner - GI Kinzen Seiha e no Michi', + 'Saurus', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["stakwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'stakes-winner-2', + 'Stakes Winner 2', + 'Saurus', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["stakwin2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'star-audition', + 'Star Audition', + 'Namco', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["staraudi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'star-ball-v1-0-0s', + 'Star Ball (v1.0.0S)', + 'Excellent System', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["starball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/es9501.cpp"]}'::jsonb + ), + ( + 'star-castle', + 'Star Castle', + 'Cinematronics', + 1980, + array['Star Castle (version 3)'], + array['Arcade'], + '{"mame":["starcas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'star-cruiser', + 'Star Cruiser', + 'Ramtek', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["starcrus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/starcrus.cpp"]}'::jsonb + ), + ( + 'star-diamond', + 'Star Diamond', + 'Perfect Technology / Intelligent Heuristic Programming', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["sdiamond"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/sdiamond.cpp"]}'::jsonb + ), + ( + 'star-fighter-v1', + 'Star Fighter (v1)', + 'SunA', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["starfigh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna8.cpp"]}'::jsonb + ), + ( + 'star-fire', + 'Star Fire', + 'Exidy', + 1979, + array['Star Fire (set 1)'], + array['Arcade'], + '{"mame":["starfire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/starfire.cpp"]}'::jsonb + ), + ( + 'star-fire-2', + 'Star Fire 2', + 'Exidy', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["starfir2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/starfire.cpp"]}'::jsonb + ), + ( + 'star-force', + 'Star Force', + 'Tehkan', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["starforc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/senjyo.cpp"]}'::jsonb + ), + ( + 'star-guards', + 'Star Guards', + 'Bally Midway', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["stargrds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'star-horse-satellite', + 'Star Horse (satellite)', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["shorse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-horse-2001', + 'Star Horse 2001', + 'Sega', + 2002, + array['Star Horse 2001 (satellite, Rev B)'], + array['Arcade'], + '{"mame":["shors2k1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-horse-2002', + 'Star Horse 2002', + 'Sega', + 2002, + array['Star Horse 2002 (sound, Export/Taiwan)', 'Star Horse 2002 (sound and backup, Rev A)'], + array['Arcade'], + '{"mame":["shors2k2","shors2k2s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-horse-2002-live', + 'Star Horse 2002 (live)', + 'Sega', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["shors2k2l"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-horse-2002-main-screens', + 'Star Horse 2002 (main screens)', + 'Sega', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["shors2k2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-horse-progress', + 'Star Horse Progress', + 'Sega', + 2003, + array['Star Horse Progress (satellite, Rev A)'], + array['Arcade'], + '{"mame":["shorsep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-horse-progress-returns-satellite', + 'Star Horse Progress Returns (satellite)', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["shorsepr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-jacker-sega', + 'Star Jacker (Sega)', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["starjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'star-rider', + 'Star Rider', + 'Williams', + 1984, + array['Star Rider (REV 1)'], + array['Arcade'], + '{"mame":["starridr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/starrider.cpp"]}'::jsonb + ), + ( + 'star-soldier-vanishing-earth', + 'Star Soldier: Vanishing Earth', + 'Hudson / Seta', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["starsldr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'star-sweep', + 'Star Sweep', + 'Axela / Namco', + 1997, + array['Star Sweep (World, STP2/VER.A)'], + array['Arcade'], + '{"mame":["starswep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'star-trek', + 'Star Trek', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["startrek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80v.cpp"]}'::jsonb + ), + ( + 'star-trek-voyager', + 'Star Trek: Voyager', + 'Team Play/Game Refuge/Monaco Entertainment', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["voyager"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/voyager.cpp"]}'::jsonb + ), + ( + 'star-trigon', + 'Star Trigon', + 'Namco', + 2002, + array['Star Trigon (Japan, STT1 Ver.A)'], + array['Arcade'], + '{"mame":["startrgn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'star-wars', + 'Star Wars', + 'Atari', + 1983, + array['Star Wars (set 1)'], + array['Arcade'], + '{"mame":["starwars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/starwars.cpp"]}'::jsonb + ), + ( + 'star-wars-arcade', + 'Star Wars Arcade', + 'Sega', + 1993, + array['Star Wars Arcade (US)'], + array['Arcade'], + '{"mame":["swa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model1.cpp"]}'::jsonb + ), + ( + 'star-wars-trilogy-arcade', + 'Star Wars Trilogy Arcade', + 'Sega / LucasArts', + 1998, + array['Star Wars Trilogy Arcade (Revision A)'], + array['Arcade'], + '{"mame":["swtrilgy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'star-wars-racer-arcade', + 'Star Wars: Racer Arcade', + 'Sega / Lucas Arts', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["swracer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'starblade', + 'Starblade', + 'Namco', + 1991, + array['Starblade (ST2, World)'], + array['Arcade'], + '{"mame":["starblad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21_c67.cpp"]}'::jsonb + ), + ( + 'stargate', + 'Stargate', + 'Williams / Vid Kidz', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["stargate"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'starhawk', + 'Starhawk', + 'Cinematronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["starhawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'starship-1', + 'Starship 1', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["starshp1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/starshp1.cpp"]}'::jsonb + ), + ( + 'starspinner-dutch-nederlands', + 'Starspinner (Dutch/Nederlands)', + 'ACE', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["starspnr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/acefruit.cpp"]}'::jsonb + ), + ( + 'status-black-jack-v1-0c', + 'Status Black Jack (V1.0c)', + 'Status Games', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["statusbj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'stc-3910-executel', + 'STC 3910 Executel', + 'STC Telecommunications Ltd.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["executel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/stc3910.cpp"]}'::jsonb + ), + ( + 'ste', + 'STe', + 'Atari', + 1989, + array['STe (USA)'], + array['Arcade'], + '{"mame":["ste"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarist.cpp"]}'::jsonb + ), + ( + 'steal-see', + 'Steal See', + 'Moov Generation / Eolith', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["stealsee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'steel-force', + 'Steel Force', + 'Electronic Devices Italy / Ecogames S.L. Spain', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["stlforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/stlforce.cpp"]}'::jsonb + ), + ( + 'steel-gunner', + 'Steel Gunner', + 'Namco', + 1990, + array['Steel Gunner (Rev B)'], + array['Arcade'], + '{"mame":["sgunner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'steel-gunner-2', + 'Steel Gunner 2', + 'Namco', + 1991, + array['Steel Gunner 2 (US)'], + array['Arcade'], + '{"mame":["sgunner2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'steel-talons', + 'Steel Talons', + 'Atari Games', + 1991, + array['Steel Talons (rev 2)'], + array['Arcade'], + '{"mame":["steeltal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/harddriv.cpp"]}'::jsonb + ), + ( + 'steel-worker', + 'Steel Worker', + 'Taito', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["steelwkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'steep-slope-sliders-juet-981110-v1-000', + 'Steep Slope Sliders (JUET 981110 V1.000)', + 'Capcom / Cave / Victor Interactive Software', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["sss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'steeplechase', + 'Steeplechase', + 'Atari', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["steeplec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'steering-champ', + 'Steering Champ', + 'Konami', + 1997, + array['Steering Champ (GQ710 97/12/18 VER. UAA)'], + array['Arcade'], + '{"mame":["strgchmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'stelle-e-cubi-italy', + 'Stelle e Cubi (Italy)', + 'Sure', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["stellecu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspoker.cpp"]}'::jsonb + ), + ( + 'step-champ', + 'Step Champ', + 'Konami', + 1999, + array['Step Champ (GQ930 VER. JA)'], + array['Arcade'], + '{"mame":["stepchmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'stepping-3-superior', + 'Stepping 3 Superior', + 'Jaleco', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["step3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'stepping-stage-special', + 'Stepping Stage Special', + 'Jaleco', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["stepstag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'stinger', + 'Stinger', + 'Seibu Denshi', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["stinger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/wiz.cpp"]}'::jsonb + ), + ( + 'stm-pc', + 'STM PC', + 'STM Electronics', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["stmpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stm/stmpc.cpp"]}'::jsonb + ), + ( + 'stocker-3-19-85', + 'Stocker (3/19/85)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["stocker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'stompin-4-4-86', + 'Stompin'' (4/4/86)', + 'Bally/Sente', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["stompin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'stone-age', + 'Stone Age', + 'Astro Corp.', + 2005, + array['Stone Age (Astro, Ver. EN.03.A, 2005/02/21)'], + array['Arcade'], + '{"mame":["astoneag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'stone-ball-4-players-v1-20-13-12-1994', + 'Stone Ball (4 Players, v1-20 13/12/1994)', + 'Art & Magic', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["stonebal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/artmagic.cpp"]}'::jsonb + ), + ( + 'stop', + 'Stop', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["stop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/stop.cpp"]}'::jsonb + ), + ( + 'storm-blade', + 'Storm Blade', + 'Visco', + 1996, + array['Storm Blade (US)'], + array['Arcade'], + '{"mame":["stmblade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'straight-flush', + 'Straight Flush', + 'Taito', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sflush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'strata-bowling-v3', + 'Strata Bowling (v3)', + 'Strata / Incredible Technologies', + 1990, + '{}'::text[], + array['Sports'], + '{"mame":["stratab"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'strategy-x', + 'Strategy X', + 'Konami', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["stratgyx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scobra.cpp"]}'::jsonb + ), + ( + 'streaking', + 'Streaking', + 'Shoei', + 1980, + array['Streaking (set 1)'], + array['Arcade'], + '{"mame":["streakng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'street-burners', + 'Street Burners', + 'Allied Leisure', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["sburners"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/aleisttl.cpp"]}'::jsonb + ), + ( + 'street-drivin', + 'Street Drivin''', + 'Atari Games', + 1993, + array['Street Drivin'' (prototype)'], + array['Arcade'], + '{"mame":["strtdriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/harddriv.cpp"]}'::jsonb + ), + ( + 'street-fighter', + 'Street Fighter', + 'Capcom', + 1987, + array['Street Fighter (US, set 1)'], + array['Fighting'], + '{"mame":["sf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/sf.cpp"]}'::jsonb + ), + ( + 'street-fighter-alpha-2', + 'Street Fighter Alpha 2', + 'Capcom', + 1996, + array['Street Fighter Alpha 2 (Europe 960229)'], + array['Fighting'], + '{"mame":["sfa2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'street-fighter-alpha-3', + 'Street Fighter Alpha 3', + 'Capcom', + 1998, + array['Street Fighter Alpha 3 (Europe 980904)'], + array['Fighting'], + '{"mame":["sfa3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'street-fighter-alpha-warriors-dreams', + 'Street Fighter Alpha: Warriors'' Dreams', + 'Capcom', + 1995, + array['Street Fighter Alpha: Warriors'' Dreams (Europe 950727)'], + array['Fighting'], + '{"mame":["sfa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'street-fighter-ii-the-world-warrior', + 'Street Fighter II: The World Warrior', + 'Capcom', + 1991, + array['Street Fighter II: The World Warrior (World 910522)'], + array['Fighting'], + '{"mame":["sf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'street-fighter-ii-champion-edition', + 'Street Fighter II'': Champion Edition', + 'Capcom', + 1992, + array['Street Fighter II'': Champion Edition (World 920513)'], + array['Fighting'], + '{"mame":["sf2ce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'street-fighter-ii-hyper-fighting', + 'Street Fighter II'': Hyper Fighting', + 'Capcom', + 1992, + array['Street Fighter II'': Hyper Fighting (World 921209)'], + array['Fighting'], + '{"mame":["sf2hf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'street-fighter-iii-2nd-impact-giant-attack', + 'Street Fighter III 2nd Impact: Giant Attack', + 'Capcom', + 1997, + array['Street Fighter III 2nd Impact: Giant Attack (USA 970930)'], + array['Fighting'], + '{"mame":["sfiii2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'street-fighter-iii-3rd-strike-fight-for-the-future', + 'Street Fighter III 3rd Strike: Fight for the Future', + 'Capcom', + 1999, + array['Street Fighter III 3rd Strike: Fight for the Future (Europe 990608)'], + array['Fighting'], + '{"mame":["sfiii3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'street-fighter-iii-new-generation', + 'Street Fighter III: New Generation', + 'Capcom', + 1997, + array['Street Fighter III: New Generation (Europe 970204)'], + array['Fighting'], + '{"mame":["sfiii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'street-fighter-zero', + 'Street Fighter Zero', + 'Capcom', + 1995, + array['Street Fighter Zero (CPS Changer, Japan 951020)'], + array['Fighting'], + '{"mame":["sfzch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'street-fighter-zero-2-alpha', + 'Street Fighter Zero 2 Alpha', + 'Capcom', + 1996, + array['Street Fighter Zero 2 Alpha (Asia 960826)'], + array['Fighting'], + '{"mame":["sfz2al"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'street-fighter-zero-3-upper-gdl-0002', + 'Street Fighter Zero 3 Upper (GDL-0002)', + 'Capcom', + 2001, + array['Street Fighter Zero 3 Upper (Japan) (GDL-0002)'], + array['Fighting'], + '{"mame":["sfz3ugd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'street-fighter-the-movie-v1-12', + 'Street Fighter: The Movie (v1.12)', + 'Capcom / Incredible Technologies', + 1995, + '{}'::text[], + array['Fighting'], + '{"mame":["sftm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'street-football-11-12-86', + 'Street Football (11/12/86)', + 'Bally/Sente', + 1986, + '{}'::text[], + array['Sports'], + '{"mame":["sfootbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'street-heat', + 'Street Heat', + 'Epos Corporation', + 1985, + array['Street Heat (set 1, newer?)'], + array['Arcade'], + '{"mame":["strtheat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'street-hoop-street-slam-dunk-dream-dem-004-deh-004', + 'Street Hoop / Street Slam / Dunk Dream (DEM-004 ~ DEH-004)', + 'Data East Corporation', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["strhoop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'street-smart', + 'Street Smart', + 'SNK', + 1989, + array['Street Smart (US version 2)'], + array['Arcade'], + '{"mame":["streetsm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk68.cpp"]}'::jsonb + ), + ( + 'streets-of-rage-mega-tech', + 'Streets of Rage (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Beat em up'], + '{"mame":["mt_srage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'streets-of-rage-ii-mega-play', + 'Streets of Rage II (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Beat em up'], + '{"mame":["mp_sor2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'strength-and-skill', + 'Strength & Skill', + 'Sun Electronics', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["strnskil"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/markham.cpp"]}'::jsonb + ), + ( + 'stress-busters-j-981020-v1-000', + 'Stress Busters (J 981020 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["stress"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'strider', + 'Strider', + 'Capcom', + 1989, + array['Strider (USA, B-Board 89624B-2)'], + array['Arcade'], + '{"mame":["strider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'strike-bowling', + 'Strike Bowling', + 'Taito Corporation', + 1982, + '{}'::text[], + array['Sports'], + '{"mame":["sbowling"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/sbowling.cpp"]}'::jsonb + ), + ( + 'strike-fighter', + 'Strike Fighter', + 'Sega', + 1991, + array['Strike Fighter (World)'], + array['Arcade'], + '{"mame":["strkfgtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaybd.cpp"]}'::jsonb + ), + ( + 'strike-force', + 'Strike Force', + 'Midway', + 1991, + array['Strike Force (rev 1 02/25/91)'], + array['Arcade'], + '{"mame":["strkforc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'strike-gunner-s-t-g', + 'Strike Gunner S.T.G', + 'Athena / Tecmo', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["stg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'strike-zone-baseball', + 'Strike Zone Baseball', + 'Leland Corporation', + 1988, + '{}'::text[], + array['Sports'], + '{"mame":["strkzone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'striker', + 'Striker', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["strker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enraya.cpp"]}'::jsonb + ), + ( + 'strikers-1945', + 'Strikers 1945', + 'Psikyo', + 1995, + array['Strikers 1945 (World)'], + array['Arcade'], + '{"mame":["s1945"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo.cpp"]}'::jsonb + ), + ( + 'strikers-1945-ii', + 'Strikers 1945 II', + 'Psikyo', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["s1945ii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'strikers-1945-iii-strikers-1999', + 'Strikers 1945 III / Strikers 1999', + 'Psikyo', + 1999, + array['Strikers 1945 III (World) / Strikers 1999 (Japan)'], + array['Arcade'], + '{"mame":["s1945iii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'strikers-1945-plus', + 'Strikers 1945 Plus', + 'Psikyo', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["s1945p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'strip-teaser', + 'Strip Teaser', + '', + 1993, + array['Strip Teaser (Italy, Ver. 1.22)'], + array['Arcade'], + '{"mame":["steaser"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'strong-link-ukraine-v-43-48', + 'Strong Link (Ukraine, V. 43.48)', + 'Extrema', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["strlink"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'studio-ii', + 'Studio II', + 'RCA', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["studio2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rca/studio2.cpp"]}'::jsonb + ), + ( + 'stunt-air', + 'Stunt Air', + 'Nuova Videotron', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["stuntair"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/stuntair.cpp"]}'::jsonb + ), + ( + 'stunt-cycle', + 'Stunt Cycle', + 'Atari', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["stuntcyc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'stunt-typhoon-plus', + 'Stunt Typhoon Plus', + 'Taito', + 2001, + array['Stunt Typhoon Plus (VER.2.04J)'], + array['Arcade'], + '{"mame":["styphp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'su2000', + 'SU2000', + 'Virtuality', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["su2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/su2000.cpp"]}'::jsonb + ), + ( + 'sub-hunter-model-racing', + 'Sub Hunter (Model Racing)', + 'Model Racing', + 1979, + '{}'::text[], + array['Racing'], + '{"mame":["subhuntr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["modelracing/subhuntr.cpp"]}'::jsonb + ), + ( + 'submarine-sigma', + 'Submarine (Sigma)', + 'Sigma Enterprises Inc.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/sub.cpp"]}'::jsonb + ), + ( + 'subroc-3d', + 'Subroc-3D', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["subroc3d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/turbo.cpp"]}'::jsonb + ), + ( + 'subs', + 'Subs', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["subs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/subs.cpp"]}'::jsonb + ), + ( + 'success-joe', + 'Success Joe', + 'Taito Corporation / Wave', + 1990, + array['Success Joe (World)'], + array['Arcade'], + '{"mame":["scessjoe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/ashnojoe.cpp"]}'::jsonb + ), + ( + 'sugorotic-japan', + 'Sugorotic JAPAN', + 'Namco', + 2002, + array['Sugorotic JAPAN (STJ1 Ver.C)'], + array['Arcade'], + '{"mame":["sugorotc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'suhoseong', + 'Suhoseong', + 'SemiCom', + 1997, + array['Suhoseong (Korea)'], + array['Arcade'], + '{"mame":["suhosong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'suiko-enbu-outlaws-of-the-lost-dynasty-juetl-950314-v2-001', + 'Suiko Enbu / Outlaws of the Lost Dynasty (JUETL 950314 V2.001)', + 'Data East Corporation', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["suikoenb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'sukeban-jansi-ryuko', + 'Sukeban Jansi Ryuko', + 'White Board', + 1988, + array['Sukeban Jansi Ryuko (set 2, System 16B, FD1089B 317-5021)'], + array['Arcade'], + '{"mame":["sjryuko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'sultan-s-wish', + 'Sultan''s Wish', + 'Konami', + null, + array['Sultan''s Wish (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["sultanw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'sun-2-120', + 'Sun 2/120', + 'Sun Microsystems', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sun2_120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun2.cpp"]}'::jsonb + ), + ( + 'sun-2-50', + 'Sun 2/50', + 'Sun Microsystems', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sun2_50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun2.cpp"]}'::jsonb + ), + ( + 'sun-3-110', + 'Sun 3/110', + 'Sun Microsystems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3.cpp"]}'::jsonb + ), + ( + 'sun-3-260-280', + 'Sun 3/260/280', + 'Sun Microsystems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_260"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3.cpp"]}'::jsonb + ), + ( + 'sun-3-460-470-480', + 'Sun 3/460/470/480', + 'Sun Microsystems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_460"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3x.cpp"]}'::jsonb + ), + ( + 'sun-3-50', + 'Sun 3/50', + 'Sun Microsystems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3.cpp"]}'::jsonb + ), + ( + 'sun-3-60', + 'Sun 3/60', + 'Sun Microsystems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_60"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3.cpp"]}'::jsonb + ), + ( + 'sun-3-75-140-150-160-180', + 'Sun 3/75/140/150/160/180', + 'Sun Microsystems', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3.cpp"]}'::jsonb + ), + ( + 'sun-3-80', + 'Sun 3/80', + 'Sun Microsystems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3x.cpp"]}'::jsonb + ), + ( + 'sun-3-e', + 'Sun 3/E', + 'Sun Microsystems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3.cpp"]}'::jsonb + ), + ( + 'sun-4-110', + 'Sun 4/110', + 'Sun Microsystems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sun4_110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun4.cpp"]}'::jsonb + ), + ( + 'sun-4-3x0', + 'Sun 4/3x0', + 'Sun Microsystems', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sun4_300"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun4.cpp"]}'::jsonb + ), + ( + 'sun-4-4x0', + 'Sun 4/4x0', + 'Sun Microsystems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sun4_400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun4.cpp"]}'::jsonb + ), + ( + 'sun-1', + 'Sun-1', + 'Sun Microsystems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["sun1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun1.cpp"]}'::jsonb + ), + ( + 'sundance', + 'Sundance', + 'Cinematronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sundance"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'sunset-riders', + 'Sunset Riders', + 'bootleg / Konami', + 1993, + array['Sunset Riders (scrambled bootleg of Mega Drive version)', 'Sunset Riders (4 Players ver EAC)'], + array['Arcade'], + '{"mame":["srmdb","ssriders"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp","konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'sunset-riders-super-street-fighter-ii-the-new-challengers', + 'Sunset Riders / Super Street Fighter II - The New Challengers', + 'bootleg / Sega', + 1994, + array['Sunset Riders / Super Street Fighter II - The New Challengers (scrambled bootleg of Mega Drive versions)'], + array['Fighting'], + '{"mame":["srssf2mb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'super-9-sensory-chess-challenger', + 'Super "9" Sensory Chess Challenger', + 'Fidelity Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["super9cc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/csc.cpp"]}'::jsonb + ), + ( + 'super-21', + 'Super 21', + 'Public MNG', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["super21p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'super-555', + 'Super 555', + 'GMS', + 1999, + array['Super 555 (English version V1.5)'], + array['Arcade'], + '{"mame":["super555"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'super-70-s', + 'Super 70''s', + 'IGS', + null, + array['Super 70''s (V100US)'], + array['Arcade'], + '{"mame":["super70s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'super-97', + 'Super 97', + 'Cadillac Jack', + 1997, + array['Super 97 (Ver. 1.00)'], + array['Arcade'], + '{"mame":["super97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'super-a-can', + 'Super A''Can', + 'Funtech Entertainment', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["supracan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["umc/supracan.cpp"]}'::jsonb + ), + ( + 'super-abc-pac-man-multigame-kit-sep-03-1999', + 'Super ABC (Pac-Man multigame kit, Sep. 03 1999)', + 'hack (Two-Bit Score)', + 1999, + '{}'::text[], + array['Classic'], + '{"mame":["superabc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'super-arcade-101-in-1', + 'Super Arcade 101-in-1', + '', + null, + array['Super Arcade 101-in-1 (Firecore/VT hybrid, set 1)'], + array['Arcade'], + '{"mame":["sarc110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_firecore.cpp"]}'::jsonb + ), + ( + 'super-astro-fighter', + 'Super Astro Fighter', + 'Data East Corporation', + 1981, + array['Super Astro Fighter (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["csuperas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'super-bagman', + 'Super Bagman', + 'Valadon Automation', + 1984, + array['Super Bagman (version 5)'], + array['Arcade'], + '{"mame":["sbagman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["valadon/bagman.cpp"]}'::jsonb + ), + ( + 'super-ball', + 'Super Ball', + 'Amcoe', + 2002, + array['Super Ball (Version 1.3)'], + array['Arcade'], + '{"mame":["suprball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'super-ball-2001', + 'Super Ball 2001', + 'GMS', + 2001, + array['Super Ball 2001 (Italy version 5.23)'], + array['Arcade'], + '{"mame":["sball2k1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'super-baseball-double-play-home-run-derby', + 'Super Baseball Double Play Home Run Derby', + 'Leland Corporation / Tradewest', + 1987, + '{}'::text[], + array['Sports'], + '{"mame":["dblplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'super-basketball', + 'Super Basketball', + 'Konami', + 1984, + array['Super Basketball (version I, encrypted)'], + array['Arcade'], + '{"mame":["sbasketb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/sbasketb.cpp"]}'::jsonb + ), + ( + 'super-bass-station', + 'Super Bass Station', + 'Novation', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["sbasssta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novation/basssta.cpp"]}'::jsonb + ), + ( + 'super-bishi-bashi-champ', + 'Super Bishi Bashi Champ', + 'Konami', + 1998, + array['Super Bishi Bashi Champ (ver JAA, 2 Players)'], + array['Arcade'], + '{"mame":["sbishi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/bishi.cpp"]}'::jsonb + ), + ( + 'super-bowl', + 'Super Bowl', + 'Greyhound Electronics', + 1982, + array['Super Bowl (Version 16.03B)'], + array['Arcade'], + '{"mame":["superbwl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'super-breakout', + 'Super Breakout', + 'Atari', + 1978, + array['Super Breakout (rev 04)'], + array['Arcade'], + '{"mame":["sbrkout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/sbrkout.cpp"]}'::jsonb + ), + ( + 'super-bubble-2003', + 'Super Bubble 2003', + 'Limenko', + 2003, + array['Super Bubble 2003 (World, Ver 1.0)'], + array['Arcade'], + '{"mame":["sb2003"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/limenko.cpp"]}'::jsonb + ), + ( + 'super-bubble-bobble-sun-mixing-mega-drive-clone-hardware', + 'Super Bubble Bobble (Sun Mixing, Mega Drive clone hardware)', + 'Sun Mixing', + 1996, + '{}'::text[], + array['Platformer', 'Puzzle'], + '{"mame":["sbubsm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_sunmix.cpp"]}'::jsonb + ), + ( + 'super-bubble-pop', + 'Super Bubble Pop', + 'Vektorlogic', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["sbp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'super-bug', + 'Super Bug', + 'Atari (Kee Games)', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["superbug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/firetrk.cpp"]}'::jsonb + ), + ( + 'super-burger-time', + 'Super Burger Time', + 'Data East Corporation', + 1990, + array['Super Burger Time (World, set 1)'], + array['Arcade'], + '{"mame":["supbtime"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/supbtime.cpp"]}'::jsonb + ), + ( + 'super-butterfly-2000', + 'Super Butterfly 2000', + 'Random Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["superb2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'super-c-playchoice-10', + 'Super C (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_suprc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'super-card-v417-encrypted', + 'Super Card (v417, encrypted)', + 'Fun World', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["supercrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/supercrd.cpp"]}'::jsonb + ), + ( + 'super-card-2-in-1', + 'Super Card 2 in 1', + 'GMS', + 2001, + array['Super Card 2 in 1 (English version 03.23)'], + array['Arcade'], + '{"mame":["sc2in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'super-champion-baseball', + 'Super Champion Baseball', + 'Alpha Denshi Co. (SNK of America license)', + 1989, + array['Super Champion Baseball (US)'], + array['Sports'], + '{"mame":["sbasebal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k.cpp"]}'::jsonb + ), + ( + 'super-chase-criminal-termination', + 'Super Chase - Criminal Termination', + 'Taito Corporation Japan', + 1992, + array['Super Chase - Criminal Termination (World)'], + array['Arcade'], + '{"mame":["superchs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/superchs.cpp"]}'::jsonb + ), + ( + 'super-cherry-master-v1-1', + 'Super Cherry Master (v1.1)', + 'bootleg', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["scmaster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'super-cherry-master-v5-2', + 'Super Cherry Master (V5.2)', + 'Dyna', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["scherrym"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'super-cherry-master-plus-v1-6', + 'Super Cherry Master Plus (V1.6)', + 'Dyna', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["scherrymp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'super-chick', + 'Super Chick', + 'Microhard', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["schick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/schick.cpp"]}'::jsonb + ), + ( + 'super-cobra', + 'Super Cobra', + 'Konami', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["scobra"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'super-constellation', + 'Super Constellation', + 'Novag Industries / Intelligent Heuristic Programming', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["supercon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/const.cpp"]}'::jsonb + ), + ( + 'super-contra', + 'Super Contra', + 'Konami', + 1988, + array['Super Contra (set 1)'], + array['Shooter', 'Platformer'], + '{"mame":["scontra"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/thunderx.cpp"]}'::jsonb + ), + ( + 'super-cross-ii', + 'Super Cross II', + 'Sanritsu / GM Shoji', + 1986, + array['Super Cross II (Japan, set 1)'], + array['Arcade'], + '{"mame":["sprcros2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/sprcros2.cpp"]}'::jsonb + ), + ( + 'super-crowns-golf', + 'Super Crowns Golf', + 'Nasco', + 1989, + array['Super Crowns Golf (World)'], + array['Sports'], + '{"mame":["suprgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nasco/suprgolf.cpp"]}'::jsonb + ), + ( + 'super-cup-finals', + 'Super Cup Finals', + 'Taito Corporation Japan', + 1993, + array['Super Cup Finals (Ver 2.2O 1994/01/13, single PCB)'], + array['Arcade'], + '{"mame":["scfinals"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'super-dead-heat', + 'Super Dead Heat', + 'Taito Corporation', + 1985, + array['Super Dead Heat (World)'], + array['Arcade'], + '{"mame":["spdheat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/spdheat.cpp"]}'::jsonb + ), + ( + 'super-denshi-techou-pet-world', + 'Super Denshi Techou - Pet World', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jd362"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/superjr.cpp"]}'::jsonb + ), + ( + 'super-denshi-techou-jr-nigaoe-telepathy', + 'Super Denshi Techou Jr. - Nigaoe Telepathy', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jd320"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/superjr.cpp"]}'::jsonb + ), + ( + 'super-denshi-techou-jr-pet-telepathy', + 'Super Denshi Techou Jr. - Pet Telepathy', + 'Casio', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["jd361"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/superjr.cpp"]}'::jsonb + ), + ( + 'super-denshi-techou-jr-puppy-telepathy', + 'Super Denshi Techou Jr. - Puppy Telepathy', + 'Casio', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["jd360"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/superjr.cpp"]}'::jsonb + ), + ( + 'super-derby-playmark-v-07-03', + 'Super Derby (Playmark, v.07.03)', + 'Playmark', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["sderby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'super-derby-satellite-board', + 'Super Derby (satellite board)', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sderbys"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000a.cpp"]}'::jsonb + ), + ( + 'super-derby-ii', + 'Super Derby II', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sderby2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sderby2.cpp"]}'::jsonb + ), + ( + 'super-derby-ii-satellite-board', + 'Super Derby II (satellite board)', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sderby2s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000a.cpp"]}'::jsonb + ), + ( + 'super-dodge-ball', + 'Super Dodge Ball', + 'Technos Japan', + 1987, + array['Super Dodge Ball (US)'], + array['Arcade'], + '{"mame":["spdodgeb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/spdodgeb.cpp"]}'::jsonb + ), + ( + 'super-dodge-ball-kunio-no-nekketsu-toukyuu-densetsu', + 'Super Dodge Ball / Kunio no Nekketsu Toukyuu Densetsu', + 'Technos Japan', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["sdodgeb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'super-don-quix-ote-long-scenes', + 'Super Don Quix-ote (Long Scenes)', + 'Universal', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["superdq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/superdq.cpp"]}'::jsonb + ), + ( + 'super-donkey-kong-super-bomberman-2-super-famicom-box', + 'Super Donkey Kong / Super Bomberman 2 (Super Famicom Box)', + 'Nintendo / Hudson Soft', + null, + '{}'::text[], + array['Platformer', 'Classic'], + '{"mame":["pss64"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/sfcbox.cpp"]}'::jsonb + ), + ( + 'super-donkey-kong-super-tetris-2-bombliss-super-famicom-box', + 'Super Donkey Kong / Super Tetris 2 + Bombliss (Super Famicom Box)', + 'Nintendo / BPS', + 1994, + '{}'::text[], + array['Platformer', 'Puzzle', 'Classic'], + '{"mame":["pss63"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/sfcbox.cpp"]}'::jsonb + ), + ( + 'super-dou-di-zhu-special-v122cn', + 'Super Dou Di Zhu Special (V122CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cjddzsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'super-doubles-tennis', + 'Super Doubles Tennis', + 'Data East Corporation', + 1983, + array['Super Doubles Tennis (DECO Cassette) (Japan)'], + array['Sports'], + '{"mame":["csdtenis","sdtennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp","dataeast/btime.cpp"]}'::jsonb + ), + ( + 'super-dragon', + 'Super Dragon', + 'OCT', + 1995, + array['Super Dragon (Ver 211)'], + array['Arcade'], + '{"mame":["superdrg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'super-dragon-ball-z', + 'Super Dragon Ball Z', + 'Banpresto / Spike', + 2005, + array['Super Dragon Ball Z (DB1 Ver. B)'], + array['Arcade'], + '{"mame":["superdbz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'super-duck', + 'Super Duck', + 'Comad', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["supduck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/supduck.cpp"]}'::jsonb + ), + ( + 'super-eagle-shot', + 'Super Eagle Shot', + 'Seta', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["speglsht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/speglsht.cpp"]}'::jsonb + ), + ( + 'super-enterprise-model-210', + 'Super Enterprise (model 210)', + 'Newcrest Technology / CXG Systems / LogiSoft', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["senterp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/senterprise.cpp"]}'::jsonb + ), + ( + 'super-expert', + 'Super Expert', + 'Novag Industries / Intelligent Heuristic Programming', + 1988, + array['Super Expert (version A, set 1)'], + array['Arcade'], + '{"mame":["sexperta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/sexpert.cpp"]}'::jsonb + ), + ( + 'super-forte', + 'Super Forte', + 'Novag Industries / Intelligent Heuristic Programming', + 1987, + array['Super Forte (version A, set 1)'], + array['Arcade'], + '{"mame":["sfortea"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/sexpert.cpp"]}'::jsonb + ), + ( + 'super-game', + 'Super Game', + 'Sono Corp Japan', + null, + array['Super Game (Sega Master System Multi-game bootleg, 01 Final Bubble Bobble)'], + array['Arcade'], + '{"mame":["smssgame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sms_bootleg.cpp"]}'::jsonb + ), + ( + 'super-game-25-in-1-gm-228', + 'Super Game 25-in-1 (GM-228)', + 'Timetop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["timetp25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'super-game-36-in-1-timetop-supergame-pal', + 'Super Game 36-in-1 (TimeTop SuperGame) (PAL)', + 'TimeTop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["timetp36"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'super-game-7-in-1-timetop-supergame-pal', + 'Super Game 7-in-1 (TimeTop SuperGame) (PAL)', + 'TimeTop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["timetp7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'super-game-iii', + 'Super Game III', + '', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["supergm3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/multigam.cpp"]}'::jsonb + ), + ( + 'super-game-mega-type-1', + 'Super Game Mega Type 1', + '', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["sgmt1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/multigam.cpp"]}'::jsonb + ), + ( + 'super-gem-fighter-mini-mix', + 'Super Gem Fighter: Mini Mix', + 'Capcom', + 1997, + array['Super Gem Fighter: Mini Mix (USA 970904)'], + array['Arcade'], + '{"mame":["sgemf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'super-glob', + 'Super Glob', + 'Epos Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["suprglob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'super-gran-safari', + 'Super Gran Safari', + 'New Impeuropex Corp.', + 1996, + array['Super Gran Safari (ver. 3.11)'], + array['Arcade'], + '{"mame":["sgsafari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'super-gt-24h', + 'Super GT 24h', + 'Jaleco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["sgt24h"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'super-hana-paradise', + 'Super Hana Paradise', + 'Dynax', + 1994, + array['Super Hana Paradise (Japan)'], + array['Arcade'], + '{"mame":["hparadis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'super-hang-on-mega-tech', + 'Super Hang-On (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_shang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'super-hang-on-sitdown-upright-unprotected', + 'Super Hang-On (sitdown/upright) (unprotected)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["shangon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaorun.cpp"]}'::jsonb + ), + ( + 'super-high-impact', + 'Super High Impact', + 'Midway', + 1991, + array['Super High Impact (rev LA1 09/30/91)'], + array['Arcade'], + '{"mame":["shimpact"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'super-jolly', + 'Super Jolly', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["supjolly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl3.cpp"]}'::jsonb + ), + ( + 'super-kids-jiu-nan-xiao-yingxiong-s019cn', + 'Super Kids / Jiu Nan Xiao Yingxiong (S019CN)', + 'IGS (Golden Dragon Amusement license)', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["superkds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_fear.cpp"]}'::jsonb + ), + ( + 'super-league-fd1094-317-0045', + 'Super League (FD1094 317-0045)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["suprleag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'super-loco-93', + 'Super Loco 93', + '', + 1993, + array['Super Loco 93 (Spanish, set 1)'], + array['Arcade'], + '{"mame":["sloco93"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'super-locomotive', + 'Super Locomotive', + 'Sega', + 1982, + array['Super Locomotive (Rev.A)'], + array['Arcade'], + '{"mame":["suprloco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/suprloco.cpp"]}'::jsonb + ), + ( + 'super-lucky-roulette', + 'Super Lucky Roulette', + 'bootleg', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["roul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/roul.cpp"]}'::jsonb + ), + ( + 'super-lup-lup-puzzle-zhuan-zhuan-puzzle', + 'Super Lup Lup Puzzle / Zhuan Zhuan Puzzle', + 'Omega System', + 1999, + array['Super Lup Lup Puzzle / Zhuan Zhuan Puzzle (version 4.0 / 990518)'], + array['Puzzle'], + '{"mame":["suplup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'super-major-league-u-960108-v1-000', + 'Super Major League (U 960108 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["smleague"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'super-mario-all-stars-nintendo-super-system', + 'Super Mario All-Stars (Nintendo Super System)', + 'Nintendo', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_smas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'super-mario-bros-playchoice-10', + 'Super Mario Bros. (PlayChoice-10)', + 'Nintendo', + 1985, + '{}'::text[], + array['Platformer'], + '{"mame":["pc_smb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'super-mario-bros-2-playchoice-10', + 'Super Mario Bros. 2 (PlayChoice-10)', + 'Nintendo', + 1988, + '{}'::text[], + array['Platformer'], + '{"mame":["pc_smb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'super-mario-bros-3', + 'Super Mario Bros. 3', + 'Sang Ho Soft', + 1987, + array['Super Mario Bros. 3 (NES bootleg)'], + array['Platformer'], + '{"mame":["smb3bl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_arcade_bl.cpp"]}'::jsonb + ), + ( + 'super-mario-bros-3-playchoice-10', + 'Super Mario Bros. 3 (PlayChoice-10)', + 'Nintendo', + 1988, + '{}'::text[], + array['Platformer'], + '{"mame":["pc_smb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'super-mario-fushigi-no-janjanland', + 'Super Mario Fushigi no JanJanLand', + 'Nintendo / Capcom', + 2006, + array['Super Mario Fushigi no JanJanLand (Ver.1.00C, 2006/08/29)'], + array['Arcade'], + '{"mame":["mariojjl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'super-mario-fushigi-no-korokoro-party-center', + 'Super Mario Fushigi no Korokoro Party (center)', + 'Nintendo / Capcom', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["masmario"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'super-mario-fushigi-no-korokoro-party-satellite', + 'Super Mario Fushigi no Korokoro Party (satellite)', + 'Nintendo / Capcom', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["masmarios"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'super-mario-fushigi-no-korokoro-party-2', + 'Super Mario Fushigi no Korokoro Party 2', + 'Nintendo / Capcom', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["masmario2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'super-mario-kart-super-mario-collection-star-fox-super-famicom-box', + 'Super Mario Kart / Super Mario Collection / Star Fox (Super Famicom Box)', + 'Nintendo', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pss61"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/sfcbox.cpp"]}'::jsonb + ), + ( + 'super-mario-world-mario-undoukai', + 'Super Mario World - Mario Undoukai', + 'Banpresto', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["marioun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/banprestoms.cpp"]}'::jsonb + ), + ( + 'super-mario-world-nintendo-super-system', + 'Super Mario World (Nintendo Super System)', + 'Nintendo', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_smw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'super-marukin-ban', + 'Super Marukin-Ban', + 'Yuga', + 1990, + array['Super Marukin-Ban (Japan 911128)'], + array['Arcade'], + '{"mame":["marukin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'super-masters-golf', + 'Super Masters Golf', + 'Sega', + 1989, + array['Super Masters Golf (World?, Floppy Based, FD1094 317-0058-05d?)'], + array['Sports'], + '{"mame":["sgmast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'super-match-2003', + 'Super Match 2003', + 'GMS', + 2003, + array['Super Match 2003 (Version 3.1 2003-11-04)'], + array['Arcade'], + '{"mame":["smatch03"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'super-mini-boy', + 'Super Mini-Boy', + 'Bonanza Enterprises, Ltd', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sminiboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miniboy7.cpp"]}'::jsonb + ), + ( + 'super-miss-world', + 'Super Miss World', + 'Comad', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["smissw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'super-model', + 'Super Model', + 'Comad & New Japan System', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["supmodel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'super-model-ii', + 'Super Model II', + 'Comad', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["supmodl2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'super-monaco-gp-fd1094-317-0126a', + 'Super Monaco GP (FD1094 317-0126a)', + 'Sega', + 1989, + array['Super Monaco GP (World, Rev B) (FD1094 317-0126a)'], + array['Arcade'], + '{"mame":["smgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'super-monaco-gp-mega-tech', + 'Super Monaco GP (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_smgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'super-motor', + 'Super Motor', + 'Duintronic', + null, + array['Super Motor (prototype)'], + array['Arcade'], + '{"mame":["smotor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/smotor.cpp"]}'::jsonb + ), + ( + 'super-mouse', + 'Super Mouse', + 'Taito Corporation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["suprmous"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'super-nova', + 'Super Nova', + 'Novag Industries / Intelligent Heuristic Programming', + 1990, + array['Super Nova (Novag, set 1)'], + array['Arcade'], + '{"mame":["nsnova"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/primo.cpp"]}'::jsonb + ), + ( + 'super-nudger-ii-p173', + 'Super Nudger II - P173', + 'Coinmaster', + 1989, + array['Super Nudger II - P173 (Version 5.21)'], + array['Arcade'], + '{"mame":["supnudg2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmstr.cpp"]}'::jsonb + ), + ( + 'super-othello', + 'Super Othello', + 'Success / Fujiwara', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["sothello"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/sothello.cpp"]}'::jsonb + ), + ( + 'super-pac-man', + 'Super Pac-Man', + 'Namco', + 1982, + '{}'::text[], + array['Classic'], + '{"mame":["superpac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'super-pacman-v1-2-cherry-master', + 'Super Pacman (v1.2) + Cherry Master', + '', + null, + array['Super Pacman (v1.2) + Cherry Master (Corsica, v8.31, unencrypted, set 1)'], + array['Arcade'], + '{"mame":["cmpacman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'super-pang', + 'Super Pang', + 'Mitchell', + 1990, + array['Super Pang (World 900914)'], + array['Arcade'], + '{"mame":["spang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'super-petrix', + 'Super Petrix', + '', + null, + array['Super Petrix (ver. 1P)'], + array['Arcade'], + '{"mame":["spetrix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'super-picky-talk-access-pet', + 'Super Picky Talk - Access Pet', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jd368"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'super-picky-talk-forest-of-gurutan', + 'Super Picky Talk - Forest of Gurutan', + 'Casio', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["pickytlk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'super-picky-talk-my-room-fantasy', + 'Super Picky Talk - My room fantasy', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jd366"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'super-pit-boss-9221-02a', + 'Super Pit Boss (9221-02A)', + 'Merit', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["spitboss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'super-pool', + 'Super Pool', + 'ABM Games', + 1998, + array['Super Pool (ver. 1.2)'], + array['Arcade'], + '{"mame":["suprpool"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'super-pool-99', + 'Super Pool 99', + 'Electronic Projects', + 1998, + array['Super Pool 99 (Version 0.36)'], + array['Arcade'], + '{"mame":["spool99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/spool99.cpp"]}'::jsonb + ), + ( + 'super-punch-out', + 'Super Punch-Out!!', + 'Nintendo', + 1984, + array['Super Punch-Out!! (Rev B)'], + array['Arcade'], + '{"mame":["spnchout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/punchout.cpp"]}'::jsonb + ), + ( + 'super-puzzle-fighter-ii-turbo', + 'Super Puzzle Fighter II Turbo', + 'Capcom', + 1996, + array['Super Puzzle Fighter II Turbo (Europe 960529)'], + array['Puzzle'], + '{"mame":["spf2t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'super-qix', + 'Super Qix', + 'Kaneko / Taito', + 1987, + array['Super Qix (World/Japan, V1.2)'], + array['Arcade'], + '{"mame":["sqix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/superqix.cpp"]}'::jsonb + ), + ( + 'super-queen-bee', + 'Super Queen Bee', + 'Subsino', + 2002, + array['Super Queen Bee (Ver. 101)'], + array['Arcade'], + '{"mame":["squeenb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'super-quique-mega-duck-spain', + 'Super Quique / Mega Duck (Spain)', + 'Cefa Toys', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mduckspa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gb.cpp"]}'::jsonb + ), + ( + 'super-ranger-v2-0', + 'Super Ranger (v2.0)', + 'SunA', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sranger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna8.cpp"]}'::jsonb + ), + ( + 'super-real-basketball-mega-tech', + 'Super Real Basketball (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_srbb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'super-rider', + 'Super Rider', + 'Taito Corporation (Venture Line license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["suprridr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/suprridr.cpp"]}'::jsonb + ), + ( + 'super-rider-italy-v2-0', + 'Super Rider (Italy, v2.0)', + 'Subsino', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["smoto20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'super-road-champions', + 'Super Road Champions', + 'Model Racing', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["srdchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 'super-roller-v7-0', + 'Super Roller (v7.0)', + 'Nova Desitec', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["srollnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'super-sensor-iv', + 'Super Sensor IV', + 'Novag Industries / Intelligent Heuristic Programming', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["ssensor4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/const.cpp"]}'::jsonb + ), + ( + 'super-shanghai-2000', + 'Super Shanghai 2000', + 'bootleg', + 2001, + array['Super Shanghai 2000 (set 1, green board)'], + array['Arcade'], + '{"mame":["ssh2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sshanghai.cpp"]}'::jsonb + ), + ( + 'super-shanghai-2000-wrestle-fiesta', + 'Super Shanghai 2000 - Wrestle Fiesta', + 'bootleg', + 2000, + array['Super Shanghai 2000 - Wrestle Fiesta (30% bonus, red board)'], + array['Arcade'], + '{"mame":["ssh2000wf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sshanghai.cpp"]}'::jsonb + ), + ( + 'super-shanghai-2001', + 'Super Shanghai 2001', + 'bootleg', + 2001, + array['Super Shanghai 2001 (set 1, red board)'], + array['Arcade'], + '{"mame":["ssh2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sshanghai.cpp"]}'::jsonb + ), + ( + 'super-shanghai-2005-gdl-0031a', + 'Super Shanghai 2005 (GDL-0031A)', + 'Starfish', + 2005, + array['Super Shanghai 2005 (Japan, Rev A) (GDL-0031A)'], + array['Arcade'], + '{"mame":["ss2005"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'super-shanghai-dragon-s-eye', + 'Super Shanghai Dragon''s Eye', + 'Hot-B Co., Ltd.', + 1992, + array['Super Shanghai Dragon''s Eye (World)'], + array['Arcade'], + '{"mame":["sshangha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/sshangha.cpp"]}'::jsonb + ), + ( + 'super-shot', + 'Super Shot', + 'Model Racing', + 1979, + array['Super Shot (set 1)'], + array['Arcade'], + '{"mame":["sshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["modelracing/sshot.cpp"]}'::jsonb + ), + ( + 'super-sidekicks-tokuten-ou', + 'Super Sidekicks / Tokuten Ou', + 'SNK', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ssideki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'super-sidekicks-2-the-world-championship-tokuten-ou-2-real-fight-football-ngm-061-ngh-061', + 'Super Sidekicks 2 - The World Championship / Tokuten Ou 2 - Real Fight Football (NGM-061 ~ NGH-061)', + 'SNK', + 1994, + '{}'::text[], + array['Sports'], + '{"mame":["ssideki2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'super-sidekicks-3-the-next-glory-tokuten-ou-3-eikou-e-no-chousen', + 'Super Sidekicks 3 - The Next Glory / Tokuten Ou 3 - Eikou e no Chousen', + 'SNK', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["ssideki3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'super-six', + 'Super Six', + 'Advanced Digital Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["super6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adc/super6.cpp"]}'::jsonb + ), + ( + 'super-slam', + 'Super Slam', + 'Playmark', + 1993, + array['Super Slam (set 1)'], + array['Arcade'], + '{"mame":["sslam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sslam.cpp"]}'::jsonb + ), + ( + 'super-slave', + 'Super Slave', + 'Advanced Digital Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["superslv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adc/superslave.cpp"]}'::jsonb + ), + ( + 'super-soccer-nintendo-super-system', + 'Super Soccer (Nintendo Super System)', + 'Human Inc.', + 1992, + '{}'::text[], + array['Sports'], + '{"mame":["nss_ssoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'super-space-2001', + 'Super Space 2001', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sspac2k1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'super-space-invaders-91', + 'Super Space Invaders ''91', + 'Taito Corporation Japan', + 1990, + array['Super Space Invaders ''91 (World, revised code, Rev 1)'], + array['Shooter'], + '{"mame":["ssi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'super-spacefortress-macross-chou-jikuu-yousai-macross', + 'Super Spacefortress Macross / Chou-Jikuu Yousai Macross', + 'Banpresto', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["macross"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'super-spacefortress-macross-ii-chou-jikuu-yousai-macross-ii', + 'Super Spacefortress Macross II / Chou-Jikuu Yousai Macross II', + 'Banpresto', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["macross2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'super-speed-race', + 'Super Speed Race', + 'Taito (Midway license)', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sspeedr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/sspeedr.cpp"]}'::jsonb + ), + ( + 'super-speed-race-junior', + 'Super Speed Race Junior', + 'Taito Corporation', + 1985, + array['Super Speed Race Junior (Japan)'], + array['Arcade'], + '{"mame":["ssrj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/ssrj.cpp"]}'::jsonb + ), + ( + 'super-sprint', + 'Super Sprint', + 'Atari Games', + 1986, + array['Super Sprint (rev 4)'], + array['Racing'], + '{"mame":["ssprint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy2.cpp"]}'::jsonb + ), + ( + 'super-star', + 'Super Star', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'super-star-97-ming-xing-97', + 'Super Star 97 / Ming Xing 97', + 'Bordun International', + null, + array['Super Star 97 / Ming Xing 97 (version V153B)'], + array['Arcade'], + '{"mame":["sstar97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'super-stars', + 'Super Stars', + 'Amatic Trading GmbH', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["suprstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'super-stars-v839-encrypted', + 'Super Stars (v839, encrypted)', + 'Fun World', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["supst839"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/supercrd.cpp"]}'::jsonb + ), + ( + 'super-stingray', + 'Super Stingray', + 'Alpha Denshi Co.', + 1986, + array['Super Stingray (Japan)'], + array['Arcade'], + '{"mame":["sstingry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k_n.cpp"]}'::jsonb + ), + ( + 'super-street-fighter-ii-turbo', + 'Super Street Fighter II Turbo', + 'Capcom', + 1994, + array['Super Street Fighter II Turbo (World 940223)'], + array['Fighting'], + '{"mame":["ssf2t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'super-street-fighter-ii-the-new-challengers', + 'Super Street Fighter II: The New Challengers', + 'Capcom', + 1993, + array['Super Street Fighter II: The New Challengers (World 931005)', 'Super Street Fighter II - The New Challengers (scrambled bootleg of Mega Drive version)'], + array['Fighting'], + '{"mame":["ssf2","ssf2mdb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp","sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'super-tank', + 'Super Tank', + 'Video Games GmbH', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["supertnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["videogames/supertnk.cpp"]}'::jsonb + ), + ( + 'super-tank-attack', + 'Super Tank Attack', + 'Microprose Games Inc.', + 1992, + array['Super Tank Attack (prototype rev. 1.12)'], + array['Arcade'], + '{"mame":["stankatk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/micro3d.cpp"]}'::jsonb + ), + ( + 'super-tarzan-italy-v100i', + 'Super Tarzan (Italy, V100I)', + 'IGS (G.F. Gioca license)', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["starzan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'super-ten-v8-3', + 'Super Ten V8.3', + 'U.S. Games, Inc.', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["superten"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/usgames.cpp"]}'::jsonb + ), + ( + 'super-tennis-nintendo-super-system', + 'Super Tennis (Nintendo Super System)', + 'Nintendo', + 1991, + '{}'::text[], + array['Sports'], + '{"mame":["nss_sten"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'super-thunder-blade-mega-tech', + 'Super Thunder Blade (Mega-Tech)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_stbld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'super-toffy', + 'Super Toffy', + 'Midas', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["stoffy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'super-train', + 'Super Train', + 'Subsino', + 1996, + array['Super Train (Ver. 1.9)'], + array['Arcade'], + '{"mame":["strain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'super-trio', + 'Super Trio', + 'Gameace', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["suprtrio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'super-triv-english-questions', + 'Super Triv (English questions)', + 'Nova du Canada', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["striv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ), + ( + 'super-triv-ii', + 'Super Triv II', + 'Status Games', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["supertr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'super-triv-iii', + 'Super Triv III', + 'Status Games', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["supertr3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'super-tv-boy-pal', + 'Super TV Boy (PAL)', + 'Akor', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["stvboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/a2600.cpp"]}'::jsonb + ), + ( + 'super-twenty-one', + 'Super Twenty One', + 'Mirco Games', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["super21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/hitme.cpp"]}'::jsonb + ), + ( + 'super-two-in-one', + 'Super Two In One', + 'Fun Tech Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["fts2in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funtech/funtech_z80.cpp"]}'::jsonb + ), + ( + 'super-vip-v3-7', + 'Super VIP (v3.7)', + 'Novag Industries / Intelligent Heuristic Programming', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["nsvip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/vip.cpp"]}'::jsonb + ), + ( + 'super-vision', + 'Super Vision', + 'Watara', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["svision"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["svision/svision.cpp"]}'::jsonb + ), + ( + 'super-vision-8000', + 'Super Vision 8000', + 'Bandai', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sv8000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bandai/sv8000.cpp"]}'::jsonb + ), + ( + 'super-visual-football-european-sega-cup', + 'Super Visual Football: European Sega Cup', + 'Sega', + 1994, + array['Super Visual Football: European Sega Cup (Rev A)'], + array['Sports'], + '{"mame":["svf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'super-volleyball', + 'Super Volleyball', + 'V-System Co.', + 1989, + array['Super Volleyball (Japan)'], + array['Arcade'], + '{"mame":["svolley"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/rpunch.cpp"]}'::jsonb + ), + ( + 'super-wing', + 'Super Wing', + 'Wing', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["superwng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/superwng.cpp"]}'::jsonb + ), + ( + 'super-world-court', + 'Super World Court', + 'Namco', + 1992, + array['Super World Court (World)'], + array['Arcade'], + '{"mame":["swcourt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'super-world-stadium', + 'Super World Stadium', + 'Namco', + 1992, + array['Super World Stadium (Japan)'], + array['Arcade'], + '{"mame":["sws"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-92', + 'Super World Stadium ''92', + 'Namco', + 1992, + array['Super World Stadium ''92 (Japan)'], + array['Arcade'], + '{"mame":["sws92"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-93', + 'Super World Stadium ''93', + 'Namco', + 1993, + array['Super World Stadium ''93 (Japan)'], + array['Arcade'], + '{"mame":["sws93"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-95', + 'Super World Stadium ''95', + 'Namco', + 1995, + array['Super World Stadium ''95 (Japan)'], + array['Arcade'], + '{"mame":["sws95"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-96', + 'Super World Stadium ''96', + 'Namco', + 1996, + array['Super World Stadium ''96 (Japan)'], + array['Arcade'], + '{"mame":["sws96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-97', + 'Super World Stadium ''97', + 'Namco', + 1997, + array['Super World Stadium ''97 (Japan)'], + array['Arcade'], + '{"mame":["sws97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-98', + 'Super World Stadium ''98', + 'Namco', + 1998, + array['Super World Stadium ''98 (Japan, SS81/VER.A)'], + array['Arcade'], + '{"mame":["sws98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-99', + 'Super World Stadium ''99', + 'Namco', + 1999, + array['Super World Stadium ''99 (Japan, SS91/VER.A3)'], + array['Arcade'], + '{"mame":["sws99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-2000', + 'Super World Stadium 2000', + 'Namco', + 2000, + array['Super World Stadium 2000 (Japan, SS01/VER.A)'], + array['Arcade'], + '{"mame":["sws2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-2001', + 'Super World Stadium 2001', + 'Namco', + 2001, + array['Super World Stadium 2001 (Japan, SS11/VER.A)'], + array['Arcade'], + '{"mame":["sws2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'super-xevious', + 'Super Xevious', + 'Namco', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sxevious"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/galaga.cpp"]}'::jsonb + ), + ( + 'super-zaxxon-315-5013', + 'Super Zaxxon (315-5013)', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["szaxxon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/zaxxon.cpp"]}'::jsonb + ), + ( + 'super-80-v1-2', + 'Super-80 (V1.2)', + 'Dick Smith Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["super80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/super80.cpp"]}'::jsonb + ), + ( + 'super-x-ntc', + 'Super-X (NTC)', + 'Dooyong (NTC license)', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["superx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'superbike', + 'Superbike', + 'Century Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["superbik"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'superboard-ii-model-600', + 'Superboard II Model 600', + 'Ohio Scientific', + 1978, + array['Superboard II Model 600 (Rev. B)'], + array['Arcade'], + '{"mame":["sb2m600b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["osi/osi.cpp"]}'::jsonb + ), + ( + 'superior-soldiers', + 'Superior Soldiers', + 'Irem America', + 1993, + array['Superior Soldiers (US)'], + array['Arcade'], + '{"mame":["ssoldier"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'superman', + 'Superman', + 'Taito Corporation', + 1988, + array['Superman (World)'], + array['Arcade'], + '{"mame":["superman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_x.cpp"]}'::jsonb + ), + ( + 'superstar-4435-81-u5-1', + 'Superstar (4435-81, U5-1)', + 'Merit', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["msupstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'supreme-200-handheld', + 'Supreme 200 (handheld)', + 'Fizz Creations', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["supr200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'supremo', + 'Supremo', + 'Novag Industries / Intelligent Heuristic Programming', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["supremo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/primo.cpp"]}'::jsonb + ), + ( + 'sure-shot', + 'Sure Shot', + 'SMS Manufacturing Corp.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sureshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/smsmcorp.cpp"]}'::jsonb + ), + ( + 'sure-shot-older-dphl-hardware', + 'Sure Shot (older, dphl hardware)', + 'SMS Manufacturing Corp.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["sureshoto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'surf-planet', + 'Surf Planet', + 'Gaelco (Atari license)', + 1997, + array['Surf Planet (version 4.1)'], + array['Arcade'], + '{"mame":["surfplnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco3d.cpp"]}'::jsonb + ), + ( + 'surprise-5', + 'Surprise 5', + 'Cadillac Jack', + 1997, + array['Surprise 5 (Ver. 1.19)'], + array['Arcade'], + '{"mame":["surpr5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'surprise-attack', + 'Surprise Attack', + 'Konami', + 1990, + array['Surprise Attack (World ver. K)'], + array['Arcade'], + '{"mame":["suratk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/surpratk.cpp"]}'::jsonb + ), + ( + 'survival', + 'Survival', + 'Rock-Ola', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["survival"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["phoenix/phoenix.cpp"]}'::jsonb + ), + ( + 'survival-arts', + 'Survival Arts', + 'Sammy', + 1993, + array['Survival Arts (World)'], + array['Arcade'], + '{"mame":["survarts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'sushi-bar-toretore-sushi', + 'Sushi Bar / Toretore! Sushi', + 'Sammy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["sushibar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'susume-mile-smile-go-go-mile-smile-newer', + 'Susume! Mile Smile / Go Go! Mile Smile (newer)', + 'Fuuki', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["gogomile"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fuuki/fuukifg2.cpp"]}'::jsonb + ), + ( + 'sutjaro-haeyo-deluxe', + 'Sutjaro Haeyo Deluxe', + 'SemiCom', + 1996, + array['Sutjaro Haeyo Deluxe (Korea)'], + array['Arcade'], + '{"mame":["sutjarod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'suzuka-8-hours', + 'Suzuka 8 Hours', + 'Namco', + 1992, + array['Suzuka 8 Hours (World, Rev C)'], + array['Arcade'], + '{"mame":["suzuka8h"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'suzuka-8-hours-2', + 'Suzuka 8 Hours 2', + 'Namco', + 1993, + array['Suzuka 8 Hours 2 (World, Rev B)'], + array['Arcade'], + '{"mame":["suzuk8h2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'svi-318-pal', + 'SVI-318 (PAL)', + 'Spectravideo', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["svi318"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["svi/svi318.cpp"]}'::jsonb + ), + ( + 'svi-328-pal', + 'SVI-328 (PAL)', + 'Spectravideo', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["svi328"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["svi/svi318.cpp"]}'::jsonb + ), + ( + 'swat-315-5048', + 'SWAT (315-5048)', + 'Coreland / Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["swat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'swat-police', + 'SWAT Police', + 'ESD', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["swatpolc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'sweet-life', + 'Sweet Life', + 'Igrosoft', + 2004, + array['Sweet Life (041220 World)'], + array['Arcade'], + '{"mame":["sweetl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'sweet-life-2', + 'Sweet Life 2', + 'Igrosoft', + 2007, + array['Sweet Life 2 (071217 Russia)'], + array['Arcade'], + '{"mame":["sweetl2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'swimmer', + 'Swimmer', + 'Tehkan', + 1982, + array['Swimmer (set 1)'], + array['Arcade'], + '{"mame":["swimmer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'swing-gal', + 'Swing Gal', + 'Digital Denshi', + 1987, + array['Swing Gal (Japan 871221)'], + array['Arcade'], + '{"mame":["swinggal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'swingin-in-the-green', + 'Swingin In The Green', + 'WMS', + 2000, + array['Swingin In The Green (Russian)'], + array['Arcade'], + '{"mame":["swingin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'swinging-singles', + 'Swinging Singles', + 'Yachiyo Denki (Entertainment Enterprises, Ltd. license)', + 1983, + array['Swinging Singles (US)'], + array['Arcade'], + '{"mame":["ssingles"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yachiyo/ssingles.cpp"]}'::jsonb + ), + ( + 'swp-hopper-board', + 'SWP Hopper Board', + 'Sega', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["hopper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'swtpc-6800-computer-system-with-swtbug', + 'SWTPC 6800 Computer System (with SWTBUG)', + 'Southwest Technical Products Corporation', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["swtpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["swtpc/swtpc.cpp"]}'::jsonb + ), + ( + 'swtpc-s-09-sbug', + 'swtpc S/09 Sbug', + 'SWTPC', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["swtpc09"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["swtpc/swtpc09.cpp"]}'::jsonb + ), + ( + 'sx-240-8-voice-programmable-polyphonic-synthesizer', + 'SX-240 8-Voice Programmable Polyphonic Synthesizer', + 'Kawai Musical Instrument Manufacturing', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sx240"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/sx240.cpp"]}'::jsonb + ), + ( + 'sx-kn5000', + 'SX-KN5000', + 'Technics', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["kn5000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["matsushita/kn5000.cpp"]}'::jsonb + ), + ( + 'sx1010', + 'SX1010', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sx1010"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/sx1000.cpp"]}'::jsonb + ), + ( + 'sy-019s', + 'SY-019S', + 'Soyo', + null, + array['SY-019S (UMC UM8498F & UM8496 chipset)'], + array['Arcade'], + '{"mame":["sy019s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["umc/pc486vl.cpp"]}'::jsonb + ), + ( + 'sy-888b-288-in-1-handheld', + 'SY-888B 288 in 1 Handheld', + 'SY Corp', + 2016, + '{}'::text[], + array['Arcade'], + '{"mame":["sy888b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'sy-889-300-in-1-handheld', + 'SY-889 300 in 1 Handheld', + 'SY Corp', + 2017, + '{}'::text[], + array['Arcade'], + '{"mame":["sy889"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'sy35-music-synthesizer', + 'SY35 Music Synthesizer', + 'Yamaha', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["sy35"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymsy35.cpp"]}'::jsonb + ), + ( + 'sym-1-sy-vim-1', + 'SYM-1/SY-VIM-1', + 'Synertek Systems Corp.', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["sym1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["synertek/sym1.cpp"]}'::jsonb + ), + ( + 'symbols', + 'Symbols', + 'Advanced Video Technology', + 1985, + array['Symbols (ver 1.4)'], + array['Arcade'], + '{"mame":["avtsym14"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/avt.cpp"]}'::jsonb + ), + ( + 'sys1121', + 'SYS1121', + 'Motorola', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sys1121"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/sys1121.cpp"]}'::jsonb + ), + ( + 'sys16', + 'SYS16', + 'National Semiconductor', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["sys16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["natsemi/sys16.cpp"]}'::jsonb + ), + ( + 'system-board-y2', + 'System Board Y2', + 'SI Electronics', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["systemy2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/y2.cpp"]}'::jsonb + ), + ( + 'system-gx', + 'System GX', + 'Konami', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["konamigx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'systemsp-factory-check-server', + 'SystemSP Factory Check Server', + 'Sega', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["spchecksrv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'syusse-oozumou', + 'Syusse Oozumou', + 'Technos Japan', + 1984, + array['Syusse Oozumou (Japan)'], + array['Arcade'], + '{"mame":["ssozumo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ssozumo.cpp"]}'::jsonb + ), + ( + 'syvalion', + 'Syvalion', + 'Taito Corporation', + 1988, + array['Syvalion (Japan)'], + array['Arcade'], + '{"mame":["syvalion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_h.cpp"]}'::jsonb + ), + ( + 'sz-1', + 'SZ-1', + 'Casio', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sz1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/cz230s.cpp"]}'::jsonb + ), + ( + 't-mek-v5-1-the-warlords', + 'T-MEK (v5.1, The Warlords)', + 'Atari Games', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["tmek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarigt.cpp"]}'::jsonb + ), + ( + 't-n-k-iii', + 'T.N.K III', + 'SNK', + 1985, + array['T.N.K III (US)'], + array['Arcade'], + '{"mame":["tnk3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 't-t-block', + 'T.T Block', + 'Taito', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["ttblock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 't-t-speed-race-cl', + 'T.T. Speed Race CL', + 'Taito', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["ttsracec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 't-v-21', + 'T.V. 21', + 'A-1 Supply', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tv21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/a1supply.cpp"]}'::jsonb + ), + ( + 't-v-21-iii', + 'T.V. 21 III', + 'A-1 Supply', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tv21_3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/a1supply.cpp"]}'::jsonb + ), + ( + 't410-test-suite', + 'T410 test suite', + 'T400 uController project', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["test410"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/test_t400.cpp"]}'::jsonb + ), + ( + 'table-tennis-champions', + 'Table Tennis Champions', + 'Gamart', + 1995, + '{}'::text[], + array['Sports'], + '{"mame":["ttchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ttchamp.cpp"]}'::jsonb + ), + ( + 'tac-scan', + 'Tac/Scan', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["tacscan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80v.cpp"]}'::jsonb + ), + ( + 'tactician', + 'Tactician', + 'Konami (Sega license)', + 1982, + array['Tactician (set 1)'], + array['Arcade'], + '{"mame":["tactcian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rallyx.cpp"]}'::jsonb + ), + ( + 'taihou-de-doboon', + 'Taihou de Doboon', + 'Sammy', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["tdoboon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-10-t101001-na-a', + 'Taiko no Tatsujin 10 (T101001-NA-A)', + 'Namco', + 2007, + '{}'::text[], + array['Rhythm'], + '{"mame":["taiko10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-11-t111001-na-a', + 'Taiko no Tatsujin 11 (T111001-NA-A)', + 'Namco', + 2008, + '{}'::text[], + array['Rhythm'], + '{"mame":["taiko11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-2', + 'Taiko no Tatsujin 2', + 'Namco', + 2001, + array['Taiko no Tatsujin 2 (Japan, TK21 Ver.C)'], + array['Rhythm'], + '{"mame":["taiko2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-3', + 'Taiko no Tatsujin 3', + 'Namco', + 2002, + array['Taiko no Tatsujin 3 (Japan, TK31 Ver.A)'], + array['Rhythm'], + '{"mame":["taiko3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-4', + 'Taiko no Tatsujin 4', + 'Namco', + 2002, + array['Taiko no Tatsujin 4 (Japan, TK41 Ver.A)'], + array['Rhythm'], + '{"mame":["taiko4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-5', + 'Taiko no Tatsujin 5', + 'Namco', + 2003, + array['Taiko no Tatsujin 5 (Japan, TK51 Ver.A)'], + array['Rhythm'], + '{"mame":["taiko5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-6', + 'Taiko no Tatsujin 6', + 'Namco', + 2004, + array['Taiko no Tatsujin 6 (Japan, TK61 Ver.A)'], + array['Rhythm'], + '{"mame":["taiko6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-7-tk71-na-a', + 'Taiko no Tatsujin 7 (TK71-NA-A)', + 'Namco', + 2005, + '{}'::text[], + array['Rhythm'], + '{"mame":["taiko7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-8-tk8100-1-na-a', + 'Taiko no Tatsujin 8 (TK8100-1-NA-A)', + 'Namco', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["taiko8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-9-tk91001-na-a', + 'Taiko no Tatsujin 9 (TK91001-NA-A)', + 'Namco', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["taiko9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-rt-nippon-no-kokoro', + 'Taiko no Tatsujin RT: Nippon no Kokoro', + 'Namco', + 2004, + array['Taiko no Tatsujin RT: Nippon no Kokoro (Japan, TKN1 Ver.A)'], + array['Rhythm'], + '{"mame":["taikort"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'tail-to-nose-great-championship-super-formula', + 'Tail to Nose - Great Championship / Super Formula', + 'V-System Co.', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["tail2nos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/tail2nos.cpp"]}'::jsonb + ), + ( + 'tailgunner', + 'Tailgunner', + 'Cinematronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["tailg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'taisen-hot-gimmick', + 'Taisen Hot Gimmick', + 'Psikyo', + 1997, + array['Taisen Hot Gimmick (Japan)'], + array['Arcade'], + '{"mame":["hotgmck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo4.cpp"]}'::jsonb + ), + ( + 'taisen-hot-gimmick-3-digital-surfing', + 'Taisen Hot Gimmick 3 Digital Surfing', + 'Psikyo', + 1999, + array['Taisen Hot Gimmick 3 Digital Surfing (Japan)'], + array['Arcade'], + '{"mame":["hotgmck3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo4.cpp"]}'::jsonb + ), + ( + 'taisen-hot-gimmick-4-ever', + 'Taisen Hot Gimmick 4 Ever', + 'Psikyo', + 2000, + array['Taisen Hot Gimmick 4 Ever (Japan)'], + array['Arcade'], + '{"mame":["hotgm4ev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo4.cpp"]}'::jsonb + ), + ( + 'taisen-hot-gimmick-kairakuten', + 'Taisen Hot Gimmick Kairakuten', + 'Psikyo', + 1998, + array['Taisen Hot Gimmick Kairakuten (Japan)'], + array['Arcade'], + '{"mame":["hgkairak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo4.cpp"]}'::jsonb + ), + ( + 'taisen-hot-gimmick-mix-party', + 'Taisen Hot Gimmick Mix Party', + 'XNauts', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["hotgmkmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'taisen-tanto-r-sashissu-j-980216-v1-000', + 'Taisen Tanto-R Sashissu!! (J 980216 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["sasissu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'taisen-tokkae-dama', + 'Taisen Tokkae-dama', + 'Konami', + 1996, + array['Taisen Tokkae-dama (ver JAA)'], + array['Arcade'], + '{"mame":["tokkae"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'taishan-wuxian-jiaqiang-ban-v101cn', + 'Taishan Wuxian Jiaqiang Ban (V101CN)', + 'IGS', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["tswxp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'taito-cup-finals', + 'Taito Cup Finals', + 'Taito Corporation Japan', + 1993, + array['Taito Cup Finals (Ver 1.0O 1993/02/28)'], + array['Arcade'], + '{"mame":["cupfinal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'taito-power-goal', + 'Taito Power Goal', + 'Taito Corporation Japan', + 1994, + array['Taito Power Goal (Ver 2.5O 1994/11/03)'], + array['Arcade'], + '{"mame":["pwrgoal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'taiwan-chess-legend', + 'Taiwan Chess Legend', + 'Uniwang', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["tcl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'tajmahal-atronic', + 'Tajmahal (Atronic)', + 'Atronic', + 2002, + array['Tajmahal (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["tajmah"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'take-5', + 'Take 5', + 'Fun Games', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["take5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/fungames.cpp"]}'::jsonb + ), + ( + 'talbot', + 'Talbot', + 'Alpha Denshi Co. (Volt Electronics license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["talbot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/champbas.cpp"]}'::jsonb + ), + ( + 'tandy-200', + 'Tandy 200', + 'Tandy Radio Shack', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["tandy200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kyocera/kyocera.cpp"]}'::jsonb + ), + ( + 'tang-tang', + 'Tang Tang', + 'ESD', + 2000, + array['Tang Tang (ver. 0526, 26/05/2000, set 1)'], + array['Arcade'], + '{"mame":["tangtang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'tangram-q', + 'Tangram Q', + 'SNK', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["tangramq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'tank-8', + 'Tank 8', + 'Atari (Kee Games)', + 1976, + array['Tank 8 (set 1)'], + array['Arcade'], + '{"mame":["tank8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/tank8.cpp"]}'::jsonb + ), + ( + 'tank-battalion', + 'Tank Battalion', + 'Namco', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["tankbatt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/tankbatt.cpp"]}'::jsonb + ), + ( + 'tank-battle', + 'Tank Battle', + 'Microprose Games Inc.', + 1992, + array['Tank Battle (prototype rev. 4/21/92)'], + array['Arcade'], + '{"mame":["tankbatl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/micro3d.cpp"]}'::jsonb + ), + ( + 'tank-busters', + 'Tank Busters', + 'Valadon Automation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["tankbust"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["valadon/tankbust.cpp"]}'::jsonb + ), + ( + 'tank-force', + 'Tank Force', + 'Namco', + 1991, + array['Tank Force (US, 2 Players)'], + array['Arcade'], + '{"mame":["tankfrce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'tank-ii', + 'Tank II', + 'Atari/Kee', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["tankii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'tank-tank-cocktail', + 'Tank/Tank Cocktail', + 'Atari/Kee', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["tank"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'tankers', + 'Tankers', + 'Fun Games', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["tankers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/fungames.cpp"]}'::jsonb + ), + ( + 'tao-taido', + 'Tao Taido', + 'Video System Co.', + 1993, + array['Tao Taido (2 button version)'], + array['Arcade'], + '{"mame":["taotaido"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/taotaido.cpp"]}'::jsonb + ), + ( + 'tap-a-tune', + 'Tap a Tune', + 'Moloney Manufacturing Inc. / Creative Electronics and Software', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["tapatune"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tapatune.cpp"]}'::jsonb + ), + ( + 'tapper-budweiser-1-27-84', + 'Tapper (Budweiser, 1/27/84)', + 'Bally Midway', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["tapper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'targ', + 'Targ', + 'Exidy', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["targ"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'target-ball-96', + 'Target Ball ''96', + 'Yun Sung', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["tgtbal96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'target-hits', + 'Target Hits', + 'Gaelco', + 1994, + array['Target Hits (ver 1.1, checksum 5152)'], + array['Arcade'], + '{"mame":["targeth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/targeth.cpp"]}'::jsonb + ), + ( + 'target-panic', + 'Target Panic', + 'Konami', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["tgtpanic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tgtpanic.cpp"]}'::jsonb + ), + ( + 'tarzan-chuang-tian-guan', + 'Tarzan Chuang Tian Guan', + 'IGS', + 1999, + array['Tarzan Chuang Tian Guan (China, V109C, set 1)'], + array['Arcade'], + '{"mame":["tarzanc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'tarzan-chuang-tian-guan-2-jiaqiang-ban-v306cn', + 'Tarzan Chuang Tian Guan 2 Jiaqiang Ban (V306CN)', + 'IGS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["tct2p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'task-force-harrier', + 'Task Force Harrier', + 'UPL', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["tharrier"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'tatsunoko-vs-capcom-cross-generation-of-heroes', + 'Tatsunoko Vs Capcom : Cross Generation of Heroes', + 'Capcom', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["tvcapcom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/tvcapcom.cpp"]}'::jsonb + ), + ( + 'tattoo-assassins', + 'Tattoo Assassins', + 'Data East Pinball', + 1994, + array['Tattoo Assassins (US prototype, Mar 14 1995)'], + array['Arcade'], + '{"mame":["tattass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco32.cpp"]}'::jsonb + ), + ( + 'taxi-driver', + 'Taxi Driver', + 'Graphic Techno', + 1984, + '{}'::text[], + array['Racing'], + '{"mame":["taxidriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/taxidriv.cpp"]}'::jsonb + ), + ( + 'tazz-mania', + 'Tazz-Mania', + 'Stern Electronics', + 1982, + array['Tazz-Mania (set 1)'], + array['Arcade'], + '{"mame":["tazmania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'td-831', + 'TD 831', + 'Burroughs', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["td831"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["burroughs/td831.cpp"]}'::jsonb + ), + ( + 'tdv-2324', + 'TDV 2324', + 'Tandberg', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["tdv2324"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tandberg/tdv2324.cpp"]}'::jsonb + ), + ( + 'tdv-2115l', + 'TDV-2115L', + 'Tandberg', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["tdv2115l"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tandberg/tdv2115l.cpp"]}'::jsonb + ), + ( + 'team-hat-trick-11-16-84', + 'Team Hat Trick (11/16/84)', + 'Bally/Sente', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["teamht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'tec-1', + 'TEC-1', + 'Talking Electronics magazine', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["tec1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/tec1.cpp"]}'::jsonb + ), + ( + 'technical-bowling-j-971212-v1-000', + 'Technical Bowling (J 971212 V1.000)', + 'Sega', + 1997, + '{}'::text[], + array['Sports'], + '{"mame":["techbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'technigame-super-4-in-1-sports-pal', + 'Technigame Super 4-in-1 Sports (PAL)', + 'Technigame', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["techni4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'techno-drive', + 'Techno Drive', + 'Namco', + 1998, + array['Techno Drive (Japan, TH1/VER.B)'], + array['Arcade'], + '{"mame":["technodr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'tecmo-bowl', + 'Tecmo Bowl', + 'Tecmo', + 1987, + array['Tecmo Bowl (World, set 1)'], + array['Arcade'], + '{"mame":["tbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tbowl.cpp"]}'::jsonb + ), + ( + 'tecmo-bowl-playchoice-10', + 'Tecmo Bowl (PlayChoice-10)', + 'Tecmo (Nintendo of America license)', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_tbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'tecmo-world-cup-90', + 'Tecmo World Cup ''90', + 'Tecmo', + 1989, + array['Tecmo World Cup ''90 (World set 1)'], + array['Arcade'], + '{"mame":["twcup90"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/wc90.cpp"]}'::jsonb + ), + ( + 'tecmo-world-cup-94', + 'Tecmo World Cup ''94', + 'Tecmo', + 1994, + array['Tecmo World Cup ''94 (set 1)'], + array['Arcade'], + '{"mame":["twcup94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/gstriker.cpp"]}'::jsonb + ), + ( + 'tecmo-world-cup-98-juet-980410-v1-000', + 'Tecmo World Cup ''98 (JUET 980410 V1.000)', + 'Tecmo', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["twcup98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'tecmo-world-cup-mega-play', + 'Tecmo World Cup (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_twcup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'tecmo-world-soccer-96', + 'Tecmo World Soccer ''96', + 'Tecmo', + 1996, + '{}'::text[], + array['Sports'], + '{"mame":["twsoc96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'teddyboy-blues', + 'TeddyBoy Blues', + 'Sega', + 1985, + array['TeddyBoy Blues (315-5115, New Ver.)'], + array['Arcade'], + '{"mame":["teddybb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'tee-d-off', + 'Tee''d Off', + 'Tecmo', + 1987, + array['Tee''d Off (World)'], + array['Arcade'], + '{"mame":["teedoff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tehkanwc.cpp"]}'::jsonb + ), + ( + 'teenage-mutant-ninja-turtles', + 'Teenage Mutant Ninja Turtles', + 'Konami', + 1989, + array['Teenage Mutant Ninja Turtles (World 4 Players, version X)'], + array['Beat em up'], + '{"mame":["tmnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt.cpp"]}'::jsonb + ), + ( + 'teenage-mutant-ninja-turtles-mutant-warriors', + 'Teenage Mutant Ninja Turtles - Mutant Warriors', + 'bootleg', + 1997, + array['Teenage Mutant Ninja Turtles - Mutant Warriors (SNES bootleg)'], + array['Beat em up'], + '{"mame":["tmntmwb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'teenage-mutant-ninja-turtles-playchoice-10', + 'Teenage Mutant Ninja Turtles (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1989, + '{}'::text[], + array['Beat em up'], + '{"mame":["pc_tmnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'teenage-mutant-ninja-turtles-ii-the-arcade-game-playchoice-10', + 'Teenage Mutant Ninja Turtles II: The Arcade Game (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1990, + '{}'::text[], + array['Beat em up'], + '{"mame":["pc_tmnt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'teenage-mutant-ninja-turtles-turtles-in-time', + 'Teenage Mutant Ninja Turtles: Turtles in Time', + 'Konami', + 1991, + array['Teenage Mutant Ninja Turtles: Turtles in Time (4 Players ver UAA)'], + array['Beat em up'], + '{"mame":["tmnt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'teeter-torture', + 'Teeter Torture', + 'Exidy', + 1982, + array['Teeter Torture (prototype)'], + array['Arcade'], + '{"mame":["teetert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'tehkan-world-cup', + 'Tehkan World Cup', + 'Tehkan', + 1985, + array['Tehkan World Cup (set 1)'], + array['Arcade'], + '{"mame":["tehkanwc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tehkanwc.cpp"]}'::jsonb + ), + ( + 'teki-paki', + 'Teki Paki', + 'Toaplan', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["tekipaki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/tekipaki.cpp"]}'::jsonb + ), + ( + 'tekken', + 'Tekken', + 'Namco', + 1994, + array['Tekken (World, TE2/VER.C)'], + array['Fighting'], + '{"mame":["tekken"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'tekken-2-ver-b', + 'Tekken 2 Ver.B', + 'Namco', + 1996, + array['Tekken 2 Ver.B (World, TES2/VER.D)'], + array['Fighting'], + '{"mame":["tekken2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'tekken-3', + 'Tekken 3', + 'Namco', + 1997, + array['Tekken 3 (World, TET2/VER.E1)'], + array['Fighting'], + '{"mame":["tekken3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'tekken-4', + 'Tekken 4', + 'Namco', + 2001, + array['Tekken 4 (TEF3 Ver. C)'], + array['Fighting'], + '{"mame":["tekken4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'tekken-5-dark-resurrection', + 'Tekken 5 Dark Resurrection', + 'Namco', + 2005, + array['Tekken 5 Dark Resurrection (TED1 Ver. A)'], + array['Fighting'], + '{"mame":["tekken5d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'tekken-5-1', + 'Tekken 5.1', + 'Namco', + 2005, + array['Tekken 5.1 (TE51 Ver. B)'], + array['Fighting'], + '{"mame":["tekken51"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'tekken-battle-scratch', + 'Tekken Battle Scratch', + 'Namco', + 1998, + '{}'::text[], + array['Fighting'], + '{"mame":["tekkenbs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'tekken-card-world', + 'Tekken Card World', + 'Namco', + 1997, + '{}'::text[], + array['Fighting'], + '{"mame":["tekkencw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'tekken-tag-tournament', + 'Tekken Tag Tournament', + 'Namco', + 1999, + array['Tekken Tag Tournament (World, TEG2/VER.C1, set 1)'], + array['Fighting'], + '{"mame":["tektagt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'tel-jan', + 'Tel Jan', + 'Electro Design', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["teljan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'telepachi-fever-lion-v1-0', + 'TelePachi Fever Lion (V1.0)', + 'Sunsoft', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["telpacfl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'televideo-955', + 'TeleVideo 955', + 'TeleVideo Systems', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["tv955"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/tv955.cpp"]}'::jsonb + ), + ( + 'televideo-965', + 'TeleVideo 965', + 'TeleVideo Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["tv965"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/tv965.cpp"]}'::jsonb + ), + ( + 'televideo-990', + 'TeleVideo 990', + 'TeleVideo', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["tv990"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/tv990.cpp"]}'::jsonb + ), + ( + 'televideo-995-65', + 'TeleVideo 995-65', + 'TeleVideo', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["tv995"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/tv990.cpp"]}'::jsonb + ), + ( + 'televideo-model-910', + 'TeleVideo Model 910', + 'TeleVideo Systems', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["tv910"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/tv910.cpp"]}'::jsonb + ), + ( + 'telmac-1800', + 'Telmac 1800', + 'Telercas Oy', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["tmc1800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["telercas/tmc1800.cpp"]}'::jsonb + ), + ( + 'telmac-2000', + 'Telmac 2000', + 'Telercas Oy', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["tmc2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["telercas/tmc1800.cpp"]}'::jsonb + ), + ( + 'telmac-2000e', + 'Telmac 2000E', + 'Telercas Oy', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["tmc2000e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["telercas/tmc2000e.cpp"]}'::jsonb + ), + ( + 'telmac-tmc-600-sarja-ii', + 'Telmac TMC-600 (Sarja II)', + 'Telercas Oy', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["tmc600s2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["telercas/tmc600.cpp"]}'::jsonb + ), + ( + 'tempest', + 'Tempest', + 'Atari', + 1980, + array['Tempest (rev 3, Revised Hardware)'], + array['Classic'], + '{"mame":["tempest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/tempest.cpp"]}'::jsonb + ), + ( + 'ten-spot', + 'Ten Spot', + 'Thomas Automatics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["tenspot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'tenchi-wo-kurau-ii-sekiheki-no-tatakai', + 'Tenchi wo Kurau II: Sekiheki no Tatakai', + 'Capcom', + 1994, + array['Tenchi wo Kurau II: Sekiheki no Tatakai (CPS Changer, Japan 921031)'], + array['Arcade'], + '{"mame":["wofch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'tengai', + 'Tengai', + 'Psikyo', + 1996, + array['Tengai (World)'], + array['Arcade'], + '{"mame":["tengai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo.cpp"]}'::jsonb + ), + ( + 'tenkomori-shooting', + 'Tenkomori Shooting', + 'Namco', + 1998, + array['Tenkomori Shooting (World, TKM2/VER.A1)'], + array['Arcade'], + '{"mame":["tenkomor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'tennis-playchoice-10', + 'Tennis (PlayChoice-10)', + 'Nintendo', + 1983, + '{}'::text[], + array['Sports'], + '{"mame":["pc_tenis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'tenth-degree', + 'Tenth Degree', + 'Atari Games', + 1998, + array['Tenth Degree (prototype)'], + array['Arcade'], + '{"mame":["tenthdeg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'teraburst', + 'Teraburst', + 'Konami', + 1998, + array['Teraburst (1998/07/17 ver UEL)'], + array['Arcade'], + '{"mame":["terabrst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hornet.cpp"]}'::jsonb + ), + ( + 'terebi-denwa-doraemon', + 'Terebi Denwa Doraemon', + 'Banpresto', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["tvdenwad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/banprestoms.cpp"]}'::jsonb + ), + ( + 'terebi-denwa-super-mario-world', + 'Terebi Denwa Super Mario World', + 'Banpresto', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["tvdenwam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/banprestoms.cpp"]}'::jsonb + ), + ( + 'terebi-denwa-thomas-the-tank-engine-and-friends', + 'Terebi Denwa Thomas the Tank Engine and Friends', + 'Banpresto', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["tvdenwat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/banprestoms.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.013.sql b/supabase/seed-data/mame-game-catalog.generated.013.sql new file mode 100644 index 0000000..efffc8e --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.013.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'terminator-2-judgment-day', + 'Terminator 2 - Judgment Day', + 'Midway', + 1991, + array['Terminator 2 - Judgment Day (rev LA4 08/03/92)'], + array['Light gun'], + '{"mame":["term2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'terra-cresta', + 'Terra Cresta', + 'Nichibutsu', + 1985, + array['Terra Cresta (YM3526 set 1)'], + array['Arcade'], + '{"mame":["terracre"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/terracre.cpp"]}'::jsonb + ), + ( + 'terra-force', + 'Terra Force', + 'Nichibutsu', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["terraf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/armedf.cpp"]}'::jsonb + ), + ( + 'terranean', + 'Terranean', + 'Data East Corporation', + 1981, + array['Terranean (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cterrani"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'test-console-serial-5', + 'Test Console Serial #5', + 'Westinghouse', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["whousetc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["westinghouse/testconsole.cpp"]}'::jsonb + ), + ( + 'test-tape', + 'Test Tape', + 'Data East Corporation', + 1981, + array['Test Tape (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["ctsttape"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'tetris', + 'Tetris', + 'Atari Games', + 1988, + array['Tetris (set 1)', 'Tetris (Japan, System E)', 'Tetris (D.R. Korea, set 1, encrypted)'], + array['Puzzle'], + '{"mame":["atetris","tetrisse","tetrsark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atetris.cpp","sega/segae.cpp","taito/arkanoid.cpp"]}'::jsonb + ), + ( + 'tetris-fd1094-317-0093', + 'Tetris (FD1094 317-0093)', + 'Sega', + 1988, + array['Tetris (set 4, Japan, System 16A) (FD1094 317-0093)'], + array['Puzzle'], + '{"mame":["tetris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'tetris-mega-tech', + 'Tetris (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Puzzle'], + '{"mame":["mt_tetri"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'tetris-photon-system', + 'Tetris (Photon System)', + '', + null, + '{}'::text[], + array['Puzzle'], + '{"mame":["phtetris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/photon.cpp"]}'::jsonb + ), + ( + 'tetris-bloxeed-isg-selection-master-type-2006', + 'Tetris / Bloxeed (ISG Selection Master Type 2006)', + 'bootleg (ISG)', + 2006, + array['Tetris / Bloxeed (Korean System 16 bootleg) (ISG Selection Master Type 2006)'], + array['Puzzle'], + '{"mame":["tetrbx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b_isgsm.cpp"]}'::jsonb + ), + ( + 'tetris-cherry-master', + 'Tetris + Cherry Master', + '', + null, + array['Tetris + Cherry Master (Corsica, v8.01, unencrypted, set 1)'], + array['Puzzle'], + '{"mame":["cmtetris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'tetris-arcade-in-a-tin', + 'Tetris Arcade in a Tin', + 'Fizz Creations', + 2021, + '{}'::text[], + array['Puzzle'], + '{"mame":["tetrtin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'tetris-giant-tetris-dekaris', + 'Tetris Giant / Tetris Dekaris', + 'Sega', + 2009, + array['Tetris Giant / Tetris Dekaris (Ver.2.000)'], + array['Puzzle'], + '{"mame":["tetgiant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'tetris-kiwamemichi-gdl-0020', + 'Tetris Kiwamemichi (GDL-0020)', + 'Success', + 2004, + array['Tetris Kiwamemichi (Japan) (GDL-0020)'], + array['Puzzle'], + '{"mame":["tetkiwam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'tetris-plus', + 'Tetris Plus', + 'Jaleco / BPS', + 1995, + array['Tetris Plus (ver 1.0)'], + array['Puzzle'], + '{"mame":["tetrisp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'tetris-plus-2', + 'Tetris Plus 2', + 'Jaleco / The Tetris Company', + 1997, + array['Tetris Plus 2 (World, V2.8)'], + array['Puzzle'], + '{"mame":["tetrisp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'tetris-the-absolute-the-grand-master-2', + 'Tetris: The Absolute - The Grand Master 2', + 'Arika', + 2000, + '{}'::text[], + array['Puzzle'], + '{"mame":["tgm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'texas-holdem', + 'Texas Holdem', + 'IGS', + null, + array['Texas Holdem (V015US)'], + array['Arcade'], + '{"mame":["texashld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'texas-reels', + 'Texas Reels', + 'Cadillac Jack', + 1998, + array['Texas Reels (Ver. 2.00)'], + array['Arcade'], + '{"mame":["texasrls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'tg100', + 'TG100', + 'Yamaha', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["tg100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/tg100.cpp"]}'::jsonb + ), + ( + 'th-strikes-back', + 'TH Strikes Back', + 'Gaelco', + 1994, + array['TH Strikes Back (non North America, version 1.0, checksum 020EB356)'], + array['Arcade'], + '{"mame":["thoop2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/thoop2.cpp"]}'::jsonb + ), + ( + 'thayer-s-quest', + 'Thayer''s Quest', + 'RDI Video Systems', + 1984, + array['Thayer''s Quest (set 1)'], + array['Arcade'], + '{"mame":["thayers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/thayers.cpp"]}'::jsonb + ), + ( + 'the-addams-family-nintendo-super-system', + 'The Addams Family (Nintendo Super System)', + 'Ocean', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_adam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'the-adventures-of-robby-roto', + 'The Adventures of Robby Roto!', + 'Dave Nutting Associates / Bally Midway', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["robby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'the-aladdin-v1-2u', + 'The Aladdin (V1.2U)', + 'Dyna', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["aladdin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'the-alphax-z', + 'The Alphax Z', + 'Ed Co., Ltd. (Wood Place Co., Ltd. license)', + 1986, + array['The Alphax Z (Japan)'], + array['Arcade'], + '{"mame":["alphaxz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tsamurai.cpp"]}'::jsonb + ), + ( + 'the-amazing-adventures-of-mr-f-lea', + 'The Amazing Adventures of Mr. F. Lea', + 'Pacific Novelty', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mrflea"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacific/mrflea.cpp"]}'::jsonb + ), + ( + 'the-astyanax', + 'The Astyanax', + 'Jaleco', + 1989, + array['The Astyanax (EPROM version)'], + array['Arcade'], + '{"mame":["astyanax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'the-battle-of-yu-yu-hakusho-shitou-ankoku-bujutsukai', + 'The Battle of Yu Yu Hakusho: Shitou! Ankoku Bujutsukai!', + 'Banpresto', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["yuyuhaku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'the-battle-road', + 'The Battle-Road', + 'Irem', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["battroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'the-berenstain-bears-in-bigpaw-s-cave', + 'The Berenstain Bears in Bigpaw''s Cave', + 'Enter-Tech, Ltd.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["berenstn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tugboat.cpp"]}'::jsonb + ), + ( + 'the-berlin-wall', + 'The Berlin Wall', + 'Kaneko', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["berlwall"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'the-big-apple-2131-13-u5-0', + 'The Big Apple (2131-13, U5-0)', + 'Big Apple Games / Merit', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["bigappg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'the-big-joke', + 'The Big Joke', + 'Grayhound Electronics', + 1987, + array['The Big Joke (Version 0.00)'], + array['Arcade'], + '{"mame":["bigjoke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'the-big-pro-wrestling', + 'The Big Pro Wrestling!', + 'Technos Japan', + 1983, + array['The Big Pro Wrestling! (set 1)'], + array['Arcade'], + '{"mame":["bigprowr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/tagteam.cpp"]}'::jsonb + ), + ( + 'the-boat', + 'The Boat', + 'Hit Gun Co, LTD', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["theboat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tvg01.cpp"]}'::jsonb + ), + ( + 'the-bounty', + 'The Bounty', + 'Orca', + 1982, + array['The Bounty (set 1)'], + array['Arcade'], + '{"mame":["bounty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/zodiack.cpp"]}'::jsonb + ), + ( + 'the-burning-cavern-31-03-87', + 'The Burning Cavern (31/03/87)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_burn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'the-castle', + 'The Castle', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["thecastle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/smd2144c.cpp"]}'::jsonb + ), + ( + 'the-classic-model-6079', + 'The Classic (model 6079)', + 'Fidelity International', + 1986, + '{}'::text[], + array['Classic'], + '{"mame":["classic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc6.cpp"]}'::jsonb + ), + ( + 'the-cliffhanger-edward-randy', + 'The Cliffhanger - Edward Randy', + 'Data East Corporation', + 1990, + array['The Cliffhanger - Edward Randy (World ver 3)'], + array['Arcade'], + '{"mame":["edrandy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cninja.cpp"]}'::jsonb + ), + ( + 'the-combatribes', + 'The Combatribes', + 'Technos Japan', + 1990, + array['The Combatribes (US, rev 2, set 1)'], + array['Arcade'], + '{"mame":["ctribe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon3.cpp"]}'::jsonb + ), + ( + 'the-crystal-of-kings', + 'The Crystal of Kings', + 'BrezzaSoft', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["crysking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'the-dealer', + 'The Dealer', + 'Epos Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dealer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'the-dealer-acl', + 'The Dealer (ACL)', + 'ACL Manufacturing', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["dealracl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/kingpin.cpp"]}'::jsonb + ), + ( + 'the-dealer-visco', + 'The Dealer (Visco)', + 'Visco Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["thedealr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/thedealr.cpp"]}'::jsonb + ), + ( + 'the-deep', + 'The Deep', + 'Woodplace Inc.', + 1987, + array['The Deep (Japan)'], + array['Arcade'], + '{"mame":["thedeep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/thedeep.cpp"]}'::jsonb + ), + ( + 'the-destroyer-from-jail', + 'The Destroyer From Jail', + 'Philko', + 1991, + array['The Destroyer From Jail (Korea)'], + array['Arcade'], + '{"mame":["dfjail"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'the-double-dynamites', + 'The Double Dynamites', + 'Seibu Kaihatsu', + 1989, + array['The Double Dynamites (Japan, 13NOV89)'], + array['Arcade'], + '{"mame":["dbldynj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/dynduke.cpp"]}'::jsonb + ), + ( + 'the-drink', + 'The Drink', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["thedrink"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'the-electric-yo-yo', + 'The Electric Yo-Yo', + 'Taito America Corporation', + 1982, + array['The Electric Yo-Yo (rev 1)'], + array['Arcade'], + '{"mame":["elecyoyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'the-empire-strikes-back', + 'The Empire Strikes Back', + 'Atari Games', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["esb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/starwars.cpp"]}'::jsonb + ), + ( + 'the-end', + 'The End', + 'Konami', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["theend"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'the-euro-game', + 'The Euro Game', + 'Novotech', + null, + array['The Euro Game (set 1)'], + array['Arcade'], + '{"mame":["eurogame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'the-excellence-model-6080b', + 'The Excellence (model 6080B)', + 'Fidelity International', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["fexcel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/excel.cpp"]}'::jsonb + ), + ( + 'the-fairyland-story', + 'The FairyLand Story', + 'Taito', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["flstory"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/flstory.cpp"]}'::jsonb + ), + ( + 'the-fallen-angels-daraku-tenshi-the-fallen-angels', + 'The Fallen Angels / Daraku Tenshi: The Fallen Angels', + 'Psikyo', + 1998, + array['The Fallen Angels (World) / Daraku Tenshi: The Fallen Angels (Japan)'], + array['Arcade'], + '{"mame":["daraku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'the-fast-and-the-furious-v3-06', + 'The Fast And The Furious (v3.06)', + 'Raw Thrills', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["fnf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/rawthrillspc.cpp"]}'::jsonb + ), + ( + 'the-final-round', + 'The Final Round', + 'Konami', + 1988, + array['The Final Round (version M)'], + array['Arcade'], + '{"mame":["fround"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twin16.cpp"]}'::jsonb + ), + ( + 'the-first-funky-fighter', + 'The First Funky Fighter', + 'Nakanihon / East Technology (Taito license)', + 1993, + array['The First Funky Fighter (USA, Canada, Mexico / Japan, set 1)'], + array['Arcade'], + '{"mame":["funkyfig"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'the-game-paradise-master-of-shooting-game-tengoku-the-game-paradise', + 'The Game Paradise - Master of Shooting! / Game Tengoku - The Game Paradise', + 'Jaleco', + 1995, + array['The Game Paradise - Master of Shooting! / Game Tengoku - The Game Paradise (ver 1.0)'], + array['Arcade'], + '{"mame":["gametngk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'the-gladiator-shen-jian-fu-mo-lu-shen-jian-fengyun-m68k-label-v101-arm-label-v107-rom-06-0', + 'The Gladiator / Shen Jian Fu Mo Lu / Shen Jian Fengyun (M68k label V101) (ARM label V107, ROM 06/06/03 SHEN JIAN V107)', + 'IGS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["theglad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'the-goonies-playchoice-10', + 'The Goonies (PlayChoice-10)', + 'Konami', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_goons"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'the-grid', + 'The Grid', + 'Midway', + 2000, + array['The Grid (version 1.2)'], + array['Arcade'], + '{"mame":["thegrid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midzeus.cpp"]}'::jsonb + ), + ( + 'the-hand', + 'The Hand', + 'T.I.C.', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["thehand"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gametron/gotya.cpp"]}'::jsonb + ), + ( + 'the-hardware-chiptune-project', + 'The Hardware Chiptune Project', + 'Linus Åkesson / kryo', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["hwchiptn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/lft_chiptune.cpp"]}'::jsonb + ), + ( + 'the-hermit', + 'The Hermit', + 'Dugamex', + 1995, + array['The Hermit (Ver. 1.14)'], + array['Arcade'], + '{"mame":["hermit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'the-history-of-martial-arts', + 'The History of Martial Arts', + 'bootleg', + null, + array['The History of Martial Arts (set 1)'], + array['Arcade'], + '{"mame":["histryma"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nix/fitfight.cpp"]}'::jsonb + ), + ( + 'the-house-of-the-dead', + 'The House of the Dead', + 'Sega', + 1997, + array['The House of the Dead (Revision A)'], + array['Light gun'], + '{"mame":["hotd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'the-house-of-the-dead-2', + 'The House of the Dead 2', + 'Sega', + 1998, + array['The House of the Dead 2 (USA)'], + array['Light gun'], + '{"mame":["hotd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'the-house-of-the-dead-4-export', + 'The House of the Dead 4 (Export)', + 'Sega', + 2005, + array['The House of the Dead 4 (Export) (Rev B)'], + array['Light gun'], + '{"mame":["hotd4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'the-house-of-the-dead-ex', + 'The House of the Dead EX', + 'Sega', + 2008, + array['The House of the Dead EX (Japan)'], + array['Light gun'], + '{"mame":["hotdex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'the-house-of-the-dead-iii-gdx-0001', + 'The House of the Dead III (GDX-0001)', + 'Sega / Wow Entertainment', + 2002, + '{}'::text[], + array['Light gun'], + '{"mame":["hotd3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'the-invaders', + 'The Invaders', + 'Zaccaria / Zelco', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tinv2650"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/zac1b1120.cpp"]}'::jsonb + ), + ( + 'the-irritating-maze-ultra-denryu-iraira-bou', + 'The Irritating Maze / Ultra Denryu Iraira Bou', + 'SNK / Saurus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["irrmaze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-karate-tournament', + 'The Karate Tournament', + 'Mitchell', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["karatour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'the-keisatsukan-shinjuku-24-ji', + 'The Keisatsukan: Shinjuku 24-ji', + 'Konami', + 2000, + array['The Keisatsukan: Shinjuku 24-ji (ver AAE)'], + array['Arcade'], + '{"mame":["p911"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-the-wizard-master-gdt-0005g', + 'The Key Of Avalon - The Wizard Master (GDT-0005G)', + 'Sega / Hitmaker', + 2003, + array['The Key Of Avalon - The Wizard Master (server, Rev G) (GDT-0005G)'], + array['Arcade'], + '{"mame":["avalons"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-the-wizard-master-gdt-0006g', + 'The Key Of Avalon - The Wizard Master (GDT-0006G)', + 'Sega / Hitmaker', + 2003, + array['The Key Of Avalon - The Wizard Master (client, Rev G) (GDT-0006G)'], + array['Arcade'], + '{"mame":["avalonc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-1-3-chaotic-sabbat-gdt-0009c', + 'The Key Of Avalon 1.3 - Chaotic Sabbat (GDT-0009C)', + 'Sega / Hitmaker', + 2004, + array['The Key Of Avalon 1.3 - Chaotic Sabbat (server, Rev C) (GDT-0009C)'], + array['Arcade'], + '{"mame":["avalns13"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-1-3-chaotic-sabbat-gdt-0010c', + 'The Key Of Avalon 1.3 - Chaotic Sabbat (GDT-0010C)', + 'Sega / Hitmaker', + 2004, + array['The Key Of Avalon 1.3 - Chaotic Sabbat (client, Rev C) (GDT-0010C)'], + array['Arcade'], + '{"mame":["avalnc13"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-2-0-eutaxy-and-commandment-gdt-0017b', + 'The Key Of Avalon 2.0 - Eutaxy and Commandment (GDT-0017B)', + 'Sega / Hitmaker', + 2004, + array['The Key Of Avalon 2.0 - Eutaxy and Commandment (client, Rev B) (GDT-0017B)'], + array['Arcade'], + '{"mame":["avalon20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-2-5-war-of-the-key-gdt-0018b', + 'The Key Of Avalon 2.5 - War of the Key (GDT-0018B)', + 'Sega / Hitmaker', + 2005, + array['The Key Of Avalon 2.5 - War of the Key (server, Rev B) (GDT-0018B)'], + array['Arcade'], + '{"mame":["avalns25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-2-5-war-of-the-key-gdt-0019b', + 'The Key Of Avalon 2.5 - War of the Key (GDT-0019B)', + 'Sega / Hitmaker', + 2005, + array['The Key Of Avalon 2.5 - War of the Key (client, Rev B) (GDT-0019B)'], + array['Arcade'], + '{"mame":["avalnc25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-killing-blade-ao-jian-kuang-dao', + 'The Killing Blade / Ao Jian Kuang Dao', + 'IGS', + 1998, + array['The Killing Blade / Ao Jian Kuang Dao (ver. 109, Chinese Board)'], + array['Arcade'], + '{"mame":["killbld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'the-killing-blade-plus-ao-jian-kuang-dao-jiaqiang-ban', + 'The Killing Blade Plus / Ao Jian Kuang Dao Jiaqiang Ban', + 'IGS', + 2005, + array['The Killing Blade Plus / Ao Jian Kuang Dao Jiaqiang Ban (China, ver. 300)'], + array['Arcade'], + '{"mame":["killbldp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'the-king-of-dragons', + 'The King of Dragons', + 'Capcom', + 1991, + array['The King of Dragons (World 910805)'], + array['Arcade'], + '{"mame":["kod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-fuchou-zhi-lu-road-to-revenge-the-king-of-fighters-2002-unlimited-mat', + 'The King of Fighters - Fuchou Zhi Lu/Road to Revenge / The King of Fighters 2002 Unlimited Match', + 'SNK Playmore / New Channel', + 2009, + array['The King of Fighters - Fuchou Zhi Lu/Road to Revenge / The King of Fighters 2002 Unlimited Match (China)'], + array['Fighting'], + '{"mame":["kof2002um"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/y2.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-94-ngm-055-ngh-055', + 'The King of Fighters ''94 (NGM-055 ~ NGH-055)', + 'SNK', + 1994, + '{}'::text[], + array['Fighting'], + '{"mame":["kof94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-95-ngm-084', + 'The King of Fighters ''95 (NGM-084)', + 'SNK', + 1995, + '{}'::text[], + array['Fighting'], + '{"mame":["kof95"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-96-ngm-214', + 'The King of Fighters ''96 (NGM-214)', + 'SNK', + 1996, + '{}'::text[], + array['Fighting'], + '{"mame":["kof96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-97-ngm-2320', + 'The King of Fighters ''97 (NGM-2320)', + 'SNK', + 1997, + '{}'::text[], + array['Fighting'], + '{"mame":["kof97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-98-the-slugfest-king-of-fighters-98-dream-match-never-ends-ngm-2420', + 'The King of Fighters ''98 - The Slugfest / King of Fighters ''98 - Dream Match Never Ends (NGM-2420)', + 'SNK', + 1998, + '{}'::text[], + array['Fighting'], + '{"mame":["kof98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-98-ultimate-match-v1-00', + 'The King of Fighters ''98: Ultimate Match (v1.00)', + 'SNK', + 2008, + '{}'::text[], + array['Fighting'], + '{"mame":["kof98um"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-98-ultimate-match-hero', + 'The King of Fighters ''98: Ultimate Match HERO', + 'IGS / SNK Playmore / New Channel', + 2009, + array['The King of Fighters ''98: Ultimate Match HERO (China, V100, 09-08-23)'], + array['Fighting'], + '{"mame":["kof98umh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm2.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-99-millennium-battle-ngm-2510', + 'The King of Fighters ''99 - Millennium Battle (NGM-2510)', + 'SNK', + 1999, + '{}'::text[], + array['Fighting'], + '{"mame":["kof99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-2000-ngm-2570-ngh-2570', + 'The King of Fighters 2000 (NGM-2570 ~ NGH-2570)', + 'SNK', + 2000, + '{}'::text[], + array['Fighting'], + '{"mame":["kof2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-2001-ngm-262', + 'The King of Fighters 2001 (NGM-262?)', + 'Eolith / SNK', + 2001, + '{}'::text[], + array['Fighting'], + '{"mame":["kof2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-2002-ngm-2650-ngh-2650', + 'The King of Fighters 2002 (NGM-2650 ~ NGH-2650)', + 'Eolith / Playmore', + 2002, + '{}'::text[], + array['Fighting'], + '{"mame":["kof2002"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-2003', + 'The King of Fighters 2003', + 'SNK Playmore', + 2003, + array['The King of Fighters 2003 (Japan, JAMMA PCB)'], + array['Fighting'], + '{"mame":["kf2k3pcb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neopcb.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-2003-ngm-2710-export', + 'The King of Fighters 2003 (NGM-2710, Export)', + 'SNK Playmore', + 2003, + '{}'::text[], + array['Fighting'], + '{"mame":["kof2003"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-neowave', + 'The King of Fighters Neowave', + 'Sammy / SNK Playmore', + 2004, + '{}'::text[], + array['Fighting'], + '{"mame":["kofnw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-xi', + 'The King of Fighters XI', + 'Sammy / SNK Playmore', + 2005, + '{}'::text[], + array['Fighting'], + '{"mame":["kofxi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-xii-v1-00', + 'The King of Fighters XII (v1.00)', + 'SNK Playmore', + 2009, + '{}'::text[], + array['Fighting'], + '{"mame":["kofxii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'the-king-of-route-66', + 'The King of Route 66', + 'Sega', + 2002, + array['The King of Route 66 (Rev A)'], + array['Arcade'], + '{"mame":["kingrt66"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'the-koukou-yakyuu', + 'The Koukou Yakyuu', + 'Alpha Denshi Co.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["kouyakyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/equites.cpp"]}'::jsonb + ), + ( + 'the-last-apostle-puppetshow', + 'The Last Apostle Puppetshow', + 'Home Data', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["lastapos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/homedata.cpp"]}'::jsonb + ), + ( + 'the-last-blade-bakumatsu-roman-gekka-no-kenshi-ngm-2340', + 'The Last Blade / Bakumatsu Roman - Gekka no Kenshi (NGM-2340)', + 'SNK', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["lastblad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-last-blade-2-bakumatsu-roman-dai-ni-maku-gekka-no-kenshi-ngm-2430-ngh-2430', + 'The Last Blade 2 / Bakumatsu Roman - Dai Ni Maku Gekka no Kenshi (NGM-2430 ~ NGH-2430)', + 'SNK', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["lastbld2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-last-bounty-hunter-v1-01', + 'The Last Bounty Hunter (v1.01)', + 'American Laser Games', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["lastbh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'the-last-day', + 'The Last Day', + 'Dooyong', + 1990, + array['The Last Day (set 1)'], + array['Arcade'], + '{"mame":["lastday"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'the-last-starfighter', + 'The Last Starfighter', + 'Atari Games', + 1984, + array['The Last Starfighter (prototype)'], + array['Arcade'], + '{"mame":["laststar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy4.cpp"]}'::jsonb + ), + ( + 'the-legend-of-kage', + 'The Legend of Kage', + 'Taito Corporation', + 1984, + array['The Legend of Kage (rev 2)'], + array['Arcade'], + '{"mame":["lkage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/lkage.cpp"]}'::jsonb + ), + ( + 'the-legend-of-silkroad', + 'The Legend of Silkroad', + 'Unico', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["silkroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/silkroad.cpp"]}'::jsonb + ), + ( + 'the-lost-castle-in-darkmist', + 'The Lost Castle In Darkmist', + 'Seibu Kaihatsu (Taito license)', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["darkmist"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/darkmist.cpp"]}'::jsonb + ), + ( + 'the-lost-world-jurassic-park', + 'The Lost World: Jurassic Park', + 'Sega', + 1997, + array['The Lost World: Jurassic Park (Revision A)'], + array['Light gun'], + '{"mame":["lostwsga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'the-mah-jong', + 'The Mah-jong', + 'Visco', + 1987, + array['The Mah-jong (Japan, set 1)'], + array['Arcade'], + '{"mame":["themj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/rmhaihai.cpp"]}'::jsonb + ), + ( + 'the-main-event', + 'The Main Event', + 'Konami', + 1988, + array['The Main Event (4 Players ver. Y)'], + array['Arcade'], + '{"mame":["mainevt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mainevt.cpp"]}'::jsonb + ), + ( + 'the-masters-of-kin', + 'The Masters of Kin', + 'Du Tech', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mastkin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/trackfld.cpp"]}'::jsonb + ), + ( + 'the-maze-of-the-kings-gds-0022', + 'The Maze of the Kings (GDS-0022)', + 'Sega', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["mok"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'the-monster-show', + 'The Monster Show', + 'Konami', + null, + array['The Monster Show (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["monshow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'the-nanpa', + 'The Nanpa', + 'Nichibutsu/Love Factory/eic', + 1999, + array['The Nanpa (Japan)'], + array['Arcade'], + '{"mame":["thenanpa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'the-new-york-times-sudoku', + 'The New York Times Sudoku', + 'Excalibur Electronics / Nice Code', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["nytsudo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'the-newzealand-story-p0-043a-pcb', + 'The NewZealand Story (P0-043A PCB)', + 'Taito Corporation Japan', + 1988, + array['The NewZealand Story (World, new version) (P0-043A PCB)'], + array['Arcade'], + '{"mame":["tnzs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'the-next-space', + 'The Next Space', + 'SNK', + 1989, + array['The Next Space (set 1)'], + array['Arcade'], + '{"mame":["tnextspc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k_i.cpp"]}'::jsonb + ), + ( + 'the-ninja-kids', + 'The Ninja Kids', + 'Taito Corporation Japan', + 1990, + array['The Ninja Kids (World)'], + array['Arcade'], + '{"mame":["ninjak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'the-ninja-warriors', + 'The Ninja Warriors', + 'Taito Corporation Japan', + 1987, + array['The Ninja Warriors (World, later version)'], + array['Arcade'], + '{"mame":["ninjaw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/ninjaw.cpp"]}'::jsonb + ), + ( + 'the-ocean-hunter', + 'The Ocean Hunter', + 'Sega', + 1998, + array['The Ocean Hunter (Revision A)'], + array['Arcade'], + '{"mame":["oceanhun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'the-oregon-trail', + 'The Oregon Trail', + 'Basic Fun', + 2017, + '{}'::text[], + array['Arcade'], + '{"mame":["otrail"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'the-outfoxies', + 'The Outfoxies', + 'Namco', + 1994, + array['The Outfoxies (World, OU2)'], + array['Arcade'], + '{"mame":["outfxies"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'the-par-excellence', + 'The Par Excellence', + 'Fidelity International', + 1986, + array['The Par Excellence (set 1)'], + array['Arcade'], + '{"mame":["fexcelp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/excel.cpp"]}'::jsonb + ), + ( + 'the-percussor', + 'The Percussor', + 'Orca', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["percuss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/zodiack.cpp"]}'::jsonb + ), + ( + 'the-pirates-of-dark-water', + 'The Pirates of Dark Water', + 'bootleg (Conny)', + 1996, + array['The Pirates of Dark Water (SNES bootleg)'], + array['Arcade'], + '{"mame":["piratdwb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'the-pit', + 'The Pit', + 'Zilec Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["thepit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'the-pit-boss-2214-07-u5-0a', + 'The Pit Boss (2214-07, U5-0A)', + 'Merit', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pitboss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'the-punisher', + 'The Punisher', + 'Capcom', + 1993, + array['The Punisher (World 930422)'], + array['Arcade'], + '{"mame":["punisher"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'the-quest', + 'The Quest', + 'Konami', + 1997, + array['The Quest (NSW, Australia)'], + array['Arcade'], + '{"mame":["thequest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'the-real-broadway-9131-20-00-r0c', + 'The Real Broadway (9131-20-00 R0C)', + 'Merit', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["realbrod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'the-real-ghostbusters', + 'The Real Ghostbusters', + 'Data East USA', + 1987, + array['The Real Ghostbusters (US 2 Players, revision 2)'], + array['Arcade'], + '{"mame":["ghostb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'the-return-of-ishtar', + 'The Return of Ishtar', + 'Namco', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["roishtar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos86.cpp"]}'::jsonb + ), + ( + 'the-return-of-lady-frog', + 'The Return of Lady Frog', + 'Microhard', + 1993, + array['The Return of Lady Frog (set 1)'], + array['Arcade'], + '{"mame":["roldfrog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/splash.cpp"]}'::jsonb + ), + ( + 'the-revenge-of-shinobi-mega-tech', + 'The Revenge of Shinobi (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_revsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'the-roulette-visco', + 'The Roulette (Visco)', + 'Visco', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["setaroul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'the-round-up', + 'The Round Up', + 'Merit', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mroundup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'the-rumble-fish', + 'The Rumble Fish', + 'Sammy / Dimps', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["rumblef"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'the-rumble-fish-2', + 'The Rumble Fish 2', + 'Sammy / Dimps', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["rumblef2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'the-simpsons', + 'The Simpsons', + 'Konami', + 1991, + array['The Simpsons (4 Players World, set 1)'], + array['Beat em up'], + '{"mame":["simpsons"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/simpsons.cpp"]}'::jsonb + ), + ( + 'the-simpsons-bowling-gq829-uaa', + 'The Simpsons Bowling (GQ829 UAA)', + 'Konami', + 2000, + '{}'::text[], + array['Sports', 'Beat em up'], + '{"mame":["simpbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'the-speed-rumbler', + 'The Speed Rumbler', + 'Capcom', + 1986, + array['The Speed Rumbler (set 1)'], + array['Arcade'], + '{"mame":["srumbler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/srumbler.cpp"]}'::jsonb + ), + ( + 'the-super-spy-ngm-011-ngh-011', + 'The Super Spy (NGM-011 ~ NGH-011)', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["superspy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-three-stooges-in-brides-is-brides', + 'The Three Stooges In Brides Is Brides', + 'Mylstar', + 1984, + array['The Three Stooges In Brides Is Brides (set 1)'], + array['Arcade'], + '{"mame":["3stooges"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'the-tin-star', + 'The Tin Star', + 'Taito Corporation', + 1983, + array['The Tin Star (A10, 4 PCB version)'], + array['Arcade'], + '{"mame":["tinstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'the-tower', + 'The Tower', + 'Data East Corporation', + 1981, + array['The Tower (DECO Cassette) (Europe)'], + array['Arcade'], + '{"mame":["ctower"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'the-tower-of-druaga', + 'The Tower of Druaga', + 'Namco', + 1984, + array['The Tower of Druaga (New Ver.)'], + array['Arcade'], + '{"mame":["todruaga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'the-typing-of-the-dead', + 'The Typing of the Dead', + 'Sega', + 2000, + array['The Typing of the Dead (Rev A)'], + array['Arcade'], + '{"mame":["totd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'the-ultimate-11-the-snk-football-championship-tokuten-ou-honoo-no-libero', + 'The Ultimate 11 - The SNK Football Championship / Tokuten Ou - Honoo no Libero', + 'SNK', + 1996, + '{}'::text[], + array['Sports'], + '{"mame":["ssideki4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-x-files', + 'The X-Files', + 'dgPIX Entertainment Inc.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["xfiles"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'the-yakyuken', + 'The Yakyuken', + 'bootleg', + 1982, + array['The Yakyuken (bootleg)'], + array['Arcade'], + '{"mame":["yakyuken"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omori/yakyuken.cpp"]}'::jsonb + ), + ( + 'thief', + 'Thief', + 'Pacific Novelty', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["thief"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacific/thief.cpp"]}'::jsonb + ), + ( + 'thinkpad-600', + 'ThinkPad 600', + 'IBM', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["tpad600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/thinkpad600.cpp"]}'::jsonb + ), + ( + 'thinkpad-600e', + 'ThinkPad 600E', + 'IBM', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["tpad600e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/thinkpad600.cpp"]}'::jsonb + ), + ( + 'thinkpad-600x', + 'ThinkPad 600X', + 'IBM', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["tpad600x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/thinkpad600.cpp"]}'::jsonb + ), + ( + 'thinkpad-760xd', + 'ThinkPad 760XD', + 'IBM', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["tpad760xd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/thinkpad600.cpp"]}'::jsonb + ), + ( + 'thinkpad-770z', + 'ThinkPad 770Z', + 'IBM', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["tpad770z"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/thinkpad600.cpp"]}'::jsonb + ), + ( + 'thinkpad-850', + 'ThinkPad 850', + 'IBM', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["tpad850"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/thinkpad8xx.cpp"]}'::jsonb + ), + ( + 'thrash-rally-alm-003-alh-003', + 'Thrash Rally (ALM-003 ~ ALH-003)', + 'Alpha Denshi Co.', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["trally"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'three-wishes-red-atronic', + 'Three Wishes Red (Atronic)', + 'Atronic', + 2002, + array['Three Wishes Red (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["3wishrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'three-wonders', + 'Three Wonders', + 'Capcom', + 1991, + array['Three Wonders (World 910520)'], + array['Arcade'], + '{"mame":["3wonders"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'thrill-drive-ude', + 'Thrill Drive (UDE)', + 'Konami', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["thrilld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nwk-tr.cpp"]}'::jsonb + ), + ( + 'thrill-drive-2', + 'Thrill Drive 2', + 'Konami', + 2001, + array['Thrill Drive 2 (ver EBB)'], + array['Arcade'], + '{"mame":["thrild2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'thrill-drive-3-d44-j-a-a-20050316', + 'Thrill Drive 3 (D44:J:A:A:20050316)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["thrild3j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'thunder-and-lightning', + 'Thunder & Lightning', + 'Seta', + 1990, + array['Thunder & Lightning (set 1)'], + array['Arcade'], + '{"mame":["thunderl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'thunder-blade-upright-fd1094-317-0056', + 'Thunder Blade (upright) (FD1094 317-0056)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["thndrbld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'thunder-ceptor', + 'Thunder Ceptor', + 'Namco', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["tceptor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/tceptor.cpp"]}'::jsonb + ), + ( + 'thunder-cross', + 'Thunder Cross', + 'Konami', + 1988, + array['Thunder Cross (set 1)'], + array['Arcade'], + '{"mame":["thunderx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/thunderx.cpp"]}'::jsonb + ), + ( + 'thunder-cross-ii', + 'Thunder Cross II', + 'Konami', + 1991, + array['Thunder Cross II (World)'], + array['Arcade'], + '{"mame":["thndrx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'thunder-dragon-8th-jan-1992-unprotected', + 'Thunder Dragon (8th Jan. 1992, unprotected)', + 'NMK (Tecmo license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["tdragon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'thunder-dragon-2-9th-nov-1993', + 'Thunder Dragon 2 (9th Nov. 1993)', + 'NMK', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["tdragon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'thunder-force-ac', + 'Thunder Force AC', + 'Technosoft / Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["tfrceac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'thunder-force-ii-md-mega-tech', + 'Thunder Force II MD (Mega-Tech)', + 'Techno Soft / Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_tfor2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'thunder-fox', + 'Thunder Fox', + 'Taito Corporation Japan', + 1990, + array['Thunder Fox (World, rev 1)'], + array['Arcade'], + '{"mame":["thundfox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'thunder-heroes', + 'Thunder Heroes', + 'Primetek Investments', + 2001, + array['Thunder Heroes (set 1)'], + array['Arcade'], + '{"mame":["theroes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'thunder-hoop', + 'Thunder Hoop', + 'Gaelco', + 1992, + array['Thunder Hoop (ver. 1, checksum 02a09f7d)'], + array['Arcade'], + '{"mame":["thoop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp"]}'::jsonb + ), + ( + 'thunder-strike', + 'Thunder Strike', + 'East Coast Coin Company', + 1991, + array['Thunder Strike (set 1)'], + array['Arcade'], + '{"mame":["tstrike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'thunder-zone', + 'Thunder Zone', + 'Data East Corporation', + 1991, + array['Thunder Zone (World, Rev 1)'], + array['Arcade'], + '{"mame":["thndzone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dassault.cpp"]}'::jsonb + ), + ( + 'thundercade-twin-formation', + 'Thundercade / Twin Formation', + 'Seta (Taito license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["tndrcade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'thunderjaws', + 'ThunderJaws', + 'Atari Games', + 1990, + array['ThunderJaws (rev 3)'], + array['Arcade'], + '{"mame":["thunderj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/thunderj.cpp"]}'::jsonb + ), + ( + 'tian-jiang-shen-bing', + 'Tian Jiang Shen Bing', + 'IGS', + 1997, + array['Tian Jiang Shen Bing (China, V137C)'], + array['Arcade'], + '{"mame":["tjsb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'tiansheng-haoshou-v201cn', + 'Tiansheng Haoshou (V201CN)', + 'IGS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["tshs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'tic-tac-toe', + 'Tic Tac Toe', + 'bootleg (Sundance)', + null, + array['Tic Tac Toe (Sundance bootleg of New Lucky 8 Lines)'], + array['Arcade'], + '{"mame":["ttactoe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'tickee-tickats', + 'Tickee Tickats', + 'Raster Elite', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["tickee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tickee.cpp"]}'::jsonb + ), + ( + 'tieban-shensuan', + 'Tieban Shensuan', + 'GMS', + 1998, + array['Tieban Shensuan (Mainland version 2.0)'], + array['Arcade'], + '{"mame":["tbss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'tierras-salvajes-100hz-display', + 'Tierras Salvajes (100Hz display)', + 'Picmatic', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["tierras100hz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'tim-011', + 'TIM-011', + 'Mihajlo Pupin Institute', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["tim011"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/tim011.cpp"]}'::jsonb + ), + ( + 'tim-100', + 'TIM-100', + 'Mihajlo Pupin Institute', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["tim100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/tim100.cpp"]}'::jsonb + ), + ( + 'timber', + 'Timber', + 'Bally Midway', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["timber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'time-attacker', + 'Time Attacker', + 'Shonan', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tattack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tattack.cpp"]}'::jsonb + ), + ( + 'time-crisis', + 'Time Crisis', + 'Namco', + 1996, + array['Time Crisis (World, TS2 Ver.B)'], + array['Light gun'], + '{"mame":["timecris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'time-crisis-3-tst1', + 'Time Crisis 3 (TST1)', + 'Namco', + 2003, + '{}'::text[], + array['Light gun'], + '{"mame":["timecrs3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'time-crisis-4', + 'Time Crisis 4', + 'Namco', + 2006, + array['Time Crisis 4 (World, TSF1002-NA-A)'], + array['Light gun'], + '{"mame":["timecrs4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'time-crisis-ii', + 'Time Crisis II', + 'Namco', + 1997, + array['Time Crisis II (US, TSS3 Ver. B)'], + array['Light gun'], + '{"mame":["timecrs2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'time-fighter', + 'Time Fighter', + 'Taito do Brasil', + null, + array['Time Fighter (Time Pilot conversion on Galaxian hardware)'], + array['Arcade'], + '{"mame":["timefgtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'time-killers-v1-32', + 'Time Killers (v1.32)', + 'Strata / Incredible Technologies', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["timekill"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'time-limit', + 'Time Limit', + 'Chuo Co. Ltd', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["timelimt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/timelimt.cpp"]}'::jsonb + ), + ( + 'time-pilot', + 'Time Pilot', + 'Konami', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["timeplt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/timeplt.cpp"]}'::jsonb + ), + ( + 'time-pilot-84', + 'Time Pilot ''84', + 'Konami', + 1984, + array['Time Pilot ''84 (set 1)'], + array['Arcade'], + '{"mame":["tp84"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tp84.cpp"]}'::jsonb + ), + ( + 'time-scanner', + 'Time Scanner', + 'Sega', + 1987, + array['Time Scanner (set 2, System 16B)'], + array['Arcade'], + '{"mame":["timescan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'time-scanner-ts-2-0-magnet-system', + 'Time Scanner (TS 2.0, Magnet System)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_time"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'time-soldiers', + 'Time Soldiers', + 'Alpha Denshi Co. (SNK/Romstar license)', + 1987, + array['Time Soldiers (US Rev 3)'], + array['Arcade'], + '{"mame":["timesold"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k.cpp"]}'::jsonb + ), + ( + 'time-traveler', + 'Time Traveler', + 'Virtual Image Productions (Sega license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["timetrv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/timetrv.cpp"]}'::jsonb + ), + ( + 'time-tunnel', + 'Time Tunnel', + 'Taito Corporation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["timetunl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'tinker-bell', + 'Tinker Bell', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["tinkerbl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasm1.cpp"]}'::jsonb + ), + ( + 'tinkle-pit', + 'Tinkle Pit', + 'Namco', + 1993, + array['Tinkle Pit (Japan)'], + array['Arcade'], + '{"mame":["tinklpit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'tiny-toon-adventures-playchoice-10', + 'Tiny Toon Adventures (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1991, + array['Tiny Toon Adventures (prototype) (PlayChoice-10)'], + array['Arcade'], + '{"mame":["pc_ttoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'title-fight', + 'Title Fight', + 'Sega', + 1992, + array['Title Fight (World)'], + array['Arcade'], + '{"mame":["titlef"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'to-heart-house', + 'To Heart House', + 'Limenko', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hrthouse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/limenko.cpp"]}'::jsonb + ), + ( + 'tobe-polystars', + 'Tobe! Polystars', + 'Konami', + 1997, + array['Tobe! Polystars (ver JAA)'], + array['Arcade'], + '{"mame":["polystar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamim2.cpp"]}'::jsonb + ), + ( + 'tobikose-jumpman', + 'Tobikose! Jumpman', + 'Namco', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["tjumpman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'toffy-encrypted', + 'Toffy (encrypted)', + 'Midas', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["toffy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'toggle', + 'Toggle', + 'Bally/Sente', + 1985, + array['Toggle (prototype)'], + array['Arcade'], + '{"mame":["toggle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'toki', + 'Toki', + 'TAD Corporation', + 1989, + array['Toki (World, set 1)'], + array['Arcade'], + '{"mame":["toki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/toki.cpp"]}'::jsonb + ), + ( + 'toki-no-senshi-chrono-soldier-mc-8123-317-0040', + 'Toki no Senshi - Chrono Soldier (MC-8123, 317-0040)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["tokisens"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'tokimeki-memorial-oshiete-your-heart-gq673-jaa', + 'Tokimeki Memorial Oshiete Your Heart (GQ673 JAA)', + 'Konami', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["tmosh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'tokimeki-memorial-oshiete-your-heart-seal-version-ge755-jaa', + 'Tokimeki Memorial Oshiete Your Heart Seal Version (GE755 JAA)', + 'Konami', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["tmoshs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'tokimeki-memorial-oshiete-your-heart-seal-version-plus-ge756-jab', + 'Tokimeki Memorial Oshiete Your Heart Seal Version Plus (GE756 JAB)', + 'Konami', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["tmoshsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'tokimeki-memorial-taisen-puzzle-dama', + 'Tokimeki Memorial Taisen Puzzle-dama', + 'Konami', + 1995, + array['Tokimeki Memorial Taisen Puzzle-dama (ver JAB)'], + array['Puzzle'], + '{"mame":["tkmmpzdm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'tokio-scramble-formation-newer', + 'Tokio / Scramble Formation (newer)', + 'Taito Corporation', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["tokio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/bublbobl.cpp"]}'::jsonb + ), + ( + 'tokoro-san-no-mahmahjan', + 'Tokoro San no MahMahjan', + 'Sega', + 1992, + array['Tokoro San no MahMahjan (Japan, ROM Based)'], + array['Arcade'], + '{"mame":["mahmajn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'tokoro-san-no-mahmahjan-2', + 'Tokoro San no MahMahjan 2', + 'Sega', + 1994, + array['Tokoro San no MahMahjan 2 (Japan, ROM Based)'], + array['Arcade'], + '{"mame":["mahmajn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'tokyo-bus-guide', + 'Tokyo Bus Guide', + 'Fortyfive', + 1999, + array['Tokyo Bus Guide (Japan, Rev A)'], + array['Arcade'], + '{"mame":["tokyobus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'tokyo-cop', + 'Tokyo Cop', + 'Gaelco', + 2003, + array['Tokyo Cop (US, dedicated version)'], + array['Arcade'], + '{"mame":["tokyocop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelcopc.cpp"]}'::jsonb + ), + ( + 'tokyo-gal-zukan', + 'Tokyo Gal Zukan', + 'Nichibutsu', + 1989, + array['Tokyo Gal Zukan (Japan)'], + array['Arcade'], + '{"mame":["tokyogal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8991.cpp"]}'::jsonb + ), + ( + 'tokyo-wars', + 'Tokyo Wars', + 'Namco', + 1996, + array['Tokyo Wars (World, TW2 Ver.A)'], + array['Arcade'], + '{"mame":["tokyowar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'tom-tom-magic', + 'Tom Tom Magic', + 'Hobbitron T.K.Trading Co. Ltd.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["tomagic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'tomahawk-777', + 'Tomahawk 777', + 'Data East', + 1980, + array['Tomahawk 777 (rev 5)'], + array['Arcade'], + '{"mame":["tomahawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/astrof.cpp"]}'::jsonb + ), + ( + 'tomcat', + 'TomCat', + 'Atari', + 1985, + array['TomCat (prototype)'], + array['Arcade'], + '{"mame":["tomcat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/tomcat.cpp"]}'::jsonb + ), + ( + 'tommy-lasorda-baseball-mega-tech', + 'Tommy Lasorda Baseball (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Sports'], + '{"mame":["mt_tlbba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'tomy-tutor', + 'Tomy Tutor', + 'Tomy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tutor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tomy/tutor.cpp"]}'::jsonb + ), + ( + 'tonton', + 'Tonton', + 'Dynax', + 1987, + array['Tonton (Japan, set 1)'], + array['Arcade'], + '{"mame":["tontonb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'toobin', + 'Toobin''', + 'Atari Games', + 1988, + array['Toobin'' (rev 3)'], + array['Arcade'], + '{"mame":["toobin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/toobin.cpp"]}'::jsonb + ), + ( + 'top-banana', + 'Top Banana', + 'WMS', + 1999, + array['Top Banana (Russian)'], + array['Arcade'], + '{"mame":["wmstopb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'top-blade-v', + 'Top Blade V', + 'SonoKong / Expotato', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["topbladv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'top-draw', + 'Top Draw', + 'SMS Manufacturing Corp.', + null, + array['Top Draw (encrypted, set 1)'], + array['Arcade'], + '{"mame":["topdraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'top-driving', + 'Top Driving', + 'Proyesel', + 1995, + array['Top Driving (version 1.1)'], + array['Arcade'], + '{"mame":["topdrive"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/topdrive.cpp"]}'::jsonb + ), + ( + 'top-gunner-exidy', + 'Top Gunner (Exidy)', + 'Exidy', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["topgunnr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/vertigo.cpp"]}'::jsonb + ), + ( + 'top-hunter-roddy-and-cathy-ngm-046', + 'Top Hunter - Roddy & Cathy (NGM-046)', + 'SNK', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["tophuntr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'top-landing', + 'Top Landing', + 'Taito Corporation Japan', + 1988, + array['Top Landing (World)'], + array['Arcade'], + '{"mame":["topland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitoair.cpp"]}'::jsonb + ), + ( + 'top-player-s-golf-ngm-003-ngh-003', + 'Top Player''s Golf (NGM-003 ~ NGH-003)', + 'SNK', + 1990, + '{}'::text[], + array['Sports'], + '{"mame":["tpgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'top-ranking-stars', + 'Top Ranking Stars', + 'Taito Corporation Japan', + 1993, + array['Top Ranking Stars (Ver 2.1O 1993/05/21) (New Version)'], + array['Arcade'], + '{"mame":["trstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'top-roller', + 'Top Roller', + 'Jaleco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["toprollr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'top-secret-exidy', + 'Top Secret (Exidy)', + 'Exidy', + 1986, + array['Top Secret (Exidy) (version 1.0)'], + array['Arcade'], + '{"mame":["topsecex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'top-shooter', + 'Top Shooter', + 'Sun Mixing', + 1995, + '{}'::text[], + array['Shooter'], + '{"mame":["topshoot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_sunmix.cpp"]}'::jsonb + ), + ( + 'top-skater', + 'Top Skater', + 'Sega', + 1997, + array['Top Skater (Export, Revision A)'], + array['Arcade'], + '{"mame":["topskatr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'top-speed', + 'Top Speed', + 'Taito Corporation Japan', + 1987, + array['Top Speed (World, rev 1)'], + array['Arcade'], + '{"mame":["topspeed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/topspeed.cpp"]}'::jsonb + ), + ( + 'top-t-cash', + 'Top T. Cash', + 'VideoIdea', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["toptcash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'top-xxi', + 'Top XXI', + 'Assogiochi Assago', + null, + array['Top XXI (Version 1.2)'], + array['Arcade'], + '{"mame":["top21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mil4000.cpp"]}'::jsonb + ), + ( + 'top-7', + 'Top-7', + 'bootleg (UTech)', + 1999, + array['Top-7 (V8.8, set 1)'], + array['Arcade'], + '{"mame":["top7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'toppy-and-rappy', + 'Toppy & Rappy', + 'SemiCom', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["toppyrap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'tora-tora', + 'Tora Tora', + 'Game Plan', + 1980, + array['Tora Tora (prototype?)'], + array['Arcade'], + '{"mame":["toratora"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/toratora.cpp"]}'::jsonb + ), + ( + 'torarechattano-av-kantoku-hen', + 'Torarechattano - AV Kantoku Hen', + 'Nichibutsu/Love Factory/M Friend', + 2000, + array['Torarechattano - AV Kantoku Hen (Japan)'], + array['Arcade'], + '{"mame":["torarech"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'toride-ii-adauchi-gaiden', + 'Toride II Adauchi Gaiden', + 'Metro', + 1994, + array['Toride II Adauchi Gaiden (Japan)'], + array['Arcade'], + '{"mame":["toride2g"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'tornado', + 'Tornado', + 'Data East Corporation', + 1982, + array['Tornado (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["ctornado"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'tornado-baseball-ball-park', + 'Tornado Baseball / Ball Park', + 'Dave Nutting Associates / Midway / Taito', + 1976, + '{}'::text[], + array['Sports'], + '{"mame":["tornbase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'torre-eiffel', + 'Torre Eiffel', + 'Videos A A', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["toureiff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videosaa.cpp"]}'::jsonb + ), + ( + 'tortuga-family-italian', + 'Tortuga Family (Italian)', + 'C.M.C.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["tortufam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'torus', + 'Torus', + 'Yun Sung', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["torus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'toryumon', + 'Toryumon', + 'Sega', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["toryumon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'total-carnage', + 'Total Carnage', + 'Midway', + 1992, + array['Total Carnage (rev LA1 03/10/92)'], + array['Arcade'], + '{"mame":["totcarn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'total-vice', + 'Total Vice', + 'Konami', + 1997, + array['Total Vice (ver EBA)'], + array['Arcade'], + '{"mame":["totlvice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamim2.cpp"]}'::jsonb + ), + ( + 'tottemo-e-jong', + 'Tottemo E Jong', + 'Seibu Kaihatsu (Tecmo license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["totmejan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/goodejan.cpp"]}'::jsonb + ), + ( + 'touch-and-go', + 'Touch and Go', + 'Gaelco', + 1996, + array['Touch and Go (World, checksum 059D0235)'], + array['Arcade'], + '{"mame":["touchgo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'touch-de-uno-unou-nouryoku-check-machine', + 'Touch de Uno! / Unou Nouryoku Check Machine', + 'Sega', + 1999, + array['Touch de Uno! / Unou Nouryoku Check Machine (Japan)'], + array['Arcade'], + '{"mame":["tduno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'touch-de-uno-2', + 'Touch de Uno! 2', + 'Sega', + 2000, + array['Touch de Uno! 2 (Japan)'], + array['Arcade'], + '{"mame":["tduno2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'touch-de-zunou', + 'Touch De Zunou', + 'Sega', + 2006, + array['Touch De Zunou (Japan, Rev A)'], + array['Arcade'], + '{"mame":["zunou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'touchdown-fever', + 'TouchDown Fever', + 'SNK', + 1987, + array['TouchDown Fever (US)'], + array['Arcade'], + '{"mame":["tdfever"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'touche-me', + 'Touche Me', + '', + null, + array['Touche Me (set 1)'], + array['Arcade'], + '{"mame":["toucheme"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ladyfrog.cpp"]}'::jsonb + ), + ( + 'touchmaster-v3-00-euro', + 'Touchmaster (v3.00 Euro)', + 'Midway Games Inc. / CES Inc.', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["tm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'touchmaster-2000-plus-v4-63-standard', + 'Touchmaster 2000 Plus (v4.63 Standard)', + 'Midway Games Inc.', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["tm2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'touchmaster-3000-v5-02-standard', + 'Touchmaster 3000 (v5.02 Standard)', + 'Midway Games Inc.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["tm3k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'touchmaster-4000-v6-03-standard', + 'Touchmaster 4000 (v6.03 Standard)', + 'Midway Games Inc.', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["tm4k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'touchmaster-5000-v7-10-standard', + 'Touchmaster 5000 (v7.10 Standard)', + 'Midway Games Inc.', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["tm5k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'touchmaster-7000-v8-04-standard', + 'Touchmaster 7000 (v8.04 Standard)', + 'Midway Games Inc.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["tm7k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'touchmaster-8000-v9-04-standard', + 'Touchmaster 8000 (v9.04 Standard)', + 'Midway Games Inc.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["tm8k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'tougenkyou', + 'Tougenkyou', + 'Nichibutsu', + 1989, + array['Tougenkyou (Japan 890418)'], + array['Arcade'], + '{"mame":["togenkyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8900.cpp"]}'::jsonb + ), + ( + 'tough-turf-8751-317-0104', + 'Tough Turf (8751 317-0104)', + 'Sega / Sunsoft', + 1989, + array['Tough Turf (set 2, Japan) (8751 317-0104)'], + array['Arcade'], + '{"mame":["tturf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'toukidenshou-angel-eyes', + 'Toukidenshou - Angel Eyes', + 'Tecmo', + 1996, + array['Toukidenshou - Angel Eyes (VER. 960614)'], + array['Arcade'], + '{"mame":["tkdensho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmosys.cpp"]}'::jsonb + ), + ( + 'tour-4000', + 'Tour 4000', + 'High Video', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["tour4000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'tour-4010', + 'Tour 4010', + 'High Video', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["tour4010"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'tournament-arkanoid', + 'Tournament Arkanoid', + 'Taito America Corporation (Romstar license)', + 1987, + array['Tournament Arkanoid (US, older)'], + array['Arcade'], + '{"mame":["arkatour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/arkanoid.cpp"]}'::jsonb + ), + ( + 'tournament-pro-golf', + 'Tournament Pro Golf', + 'Data East Corporation', + 1981, + array['Tournament Pro Golf (DECO Cassette) (US)'], + array['Sports'], + '{"mame":["cprogolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'tournament-table', + 'Tournament Table', + 'Atari', + 1978, + array['Tournament Table (set 1)'], + array['Arcade'], + '{"mame":["tourtabl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/tourtabl.cpp"]}'::jsonb + ), + ( + 'touryuu-densetsu-elan-doree-elan-doree-legend-of-dragoon-juet-980922-v1-006', + 'Touryuu Densetsu Elan-Doree / Elan Doree - Legend of Dragoon (JUET 980922 V1.006)', + 'Sai-Mate', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["elandore"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'touryuumon-v1-1-apr-14-2005', + 'Touryuumon (V1.1, Apr 14 2005)', + 'Yuki Enterprise', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["touryuu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/ghosteo.cpp"]}'::jsonb + ), + ( + 'tower-and-shaft', + 'Tower & Shaft', + 'Aruze', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["twrshaft"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'toy-fighter', + 'Toy Fighter', + 'Sega / Anchor Inc.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["toyfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'toy-land-adventure', + 'Toy Land Adventure', + 'SemiCom', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["toyland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'toy-story-3-lexibook', + 'Toy Story 3 (Lexibook)', + 'Lexibook', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["lxts3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'toy-s-march-e00-j-a-a-2005011602', + 'Toy''s March (E00:J:A:A:2005011602)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["toysmarch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'toy-s-march-2-f00-j-a-a-2005110400', + 'Toy''s March 2 (F00:J:A:A:2005110400)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["toysmarch2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'toypop', + 'Toypop', + 'Namco', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["toypop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/toypop.cpp"]}'::jsonb + ), + ( + 'track-and-field', + 'Track & Field', + 'Konami', + 1983, + '{}'::text[], + array['Sports'], + '{"mame":["trackfld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/trackfld.cpp"]}'::jsonb + ), + ( + 'track-and-field-playchoice-10', + 'Track & Field (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1987, + '{}'::text[], + array['Sports'], + '{"mame":["pc_tkfld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'trail-blazer', + 'Trail Blazer', + 'Coinmaster', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["trailblz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmstr.cpp"]}'::jsonb + ), + ( + 'tranquillizer-gun', + 'Tranquillizer Gun', + 'Sega', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["tranqgun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'transformer', + 'Transformer', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["transfrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'transformers-beast-wars-ii', + 'Transformers Beast Wars II', + 'Sigma / Transformer Production Company / Takara', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["tbeastw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'tranz-330', + 'Tranz 330', + 'VeriFone', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["tranz330"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["verifone/tranz330.cpp"]}'::jsonb + ), + ( + 'trap-shoot-classic-v1-0-21-mar-1997', + 'Trap Shoot Classic (v1.0 21-mar-1997)', + 'Creative Electronics And Software', + 1997, + '{}'::text[], + array['Classic'], + '{"mame":["tsclass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/cesclass.cpp"]}'::jsonb + ), + ( + 'trapeze-trampoline', + 'Trapeze / Trampoline', + 'Exidy / Taito', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["trapeze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/circus.cpp"]}'::jsonb + ), + ( + 'traverse-usa-zippy-race', + 'Traverse USA / Zippy Race', + 'Irem', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["travrusa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/travrusa.cpp"]}'::jsonb + ), + ( + 'treasure-2000', + 'Treasure 2000', + 'Subsino (American Alpha license)', + 2000, + array['Treasure 2000 (Ver. 107)'], + array['Arcade'], + '{"mame":["trea2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'treasure-bonus', + 'Treasure Bonus', + 'Subsino (American Alpha license)', + 1995, + array['Treasure Bonus (American Alpha, Ver. 1.6)'], + array['Arcade'], + '{"mame":["tbonusal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'treasure-bonus-subsino-v1-6', + 'Treasure Bonus (Subsino, v1.6)', + 'American Alpha', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["stbsub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'treasure-city', + 'Treasure City', + 'Subsino (American Alpha license)', + 1997, + array['Treasure City (Ver. 208)'], + array['Arcade'], + '{"mame":["treacity"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'treasure-hunt-extrema-ukraine-v-34-03', + 'Treasure Hunt (Extrema, Ukraine, V. 34.03)', + 'Extrema', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["extrmth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'treasure-hunting', + 'Treasure Hunting', + 'Astro Corp.', + 2005, + array['Treasure Hunting (US.09.A)'], + array['Arcade'], + '{"mame":["treasurh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'treasure-island', + 'Treasure Island', + 'Data East Corporation', + 1981, + array['Treasure Island (DECO Cassette) (US) (set 1)', 'Treasure Island (Subsino, set 1)'], + array['Arcade'], + '{"mame":["ctisland","tisub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp","subsino/subsino.cpp"]}'::jsonb + ), + ( + 'treasure-island-data-east', + 'Treasure Island (Data East)', + 'Data East Corporation', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["tisland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'treasure-island-extrema-ukraine-v-32-49', + 'Treasure Island (Extrema, Ukraine, V. 32.49)', + 'Extrema', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["extrmti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'treasure-mary', + 'Treasure Mary', + 'Subsino', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["treamary"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'treasure-ocean-v1-5a', + 'Treasure Ocean (v1.5A)', + 'Subsino / Sunwise', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["trsocean"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'tri-sports', + 'Tri-Sports', + 'Bally Midway', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["trisport"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr68.cpp"]}'::jsonb + ), + ( + 'tricep', + 'Tricep', + 'Morrow Designs', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["tricep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["morrow/tricep.cpp"]}'::jsonb + ), + ( + 'trick-trap', + 'Trick Trap', + 'Konami', + 1987, + array['Trick Trap (World?)'], + array['Arcade'], + '{"mame":["tricktrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/labyrunr.cpp"]}'::jsonb + ), + ( + 'tricky-doc', + 'Tricky Doc', + 'Tecfri', + 1987, + array['Tricky Doc (set 1)'], + array['Arcade'], + '{"mame":["trckydoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/sauro.cpp"]}'::jsonb + ), + ( + 'triforce-dimm-updater-3-17-gdt-0011', + 'Triforce DIMM Updater (3.17) (GDT-0011)', + 'Sega', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["tfupdate"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'triforce-firmware-update-for-compact-flash-box-4-01-gdt-0022a', + 'Triforce Firmware Update For Compact Flash Box (4.01) (GDT-0022A)', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["tcfboxa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'trigger-heart-exelica-ver-a-gdl-0036a', + 'Trigger Heart Exelica Ver.A (GDL-0036A)', + 'Warashi', + 2006, + array['Trigger Heart Exelica Ver.A (Japan) (GDL-0036A)'], + array['Arcade'], + '{"mame":["trgheart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'trio-the-punch-never-forget-me', + 'Trio The Punch - Never Forget Me...', + 'Data East Corporation', + 1989, + array['Trio The Punch - Never Forget Me... (World)'], + array['Arcade'], + '{"mame":["triothep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/actfancr.cpp"]}'::jsonb + ), + ( + 'triomphe', + 'Triomphe', + 'Chess King / Intelligent Chess Software', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["triomphe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chessking/triomphe.cpp"]}'::jsonb + ), + ( + 'triple-fever', + 'Triple Fever', + 'IGS', + 2006, + array['Triple Fever (V110US)'], + array['Arcade'], + '{"mame":["tripfev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'triple-hunt', + 'Triple Hunt', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["triplhnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/triplhnt.cpp"]}'::jsonb + ), + ( + 'triple-jack-v1-6g', + 'Triple Jack (V1.6G)', + 'Dyna', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["tripjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'triple-play', + 'Triple Play', + 'Cadillac Jack', + 1998, + array['Triple Play (Ver. 1.10)'], + array['Arcade'], + '{"mame":["cj3play"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'triple-punch', + 'Triple Punch', + 'K.K. International', + 1982, + array['Triple Punch (set 1)'], + array['Arcade'], + '{"mame":["triplep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'triple-star-2000', + 'Triple Star 2000', + 'A.M.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["trstar2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'triple-x', + 'Triple X', + 'Torch Computers', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["triplex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["torch/triplex.cpp"]}'::jsonb + ), + ( + 'tripple-draw-v3-1-s', + 'Tripple Draw (V3.1 s)', + 'Status Games', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["tripdraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'triton-l7-2', + 'Triton L7.2', + 'Transam', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["triton72"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/triton.cpp"]}'::jsonb + ), + ( + 'triton-music-workstation-sampler-v2-5-3', + 'Triton Music Workstation/Sampler (v2.5.3)', + 'Korg', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["korgtriton"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgtriton.cpp"]}'::jsonb + ), + ( + 'trium-eclipse', + 'Trium Eclipse', + 'Mitsubishi', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["triumec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mitsubishi/trium.cpp"]}'::jsonb + ), + ( + 'triv-four', + 'Triv Four', + 'Status Games', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["statriv4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'triv-iii', + 'Triv III', + 'Status Games', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["statriv3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'triv-two', + 'Triv Two', + 'Status Games', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["statriv2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-2-12-85', + 'Trivial Pursuit (2/12/85)', + 'Bally/Sente', + 1984, + array['Trivial Pursuit (Think Tank - Genus Edition) (2/12/85)'], + array['Arcade'], + '{"mame":["triviag1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-3-22-85', + 'Trivial Pursuit (3/22/85)', + 'Bally/Sente', + 1984, + array['Trivial Pursuit (Genus II Edition) (3/22/85)'], + array['Arcade'], + '{"mame":["triviag2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-all-star-sports-edition', + 'Trivial Pursuit (All Star Sports Edition)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["triviasp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-baby-boomer-edition-3-20-85', + 'Trivial Pursuit (Baby Boomer Edition) (3/20/85)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["triviabb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-volumen-iii-spanish-maibesa-license', + 'Trivial Pursuit (Volumen III, Spanish, Maibesa license)', + 'Bally/Sente (Maibesa license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["triviaes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-volumen-iv-spanish-maibesa-hardware', + 'Trivial Pursuit (Volumen IV, Spanish, Maibesa hardware)', + 'Bally/Sente (Maibesa license)', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["triviaes4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-volumen-v-spanish-maibesa-hardware', + 'Trivial Pursuit (Volumen V, Spanish, Maibesa hardware)', + 'Bally/Sente (Maibesa license)', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["triviaes5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-young-players-edition-3-29-85', + 'Trivial Pursuit (Young Players Edition) (3/29/85)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["triviayp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trizeal-gdl-0026', + 'Trizeal (GDL-0026)', + 'Triangle Service', + 2004, + array['Trizeal (Japan) (GDL-0026)'], + array['Arcade'], + '{"mame":["trizeal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'trog', + 'Trog', + 'Midway', + 1990, + array['Trog (rev LA5 3/29/91)'], + array['Arcade'], + '{"mame":["trog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'trojan', + 'Trojan', + 'Capcom', + 1986, + array['Trojan (US set 1)'], + array['Arcade'], + '{"mame":["trojan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lwings.cpp"]}'::jsonb + ), + ( + 'trojan-playchoice-10', + 'Trojan (PlayChoice-10)', + 'Capcom USA (Nintendo of America license)', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_trjan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'tron-8-9', + 'Tron (8/9)', + 'Bally Midway', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["tron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'trophy-hunting-bear-and-moose-v1-00', + 'Trophy Hunting - Bear & Moose V1.00', + 'Sammy USA Corporation', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["trophyh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'tropical-angel', + 'Tropical Angel', + 'Irem', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["troangel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m57.cpp"]}'::jsonb + ), + ( + 'tropical-chance', + 'Tropical Chance', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["tropchnc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/stingnet.cpp"]}'::jsonb + ), + ( + 'tropical-fruits', + 'Tropical Fruits', + 'Playmark', + 1999, + array['Tropical Fruits (V. 24-06.00 Rev. 4.0)'], + array['Arcade'], + '{"mame":["tropfrt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'trouble-witches-ac-v1-00j', + 'Trouble Witches AC (v1.00J)', + 'Adventure Planning Service/Studio SiestA', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["trbwtchs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'trs-80-model-100', + 'TRS-80 Model 100', + 'Tandy Radio Shack', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["trsm100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kyocera/kyocera.cpp"]}'::jsonb + ), + ( + 'truck-kyosokyoku', + 'Truck Kyosokyoku', + 'Metro / Namco', + 2000, + array['Truck Kyosokyoku (US?, TKK2/VER.A)'], + array['Arcade'], + '{"mame":["truckk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'truco-clemente', + 'Truco Clemente', + 'Miky SRL', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["trucocl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/trucocl.cpp"]}'::jsonb + ), + ( + 'truco-tron', + 'Truco-Tron', + 'Playtronic SRL', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["truco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/truco.cpp"]}'::jsonb + ), + ( + 'truxton-tatsujin', + 'Truxton / Tatsujin', + 'Toaplan / Taito Corporation', + 1988, + array['Truxton (Europe, US) / Tatsujin (Japan)'], + array['Arcade'], + '{"mame":["truxton"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/toaplan1.cpp"]}'::jsonb + ), + ( + 'truxton-ii-tatsujin-oh', + 'Truxton II / Tatsujin Oh', + 'Toaplan', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["truxton2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/truxton2.cpp"]}'::jsonb + ), + ( + 'ts-1-v2-13-0', + 'TS-1 (v2.13.0)', + 'Falco Data Products', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ts1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["falco/falcots.cpp"]}'::jsonb + ), + ( + 'ts-10', + 'TS-10', + 'Ensoniq', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ts10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqkt.cpp"]}'::jsonb + ), + ( + 'ts-12', + 'TS-12', + 'Ensoniq', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ts12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqkt.cpp"]}'::jsonb + ), + ( + 'ts-2624', + 'TS-2624', + 'Falco Data Products', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["ts2624"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["falco/falcots.cpp"]}'::jsonb + ), + ( + 'ts-3000', + 'TS-3000', + 'Televideo', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ts3000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/ts3000.cpp"]}'::jsonb + ), + ( + 'ts802', + 'TS802', + 'Televideo', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["ts802"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/ts802.cpp"]}'::jsonb + ), + ( + 'ts803h', + 'TS803H', + 'Televideo', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ts803h"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/ts803.cpp"]}'::jsonb + ), + ( + 'ts816', + 'TS816', + 'Televideo', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ts816"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/ts816.cpp"]}'::jsonb + ), + ( + 'tsarevna-v1-29', + 'Tsarevna (v1.29)', + 'Kupidon', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["tsarevna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cupidon.cpp"]}'::jsonb + ), + ( + 'tsukande-toru-chicchi', + 'Tsukande Toru Chicchi', + 'Konami', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["tsukande"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'tsukkomi-yousei-gips-nice-tsukkomi', + 'Tsukkomi Yousei Gips Nice Tsukkomi', + 'Namco / Metro', + 2002, + array['Tsukkomi Yousei Gips Nice Tsukkomi (NTK1 Ver.A)'], + array['Arcade'], + '{"mame":["nicetsuk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'tsuribori-taikai-jae-980605-v1-000', + 'Tsuribori Taikai (JAE 980605 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["tsuribor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'tsurikko-penta', + 'Tsurikko Penta', + 'Konami', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["tsupenta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'tsurugi', + 'Tsurugi', + 'Konami', + 2002, + array['Tsurugi (ver EAB)'], + array['Arcade'], + '{"mame":["tsurugi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'tsururin-kun', + 'Tsururin Kun', + 'Konami', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["tsururin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'tsuugakuro-no-yuuwaku', + 'Tsuugakuro no Yuuwaku', + 'Nichibutsu/Love Factory/Just&Just', + 2000, + array['Tsuugakuro no Yuuwaku (Japan)'], + array['Arcade'], + '{"mame":["tsuwaku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'tt030', + 'TT030', + 'Atari', + 1990, + array['TT030 (USA)'], + array['Arcade'], + '{"mame":["tt030"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarist.cpp"]}'::jsonb + ), + ( + 'tube-panic', + 'Tube Panic', + 'Nichibutsu / Fujitek', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["tubep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/tubep.cpp"]}'::jsonb + ), + ( + 'tugboat', + 'Tugboat', + 'Enter-Tech, Ltd.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["tugboat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tugboat.cpp"]}'::jsonb + ), + ( + 'tumble-pop', + 'Tumble Pop', + 'Data East Corporation', + 1991, + array['Tumble Pop (World)'], + array['Arcade'], + '{"mame":["tumblep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/supbtime.cpp"]}'::jsonb + ), + ( + 'tunnel-hunt', + 'Tunnel Hunt', + 'Atari', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["tunhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/tunhunt.cpp"]}'::jsonb + ), + ( + 'turbo-program-1513-1515', + 'Turbo (program 1513-1515)', + 'Sega', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["turbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/turbo.cpp"]}'::jsonb + ), + ( + 'turbo-extreme', + 'Turbo Extreme', + 'LeapFrog', + 2004, + array['Turbo Extreme (US)'], + array['Arcade'], + '{"mame":["turboex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'turbo-force', + 'Turbo Force', + 'Video System Co.', + 1991, + array['Turbo Force (World, set 1)'], + array['Arcade'], + '{"mame":["turbofrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pspikes.cpp"]}'::jsonb + ), + ( + 'turbo-gt-50-in-1', + 'Turbo GT 50-in-1', + 'dreamGEAR / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dturbogt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'turbo-out-run-out-run-upgrade-fd1094-317-0118', + 'Turbo Out Run (Out Run upgrade) (FD1094 317-0118)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["toutrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaorun.cpp"]}'::jsonb + ), + ( + 'turbo-outrun-mega-tech', + 'Turbo Outrun (Mega-Tech)', + 'Sega', + 1992, + '{}'::text[], + array['Racing'], + '{"mame":["mt_tout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'turbo-sub', + 'Turbo Sub', + 'Entertainment Sciences', + 1985, + array['Turbo Sub (prototype rev. TSCA)'], + array['Arcade'], + '{"mame":["turbosub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esripsys.cpp"]}'::jsonb + ), + ( + 'turbo-tag', + 'Turbo Tag', + 'Bally Midway', + 1985, + array['Turbo Tag (prototype)'], + array['Arcade'], + '{"mame":["turbotag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'turbo-twist-brain-quest', + 'Turbo Twist Brain Quest', + 'LeapFrog', + 2002, + array['Turbo Twist Brain Quest (US)'], + array['Arcade'], + '{"mame":["ttwistbq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'turbo-twist-fact-blaster', + 'Turbo Twist Fact Blaster', + 'LeapFrog', + null, + array['Turbo Twist Fact Blaster (US)'], + array['Arcade'], + '{"mame":["ttwistfb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'turbo-twist-math', + 'Turbo Twist Math', + 'LeapFrog', + 2002, + array['Turbo Twist Math (US)'], + array['Arcade'], + '{"mame":["ttwistm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'turbo-twist-spelling', + 'Turbo Twist Spelling', + 'LeapFrog', + 2000, + array['Turbo Twist Spelling (US)'], + array['Arcade'], + '{"mame":["ttwistsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'turbo-twist-vocabulator', + 'Turbo Twist Vocabulator', + 'LeapFrog', + 2001, + array['Turbo Twist Vocabulator (US)'], + array['Arcade'], + '{"mame":["ttwistvc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'turkey-hunting-usa-v1-00', + 'Turkey Hunting USA V1.00', + 'Sammy USA Corporation', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["turkhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'turkey-shoot', + 'Turkey Shoot', + 'Williams', + 1984, + array['Turkey Shoot (prototype)'], + array['Arcade'], + '{"mame":["tshoot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'turret-tower-the-enemy-has-arrived', + 'Turret Tower - The Enemy Has Arrived', + 'Dell Electronics (Namco license)', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["turrett"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/turrett.cpp"]}'::jsonb + ), + ( + 'turtle-ship-north-america', + 'Turtle Ship (North America)', + 'Philko (Sharp Image license)', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["turtship"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/sidearms.cpp"]}'::jsonb + ), + ( + 'turtles', + 'Turtles', + 'Konami (Stern Electronics license)', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["turtles"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'tut-s-tomb', + 'Tut''s Tomb', + 'Island Design', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["tutstomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tickee.cpp"]}'::jsonb + ), + ( + 'tutankham', + 'Tutankham', + 'Konami', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["tutankhm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tutankhm.cpp"]}'::jsonb + ), + ( + 'tv-boy-pal', + 'TV Boy (PAL)', + 'Systema?', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tvboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/a2600.cpp"]}'::jsonb + ), + ( + 'tv-dance-mat-4-games-in-1-mix-party-3-dance-mix-3', + 'TV Dance Mat 4 Games in 1 (Mix Party 3 / Dance Mix 3)', + 'Venom', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dancmix3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'tv-de-asobou-mickey-and-minnie-mouse-kids', + 'TV de Asobou! Mickey & Minnie Mouse Kids', + 'Tomy', + 1997, + array['TV de Asobou! Mickey & Minnie Mouse Kids (Japan)'], + array['Arcade'], + '{"mame":["mousekid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'tv-games-baseball-sh6578-hardware', + 'TV Games Baseball (SH6578 hardware)', + 'DaiDaiXing Electronics', + null, + '{}'::text[], + array['Sports'], + '{"mame":["bb6578"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'tv-games-ping-pong-sh6578-hardware', + 'TV Games Ping Pong (SH6578 hardware)', + 'DaiDaiXing Electronics', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pp6578"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'tv-megamax-active-power-game-system-30-in-1-megamax-gpd001sdg', + 'TV MegaMax active power game system 30-in-1 (MegaMax GPD001SDG)', + 'Polaroid / JungleTac', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["polmega"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'tv-ocha-ken', + 'TV Ocha-Ken', + 'Sega Toys', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["tvochken"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_beena.cpp"]}'::jsonb + ), + ( + 'tv-pump-active', + 'TV Pump Active', + 'Giggle', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pumpactv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'tvc-64', + 'TVC 64', + 'Videoton', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["tvc64"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["videoton/tvc.cpp"]}'::jsonb + ), + ( + 'tvi-912c', + 'TVI-912C', + 'TeleVideo Systems', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["tv912c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/tv912.cpp"]}'::jsonb + ), + ( + 'twin-action', + 'Twin Action', + 'Afega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["twinactn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'twin-adventure', + 'Twin Adventure', + 'Barko Corp.', + 1995, + array['Twin Adventure (World)'], + array['Arcade'], + '{"mame":["twinadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'twin-bee-yahhoo', + 'Twin Bee Yahhoo!', + 'Konami', + 1995, + array['Twin Bee Yahhoo! (ver JAA)'], + array['Arcade'], + '{"mame":["tbyahhoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'twin-brats', + 'Twin Brats', + 'Elettronica Video-Games', + 1995, + array['Twin Brats (set 1)'], + array['Arcade'], + '{"mame":["twinbrat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/stlforce.cpp"]}'::jsonb + ), + ( + 'twin-cobra', + 'Twin Cobra', + 'Toaplan / Taito Corporation', + 1987, + array['Twin Cobra (World)'], + array['Arcade'], + '{"mame":["twincobr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/twincobr.cpp"]}'::jsonb + ), + ( + 'twin-cobra-ii', + 'Twin Cobra II', + 'Taito Corporation Japan', + 1995, + array['Twin Cobra II (Ver 2.1O 1995/11/30)'], + array['Arcade'], + '{"mame":["tcobra2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'twin-eagle-revenge-joe-s-brother', + 'Twin Eagle - Revenge Joe''s Brother', + 'Seta (Taito license)', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["twineagl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'twin-eagle-ii-the-rescue-mission', + 'Twin Eagle II - The Rescue Mission', + 'Seta', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["twineag2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'twin-falcons', + 'Twin Falcons', + 'Philko (Poara Enterprises license)', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["twinfalc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/sidearms.cpp"]}'::jsonb + ), + ( + 'twin-hawk', + 'Twin Hawk', + 'Taito Corporation Japan', + 1989, + array['Twin Hawk (World)'], + array['Arcade'], + '{"mame":["twinhawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_x.cpp"]}'::jsonb + ), + ( + 'twin-qix', + 'Twin Qix', + 'Taito America Corporation', + 1995, + array['Twin Qix (Ver 1.0A 1995/01/17, prototype)'], + array['Arcade'], + '{"mame":["twinqix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'twin-squash', + 'Twin Squash', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["twinsqua"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'twinbee', + 'TwinBee', + 'Konami', + 1985, + array['TwinBee (ROM version)'], + array['Arcade'], + '{"mame":["twinbee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'twinbee-bubble-system', + 'TwinBee (Bubble System)', + 'Konami', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["twinbeeb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'twinkle', + 'Twinkle', + 'SemiCom / Tirano', + 1997, + array['Twinkle (set 1)'], + array['Arcade'], + '{"mame":["twinkle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'twinkle-star-sprites', + 'Twinkle Star Sprites', + 'ADK / SNK', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["twinspri"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'twinkle-system', + 'Twinkle System', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["gq863"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'twinkle-tale', + 'Twinkle Tale', + 'bootleg / Sega', + 1993, + array['Twinkle Tale (bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["twinktmb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'twins-newer', + 'Twins (newer)', + 'Ecogames', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["twins"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/twins.cpp"]}'::jsonb + ), + ( + 'two-tigers-dedicated', + 'Two Tigers (dedicated)', + 'Bally Midway', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["twotiger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'tx-0-upgraded-system-8-kwords-of-ram-new-order-code', + 'TX-0 upgraded system (8 kWords of RAM, new order code)', + 'MIT', + 1962, + '{}'::text[], + array['Arcade'], + '{"mame":["tx0_8kw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mit/tx0.cpp"]}'::jsonb + ), + ( + 'tx-1', + 'TX-1', + 'Tatsumi (Atari/Namco/Taito license)', + 1983, + array['TX-1 (World)'], + array['Arcade'], + '{"mame":["tx1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/tx1.cpp"]}'::jsonb + ), + ( + 'tx81z-fm-tone-generator', + 'TX81Z FM Tone Generator', + 'Yamaha', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["tx81z"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymtx81z.cpp"]}'::jsonb + ), + ( + 'tylz', + 'Tylz', + 'Mylstar', + 1982, + array['Tylz (prototype)'], + array['Arcade'], + '{"mame":["tylz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'type-n-talk', + 'Type ''N Talk', + 'Votrax', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["votrtnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["votrax/votrtnt.cpp"]}'::jsonb + ), + ( + 'typestar-3', + 'Typestar 3', + 'Canon', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["canonts3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["canon/canon_s80.cpp"]}'::jsonb + ), + ( + 'typhoon-lagoon-atronic', + 'Typhoon Lagoon (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["tylagoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'u-n-defense-force-earth-joker', + 'U.N. Defense Force: Earth Joker', + 'Visco', + 1993, + array['U.N. Defense Force: Earth Joker (US / Japan, set 1)'], + array['Arcade'], + '{"mame":["earthjkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'u-n-squadron', + 'U.N. Squadron', + 'Capcom', + 1989, + array['U.N. Squadron (USA)'], + array['Arcade'], + '{"mame":["unsquad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'u-s-championship-v-ball', + 'U.S. Championship V''ball', + 'Technos Japan', + 1988, + array['U.S. Championship V''ball (US)'], + array['Arcade'], + '{"mame":["vball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/vball.cpp"]}'::jsonb + ), + ( + 'u-s-classic', + 'U.S. Classic', + 'Seta', + 1989, + '{}'::text[], + array['Classic'], + '{"mame":["usclssic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'u5s-tk-v03a', + 'U5S-TK-V03A', + 'TK', + 1994, + array['U5S-TK-V03A (UMC UM8498F & UM8496 chipset)'], + array['Arcade'], + '{"mame":["tku5s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["umc/pc486vl.cpp"]}'::jsonb + ), + ( + 'uchuu-daisakusen-chocovader-contactee', + 'Uchuu Daisakusen: Chocovader Contactee', + 'Namco', + 2002, + array['Uchuu Daisakusen: Chocovader Contactee (Japan, CVC1 Ver.A)'], + array['Arcade'], + '{"mame":["chocovdr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'uchuu-tokkyuu-medalian', + 'Uchuu Tokkyuu Medalian', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["ucytokyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'ufo-robo-dangar-4-09-1987', + 'Ufo Robo Dangar (4/09/1987)', + 'Nichibutsu', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["dangar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/galivan.cpp"]}'::jsonb + ), + ( + 'ufo-robot', + 'UFO Robot', + 'Nazionale Elettronica', + 2001, + array['UFO Robot (Ver 1.0 Rev A)'], + array['Arcade'], + '{"mame":["uforobot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'ufo-senshi-yohko-chan-mc-8123-317-0064', + 'Ufo Senshi Yohko Chan (MC-8123, 317-0064)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ufosensi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'ultim809', + 'Ultim809', + 'Matthew Sarnoff', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["ultim809"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/ultim809.cpp"]}'::jsonb + ), + ( + 'ultimate-arctic-thunder', + 'Ultimate Arctic Thunder', + 'Midway Games', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ultarctc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midqslvr.cpp"]}'::jsonb + ), + ( + 'ultimate-mortal-kombat-3', + 'Ultimate Mortal Kombat 3', + 'Midway', + 1994, + array['Ultimate Mortal Kombat 3 (rev 1.2)'], + array['Fighting'], + '{"mame":["umk3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwunit.cpp"]}'::jsonb + ), + ( + 'ultimate-pocket-console-gm-235', + 'Ultimate Pocket Console GM-235', + 'TimeTop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gm235upc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'ultimate-tennis', + 'Ultimate Tennis', + 'Art & Magic', + 1993, + '{}'::text[], + array['Sports'], + '{"mame":["ultennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/artmagic.cpp"]}'::jsonb + ), + ( + 'ultra-45', + 'Ultra 45', + 'Sun Microsystems', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["ultra45"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/ultra45.cpp"]}'::jsonb + ), + ( + 'ultra-balloon', + 'Ultra Balloon', + 'SunA (Unico license)', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["uballoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna16.cpp"]}'::jsonb + ), + ( + 'ultra-tank', + 'Ultra Tank', + 'Atari (Kee Games)', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["ultratnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/ultratnk.cpp"]}'::jsonb + ), + ( + 'ultra-toukon-densetsu', + 'Ultra Toukon Densetsu', + 'Banpresto', + 1993, + array['Ultra Toukon Densetsu (Japan)'], + array['Arcade'], + '{"mame":["utoukond"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'ultra-x-weapons-ultra-keibitai', + 'Ultra X Weapons / Ultra Keibitai', + 'Banpresto / Tsuburaya Productions / Seta', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["ultrax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'ultraman', + 'Ultraman', + 'Banpresto / Bandai', + 1991, + array['Ultraman (Japan)'], + array['Arcade'], + '{"mame":["ultraman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ultraman.cpp"]}'::jsonb + ), + ( + 'ultraman-club-lucky-numbers', + 'Ultraman Club - Lucky Numbers', + 'Banpresto', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["lnumbers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/banpresto_bpsc68000.cpp"]}'::jsonb + ), + ( + 'ultraman-club-tatakae-ultraman-kyoudai', + 'Ultraman Club - Tatakae! Ultraman Kyoudai!!', + 'Banpresto', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["umanclub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'um-jammer-lammy-now', + 'Um Jammer Lammy NOW!', + 'Namco', + 1999, + array['Um Jammer Lammy NOW! (Japan, UL1/VER.A)'], + array['Arcade'], + '{"mame":["ujlnow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'umi-monogatari-lucky-marine-theater-uls1001-st-a', + 'Umi Monogatari Lucky Marine Theater (ULS1001-ST-A)', + 'Namco', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["lmarinet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'uncle-fester-s-quest-the-addams-family-playchoice-10', + 'Uncle Fester''s Quest: The Addams Family (PlayChoice-10)', + 'Sunsoft (Nintendo of America license)', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_ftqst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'uncle-poo', + 'Uncle Poo', + 'Diatec', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["unclepoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ), + ( + 'under-defeat-gdl-0035', + 'Under Defeat (GDL-0035)', + 'G.Rev', + 2005, + array['Under Defeat (Japan) (GDL-0035)'], + array['Arcade'], + '{"mame":["undefeat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'under-fire', + 'Under Fire', + 'Taito Corporation Japan', + 1993, + array['Under Fire (World)'], + array['Arcade'], + '{"mame":["undrfire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/undrfire.cpp"]}'::jsonb + ), + ( + 'undercover-cops', + 'Undercover Cops', + 'Irem', + 1992, + array['Undercover Cops (World)'], + array['Arcade'], + '{"mame":["uccops"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'uniwar-s', + 'UniWar S', + 'Irem', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["uniwars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'unknown-igs-6poker2-game-v312cn', + 'unknown ''IGS 6POKER2'' game (V312CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["igsm312"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'unknown-pac-man-gambling-game', + 'unknown ''Pac-Man'' gambling game', + '', + null, + array['unknown ''Pac-Man'' gambling game (set 1)'], + array['Classic'], + '{"mame":["unkpacg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enraya.cpp"]}'::jsonb + ), + ( + 'unknown-space-invaders-gambling-game', + 'unknown ''Space Invaders'' gambling game', + '', + null, + array['unknown ''Space Invaders'' gambling game (encrypted, set 1)'], + array['Shooter'], + '{"mame":["unksig"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enraya.cpp"]}'::jsonb + ), + ( + 'unknown-vip-2000-game', + 'unknown ''VIP 2000'' game', + 'Paloma Elektronik?', + 2004, + array['unknown ''VIP 2000'' game (set 1)', 'unknown ''VIP 2000'' game (set 2)', 'unknown ''VIP 2000'' game (set 3)'], + array['Arcade'], + '{"mame":["vip2000","vip2000a","vip2000b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'unknown-100-in-1-handheld-mega-drive-based', + 'unknown 100-in-1 handheld (Mega Drive based)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mdhh100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_firecore.cpp"]}'::jsonb + ), + ( + 'unknown-alba-game', + 'unknown Alba game', + 'Alba', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["unkalba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/speedatk.cpp"]}'::jsonb + ), + ( + 'unknown-amstar-cards-game', + 'unknown Amstar cards game', + 'Amstar', + null, + array['unknown Amstar cards game (set 1)'], + array['Arcade'], + '{"mame":["unkamst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amstarz80.cpp"]}'::jsonb + ), + ( + 'unknown-elsy-game', + 'unknown Elsy game', + 'Electro System (Elsy)', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["elsygame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sanremmg.cpp"]}'::jsonb + ), + ( + 'unknown-fighting-game-bb', + 'unknown fighting game ''BB''', + '', + null, + array['unknown fighting game ''BB'' (prototype)'], + array['Arcade'], + '{"mame":["bbprot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nix/fitfight.cpp"]}'::jsonb + ), + ( + 'unknown-fun-world-a0-1-game', + 'unknown Fun World A0-1 game', + 'Fun World', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["fw_a0_1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'unknown-fun-world-a7-11-game-1', + 'unknown Fun World A7-11 game 1', + 'Fun World', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["fw_a7_11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'unknown-game-on-fr004-hardware', + 'unknown game on FR004 hardware', + 'Nova Desitec', + null, + array['unknown game on FR004 hardware (set 1)'], + array['Arcade'], + '{"mame":["unkfr004"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novadesitec/novadesitec_fr004.cpp"]}'::jsonb + ), + ( + 'unknown-game-on-fr009-hardware', + 'unknown game on FR009 hardware', + 'Nova Desitec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unkfr009"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novadesitec/novadesitec_fr009.cpp"]}'::jsonb + ), + ( + 'unknown-game-on-truesys-hardware', + 'unknown game on TrueSys hardware', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unkts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/truesys.cpp"]}'::jsonb + ), + ( + 'unknown-h8-italian-gambling-game', + 'unknown H8 Italian gambling game', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unkh8gam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'unknown-hom-inn-cards-game', + 'unknown Hom Inn cards game', + 'Hom Inn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unkhomin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hominn/hominn_mcs51.cpp"]}'::jsonb + ), + ( + 'unknown-ins8900-multibus-card-980305652', + 'unknown INS8900 Multibus card (980305652)', + 'National Semiconductor', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ns5652"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["natsemi/ns5652.cpp"]}'::jsonb + ), + ( + 'unknown-labeled-wu-mary-1a-music-by-sunkiss-chen', + 'unknown Labeled ''WU- MARY-1A'' Music by: SunKiss Chen', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["marywu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/marywu.cpp"]}'::jsonb + ), + ( + 'unknown-pmc-game', + 'unknown PMC game', + 'PMC', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unkpmc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pmc.cpp"]}'::jsonb + ), + ( + 'unknown-san-remo-elsy-multigame', + 'unknown San Remo / Elsy Multigame', + 'San Remo Games', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["sanremmg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sanremmg.cpp"]}'::jsonb + ), + ( + 'unknown-smk-game', + 'unknown SMK game', + 'High Video', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unksmk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'unknown-tax-game', + 'unknown TAX game', + 'TAX / Game Revival', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unktax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blocktax.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.014.sql b/supabase/seed-data/mame-game-catalog.generated.014.sql new file mode 100644 index 0000000..d82a112 --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.014.sql @@ -0,0 +1,5054 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 500 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'unknown-top-game', + 'unknown Top game', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unktop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/unktop.cpp"]}'::jsonb + ), + ( + 'unknown-vlc-multigame', + 'unknown VLC multigame', + 'VLC Inc.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["vlcunk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vlc34010.cpp"]}'::jsonb + ), + ( + 'unknown-vrender0-bowling-game', + 'unknown VRender0+ bowling game', + 'A1 Amusement One', + null, + '{}'::text[], + array['Sports'], + '{"mame":["v0bowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/v0bowl.cpp"]}'::jsonb + ), + ( + 'unknown-vt02-based-25-in-1-handheld', + 'unknown VT02 based 25-in-1 handheld', + '', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["vt25in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'unknown-vt1682-based-101-in-1-handheld-pal', + 'unknown VT1682-based 101-in-1 handheld (PAL)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unk1682"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'unknown-vt369-based-128-in-1-gc31-369-20210702-v2', + 'unknown VT369 based 128-in-1 (GC31-369-20210702-V2)', + '', + 2021, + '{}'::text[], + array['Arcade'], + '{"mame":["unk128vt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'unknown-vt3xx-based-270-in-1-bl-867-pcb03', + 'unknown VT3xx based 270-in-1 (BL-867 PCB03)', + '', + 2022, + '{}'::text[], + array['Arcade'], + '{"mame":["nesvt270"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'unknown-yuvo-joy-stand-game', + 'unknown Yuvo Joy Stand game', + 'Yuvo', + 1997, + array['unknown Yuvo Joy Stand game (set 1)', 'unknown Yuvo Joy Stand game (set 2)'], + array['Arcade'], + '{"mame":["x180","x180ii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/joystand.cpp"]}'::jsonb + ), + ( + 'unknown-z80-based-mainframe', + 'unknown Z80-based mainframe', + 'Hewlett-Packard', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["hpz80unk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hpz80unk.cpp"]}'::jsonb + ), + ( + 'unknown-zilec-game-on-blue-print-hardware', + 'unknown Zilec game on Blue Print hardware', + 'Zilec Electronics / Exodis', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unkzilec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/blueprnt.cpp"]}'::jsonb + ), + ( + 'untouchable', + 'Untouchable', + 'Dynax', + 1987, + array['Untouchable (Ver. 2.10)'], + array['Arcade'], + '{"mame":["untoucha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/hnayayoi.cpp"]}'::jsonb + ), + ( + 'up-scope', + 'Up Scope', + 'Grand Products', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["upscope"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/upscope.cpp"]}'::jsonb + ), + ( + 'up-n-down-315-5030', + 'Up''n Down (315-5030)', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["upndown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'urachacha-mudaeri', + 'Urachacha Mudaeri', + 'GamToU', + 2002, + array['Urachacha Mudaeri (Korea)'], + array['Arcade'], + '{"mame":["urachamu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'us-aaf-mustang-25th-may-1990', + 'US AAF Mustang (25th May. 1990)', + 'UPL', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mustang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'us-vs-them', + 'Us vs. Them', + 'Mylstar', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["usvsthem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'usagi-yasei-no-topai-online-v2-04j', + 'Usagi: Yasei no Topai Online (v2.04J)', + 'Taito Corporation/Warashi', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["usagiol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'uts-20', + 'UTS-20', + 'Sperry Univac', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["uts20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unisys/univac.cpp"]}'::jsonb + ), + ( + 'uvi-compu-game', + 'UVI Compu-Game', + 'Orbit Electronics', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["orbituvi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["arcadia/arcadia.cpp"]}'::jsonb + ), + ( + 'uzebox', + 'Uzebox', + 'Belogic', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["uzebox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/uzebox.cpp"]}'::jsonb + ), + ( + 'v-goal-soccer', + 'V Goal Soccer', + 'Tecmo', + 1994, + array['V Goal Soccer (Europe)'], + array['Sports'], + '{"mame":["vgoalsoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/gstriker.cpp"]}'::jsonb + ), + ( + 'v-dog', + 'V-Dog', + 'VRT', + null, + array['V-Dog (prototype, earlier)', 'V-Dog (prototype)'], + array['Arcade'], + '{"mame":["vdogdeme","vdogdemo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'v-liner-v0-7a', + 'V-Liner (v0.7a)', + 'Dyna / BrezzaSoft', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["vliner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'valkyrie-no-densetsu', + 'Valkyrie no Densetsu', + 'Namco', + 1989, + array['Valkyrie no Densetsu (Japan)'], + array['Arcade'], + '{"mame":["valkyrie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'valtric', + 'Valtric', + 'NMK (Jaleco license)', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["valtric"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/argus.cpp"]}'::jsonb + ), + ( + 'vamf-x1-2', + 'Vamf x1/2', + 'Danbi / F2 System', + 1999, + array['Vamf x1/2 (Europe, version 1.1.0908)'], + array['Arcade'], + '{"mame":["vamphalf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'vampire', + 'Vampire', + 'Entertainment Enterprises, Ltd.', + 1983, + array['Vampire (prototype?)'], + array['Arcade'], + '{"mame":["vampire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vampire.cpp"]}'::jsonb + ), + ( + 'vampire-hunter-2-darkstalkers-revenge', + 'Vampire Hunter 2: Darkstalkers Revenge', + 'Capcom', + 1997, + array['Vampire Hunter 2: Darkstalkers Revenge (Japan 970929)'], + array['Fighting'], + '{"mame":["vhunt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'vampire-night', + 'Vampire Night', + 'Sega / Namco', + 2001, + array['Vampire Night (VPN3 Ver. B)'], + array['Arcade'], + '{"mame":["vnight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'vampire-savior-2-the-lord-of-vampire', + 'Vampire Savior 2: The Lord of Vampire', + 'Capcom', + 1997, + array['Vampire Savior 2: The Lord of Vampire (Japan 970913)'], + array['Arcade'], + '{"mame":["vsav2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'vampire-savior-the-lord-of-vampire', + 'Vampire Savior: The Lord of Vampire', + 'Capcom', + 1997, + array['Vampire Savior: The Lord of Vampire (Europe 970519)'], + array['Arcade'], + '{"mame":["vsav"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'van-van-car', + 'Van-Van Car', + 'Sanritsu', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["vanvan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'vandyke', + 'Vandyke', + 'UPL', + 1990, + array['Vandyke (Japan)'], + array['Arcade'], + '{"mame":["vandyke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'vanguard', + 'Vanguard', + 'SNK', + 1981, + array['Vanguard (SNK, set 1)'], + array['Arcade'], + '{"mame":["vanguard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk6502.cpp"]}'::jsonb + ), + ( + 'vanguard-ii', + 'Vanguard II', + 'SNK', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["vangrd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'vapor-trail-hyper-offence-formation', + 'Vapor Trail - Hyper Offence Formation', + 'Data East Corporation', + 1989, + array['Vapor Trail - Hyper Offence Formation (World revision 1)'], + array['Arcade'], + '{"mame":["vaportra"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/vaportra.cpp"]}'::jsonb + ), + ( + 'vapor-trx-guts-jul-2-1998-main-jul-18-1998', + 'Vapor TRX (GUTS Jul 2 1998 / MAIN Jul 18 1998)', + 'Atari Games', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["vaportrx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'varia-metal', + 'Varia Metal', + 'Excellent System', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["vmetal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'varth-operation-thunderstorm', + 'Varth: Operation Thunderstorm', + 'Capcom', + 1992, + array['Varth: Operation Thunderstorm (World 920714)'], + array['Arcade'], + '{"mame":["varth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'vasara', + 'Vasara', + 'Visco', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["vasara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'vasara-2', + 'Vasara 2', + 'Visco', + 2001, + array['Vasara 2 (set 1)'], + array['Arcade'], + '{"mame":["vasara2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'vastar', + 'Vastar', + 'Orca (Sesame Japan license)', + 1983, + array['Vastar (set 1)'], + array['Arcade'], + '{"mame":["vastar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/vastar.cpp"]}'::jsonb + ), + ( + 'vax-11-785', + 'VAX-11/785', + 'Digital Equipment Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["vax785"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vax11.cpp"]}'::jsonb + ), + ( + 'vcs-80', + 'VCS-80', + 'Eckhard Schiller', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["vcs80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/vcs80.cpp"]}'::jsonb + ), + ( + 'vdm-79322-cm-7233', + 'VDM 79322/CM 7233', + 'Mera-Elzab', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["vdm79322"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mera/vdm7932x.cpp"]}'::jsonb + ), + ( + 'vector-1-dd-drive', + 'Vector 1+ (DD drive)', + 'Vector Graphic', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["vector1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["northstar/horizon.cpp"]}'::jsonb + ), + ( + 'vector-4', + 'Vector 4', + 'Vector Graphic', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["vector4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vectorgraphic/vector4.cpp"]}'::jsonb + ), + ( + 'vectrex', + 'Vectrex', + 'General Consumer Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["vectrex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["miltonbradley/vectrex.cpp"]}'::jsonb + ), + ( + 'vega', + 'Vega', + 'Olympia', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["vega"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympia/vega.cpp"]}'::jsonb + ), + ( + 'vegas-roulette', + 'Vegas Roulette', + 'World Game', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["vroulet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vroulet.cpp"]}'::jsonb + ), + ( + 'vendetta', + 'Vendetta', + 'Konami', + 1991, + array['Vendetta (World, 4 Players, ver. T)'], + array['Arcade'], + '{"mame":["vendetta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/vendetta.cpp"]}'::jsonb + ), + ( + 'venom-and-spider-man-separation-anxiety', + 'Venom & Spider-Man - Separation Anxiety', + 'bootleg', + 1997, + array['Venom & Spider-Man - Separation Anxiety (SNES bootleg)'], + array['Arcade'], + '{"mame":["venom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'venture', + 'Venture', + 'Exidy', + 1981, + array['Venture (version 5 set 1)'], + array['Arcade'], + '{"mame":["venture"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'venturer-25-games-25-in-1', + 'Venturer ''25 Games'' 25-in-1', + ' / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ventur25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'version-4', + 'Version 4', + 'Amcoe', + 2006, + array['Version 4 (Version 4.3R CGA)'], + array['Arcade'], + '{"mame":["version4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'versus-net-soccer', + 'Versus Net Soccer', + 'Konami', + 1996, + array['Versus Net Soccer (ver EAD)'], + array['Sports'], + '{"mame":["vsnetscr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'vet-3000-brazil-v2-1', + 'VET 3000 (Brazil, v2.1)', + 'Tecnologia em Micro Sistemas', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["vet3000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tms/vet3000.cpp"]}'::jsonb + ), + ( + 'vfx', + 'VFX', + 'Ensoniq', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["vfx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq5505.cpp"]}'::jsonb + ), + ( + 'vfx-sd', + 'VFX-SD', + 'Ensoniq', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["vfxsd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq5505.cpp"]}'::jsonb + ), + ( + 'vg-pocket-vg-2000', + 'VG Pocket (VG-2000)', + 'Performance Designed Products / JungleTac', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["vgpocket"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'vg-pocket-mini-vg-1500', + 'VG Pocket Mini (VG-1500)', + 'Performance Designed Products / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vgpmini"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'vg-pocket-tablet-vg-4000', + 'VG Pocket Tablet (VG-4000)', + 'Performance Designed Products (licensed by Konami) / JungleTac', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["vgtablet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'vg-5000', + 'VG-5000', + 'Philips', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["vg5k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/vg5k.cpp"]}'::jsonb + ), + ( + 'vibes-retro-pocket-gamer-240-in-1', + 'Vibes Retro Pocket Gamer 240-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vibes240"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'vicious-circle', + 'Vicious Circle', + 'Atari Games', + 1996, + array['Vicious Circle (prototype)'], + array['Arcade'], + '{"mame":["vcircle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'victor-21', + 'Victor 21', + 'Subsino / Buffy', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["victor21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'victor-5', + 'Victor 5', + 'Subsino / Buffy', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["victor5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'victor-6-v2-3n', + 'Victor 6 (v2.3N)', + 'American Alpha', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["victor6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'victor-9000', + 'Victor 9000', + 'Victor Business Products', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["victor9k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["act/victor9k.cpp"]}'::jsonb + ), + ( + 'victorious-nine', + 'Victorious Nine', + 'Taito', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["victnine"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/flstory.cpp"]}'::jsonb + ), + ( + 'victory', + 'Victory', + 'Exidy', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["victory"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/victory.cpp"]}'::jsonb + ), + ( + 'victory-comsoft', + 'Victory (Comsoft)', + 'Comsoft', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["victoryc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'victory-paradise-ii-v9', + 'Victory Paradise II (V9)', + 'Paradise', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["vparadis2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/umipoker.cpp"]}'::jsonb + ), + ( + 'victory-road', + 'Victory Road', + 'SNK', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["victroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'victory-shoot', + 'Victory Shoot', + 'Taito Corporation', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["vicshoot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/vicshoot.cpp"]}'::jsonb + ), + ( + 'video-21', + 'Video 21', + 'Video Games GmbH', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["video21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["videogames/video21.cpp"]}'::jsonb + ), + ( + 'video-carnival-1999-super-royal-card', + 'Video Carnival 1999 / Super Royal Card', + 'Electronic Projects', + null, + array['Video Carnival 1999 / Super Royal Card (Version 0.11)'], + array['Arcade'], + '{"mame":["vcarn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/spool99.cpp"]}'::jsonb + ), + ( + 'video-eight', + 'Video Eight', + 'Macro', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["videight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'video-eight-ball', + 'Video Eight Ball', + 'Century Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["8ball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'video-hustler', + 'Video Hustler', + 'Konami', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["hustler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scobra.cpp"]}'::jsonb + ), + ( + 'video-vince-and-the-game-factory', + 'Video Vince and the Game Factory', + 'Mylstar', + 1984, + array['Video Vince and the Game Factory (prototype)'], + array['Arcade'], + '{"mame":["vidvince"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'videoart', + 'VideoArt', + 'LJN Toys', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["videoart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videoart.cpp"]}'::jsonb + ), + ( + 'videobrain-familycomputer', + 'VideoBrain FamilyComputer', + 'VideoBrain Computer Company', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["vidbrain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vidbrain/vidbrain.cpp"]}'::jsonb + ), + ( + 'videopac-g7000', + 'Videopac G7000', + 'Philips', + 1978, + array['Videopac G7000 (Europe)'], + array['Arcade'], + '{"mame":["videopac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/odyssey2.cpp"]}'::jsonb + ), + ( + 'videopac-g7400', + 'Videopac+ G7400', + 'Philips', + 1983, + array['Videopac+ G7400 (Europe)'], + array['Arcade'], + '{"mame":["videopacp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/odyssey2.cpp"]}'::jsonb + ), + ( + 'viewpoint', + 'Viewpoint', + 'Sammy / Aicom', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["viewpoin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'viewpoint-122', + 'Viewpoint 122', + 'ADDS', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["vp122"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["citoh/cit220.cpp"]}'::jsonb + ), + ( + 'vigilante', + 'Vigilante', + 'Irem', + 1988, + array['Vigilante (World, Rev E)'], + array['Arcade'], + '{"mame":["vigilant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/vigilant.cpp"]}'::jsonb + ), + ( + 'viking-treasure', + 'Viking Treasure', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vikingt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'vimana', + 'Vimana', + 'Toaplan', + 1991, + array['Vimana (World, rev A)'], + array['Arcade'], + '{"mame":["vimana"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/toaplan1.cpp"]}'::jsonb + ), + ( + 'vindicators', + 'Vindicators', + 'Atari Games', + 1988, + array['Vindicators (rev 5)'], + array['Arcade'], + '{"mame":["vindictr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/vindictr.cpp"]}'::jsonb + ), + ( + 'vindicators-part-ii', + 'Vindicators Part II', + 'Atari Games', + 1988, + array['Vindicators Part II (rev 3)'], + array['Arcade'], + '{"mame":["vindctr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/gauntlet.cpp"]}'::jsonb + ), + ( + 'vintage-gamer-240-in-1', + 'Vintage Gamer 240-in-1', + 'Typo', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["typo240"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'vintage-keys-classic-analog-keyboards', + 'Vintage Keys Classic Analog Keyboards', + 'E-mu Systems', + 1993, + '{}'::text[], + array['Classic'], + '{"mame":["vintkeys"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'violence-fight', + 'Violence Fight', + 'Taito Corporation Japan', + 1989, + array['Violence Fight (World)'], + array['Arcade'], + '{"mame":["viofight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'violent-storm', + 'Violent Storm', + 'Konami', + 1993, + array['Violent Storm (ver EAC)'], + array['Arcade'], + '{"mame":["viostorm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mystwarr.cpp"]}'::jsonb + ), + ( + 'vip-novag', + 'VIP (Novag)', + 'Novag Industries / Intelligent Heuristic Programming', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["nvip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/vip.cpp"]}'::jsonb + ), + ( + 'viper', + 'Viper', + 'Leland Corporation', + 1988, + array['Viper (rev 3)'], + array['Arcade'], + '{"mame":["viper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'viper-phase-1', + 'Viper Phase 1', + 'Seibu Kaihatsu', + 1995, + array['Viper Phase 1 (New Version, World)'], + array['Arcade'], + '{"mame":["viprp1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'virtua-athletics-virtua-athlete-gds-0019', + 'Virtua Athletics / Virtua Athlete (GDS-0019)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["vathlete"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-bowling', + 'Virtua Bowling', + 'IGS', + 1996, + array['Virtua Bowling (World, V101XCM)'], + array['Sports'], + '{"mame":["vbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs011.cpp"]}'::jsonb + ), + ( + 'virtua-cop', + 'Virtua Cop', + 'Sega', + 1994, + array['Virtua Cop (Revision B)'], + array['Light gun'], + '{"mame":["vcop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'virtua-cop-2', + 'Virtua Cop 2', + 'Sega', + 1995, + '{}'::text[], + array['Light gun'], + '{"mame":["vcop2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'virtua-cop-3-gdx-0003b', + 'Virtua Cop 3 (GDX-0003B)', + 'Sega', + 2003, + array['Virtua Cop 3 (Rev B) (GDX-0003B)'], + array['Light gun'], + '{"mame":["vcop3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'virtua-fighter', + 'Virtua Fighter', + 'Sega', + 1993, + '{}'::text[], + array['Fighting'], + '{"mame":["vf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model1.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-2', + 'Virtua Fighter 2', + 'Sega', + 1994, + array['Virtua Fighter 2 (Version 2.1)'], + array['Fighting'], + '{"mame":["vf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-3', + 'Virtua Fighter 3', + 'Sega', + 1996, + array['Virtua Fighter 3 (Revision D)'], + array['Fighting'], + '{"mame":["vf3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-4', + 'Virtua Fighter 4', + 'Sega', + 2002, + array['Virtua Fighter 4 (World)'], + array['Fighting'], + '{"mame":["vf4cart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-4-version-c-gds-0012c', + 'Virtua Fighter 4 Version C (GDS-0012C)', + 'Sega', + 2001, + '{}'::text[], + array['Fighting'], + '{"mame":["vf4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-4-evolution', + 'Virtua Fighter 4: Evolution', + 'Sega', + 2002, + array['Virtua Fighter 4: Evolution (World)'], + array['Fighting'], + '{"mame":["vf4evoct"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-4-evolution-gds-0024c', + 'Virtua Fighter 4: Evolution (GDS-0024C)', + 'Sega', + 2002, + array['Virtua Fighter 4: Evolution (Version B) (Japan) (GDS-0024C)'], + array['Fighting'], + '{"mame":["vf4evo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-4-final-tuned-gds-0036f', + 'Virtua Fighter 4: Final Tuned (GDS-0036F)', + 'Sega', + 2004, + array['Virtua Fighter 4: Final Tuned (Ver. B) (GDS-0036F)'], + array['Fighting'], + '{"mame":["vf4tuned"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-5-export', + 'Virtua Fighter 5 (Export)', + 'Sega', + 2005, + '{}'::text[], + array['Fighting'], + '{"mame":["vf5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-kids-juet-960319-v0-000', + 'Virtua Fighter Kids (JUET 960319 V0.000)', + 'Sega', + 1996, + '{}'::text[], + array['Fighting'], + '{"mame":["vfkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-remix-juetbkal-950428-v1-000', + 'Virtua Fighter Remix (JUETBKAL 950428 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Fighting'], + '{"mame":["vfremix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'virtua-golf-dynamic-golf-gds-0009a', + 'Virtua Golf / Dynamic Golf (GDS-0009A)', + 'Sega', + 2001, + array['Virtua Golf / Dynamic Golf (Rev A) (GDS-0009A)'], + array['Sports'], + '{"mame":["dygolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-nba', + 'Virtua NBA', + 'Sega', + 2000, + array['Virtua NBA (USA)'], + array['Arcade'], + '{"mame":["virnba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-racing', + 'Virtua Racing', + 'Sega', + 1992, + '{}'::text[], + array['Racing'], + '{"mame":["vr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model1.cpp"]}'::jsonb + ), + ( + 'virtua-striker', + 'Virtua Striker', + 'Sega', + 1994, + array['Virtua Striker (Revision A)'], + array['Arcade'], + '{"mame":["vstriker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2', + 'Virtua Striker 2', + 'Sega', + 1997, + array['Virtua Striker 2 (Step 2.0, Export, USA)'], + array['Arcade'], + '{"mame":["vs2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2-98-step-2-0', + 'Virtua Striker 2 ''98 (Step 2.0)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["vs298"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2-99-1', + 'Virtua Striker 2 ''99.1', + 'Sega', + 1998, + array['Virtua Striker 2 ''99.1 (Export, USA, Revision B)'], + array['Arcade'], + '{"mame":["vs2v991"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2-ver-2000', + 'Virtua Striker 2 Ver. 2000', + 'Sega', + 1999, + array['Virtua Striker 2 Ver. 2000 (Rev C)'], + array['Arcade'], + '{"mame":["vs2_2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2002-export-gdt-0002', + 'Virtua Striker 2002 (Export) (GDT-0002)', + 'Sega / Amusement Vision', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["vs2002ex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2002-gdt-0001', + 'Virtua Striker 2002 (GDT-0001)', + 'Sega / Amusement Vision', + 2002, + array['Virtua Striker 2002 (Japan) (GDT-0001)'], + array['Arcade'], + '{"mame":["vs2002j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2002-type-3-gdt-0012', + 'Virtua Striker 2002 (Type 3) (GDT-0012)', + 'Sega / Amusement Vision', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["vs2002t3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-striker-3', + 'Virtua Striker 3', + 'Amusement Vision / Sega', + 2001, + array['Virtua Striker 3 (World, Rev B)'], + array['Arcade'], + '{"mame":["vstrik3c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-striker-3-gds-0006', + 'Virtua Striker 3 (GDS-0006)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["vstrik3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-striker-4-gdt-0013e', + 'Virtua Striker 4 (GDT-0013E)', + 'Sega', + 2005, + array['Virtua Striker 4 (Japan, Rev E) (GDT-0013E)'], + array['Arcade'], + '{"mame":["vs4j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-striker-4-gdt-0015a', + 'Virtua Striker 4 (GDT-0015A)', + 'Sega', + 2005, + array['Virtua Striker 4 (Export, Rev A) (GDT-0015A)'], + array['Arcade'], + '{"mame":["vs4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-striker-4-ver-2006-export-gdt-0021', + 'Virtua Striker 4 Ver.2006 (Export) (GDT-0021)', + 'Sega', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["vs42k6ex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-striker-4-ver-2006-gdt-0020d', + 'Virtua Striker 4 Ver.2006 (GDT-0020D)', + 'Sega', + 2006, + array['Virtua Striker 4 Ver.2006 (Japan, Rev D) (GDT-0020D)'], + array['Arcade'], + '{"mame":["vs42006"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-tennis-power-smash', + 'Virtua Tennis / Power Smash', + 'Sega', + 1999, + '{}'::text[], + array['Sports'], + '{"mame":["vtennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-tennis-power-smash-gds-0011', + 'Virtua Tennis / Power Smash (GDS-0011)', + 'Sega', + 2001, + '{}'::text[], + array['Sports'], + '{"mame":["vtennisg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-tennis-2-power-smash-2', + 'Virtua Tennis 2 / Power Smash 2', + 'Sega', + 2001, + array['Virtua Tennis 2 / Power Smash 2 (Rev A)'], + array['Sports'], + '{"mame":["vtenis2c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-tennis-2-power-smash-2-gds-0015a', + 'Virtua Tennis 2 / Power Smash 2 (GDS-0015A)', + 'Sega', + 2001, + array['Virtua Tennis 2 / Power Smash 2 (Rev A) (GDS-0015A)'], + array['Sports'], + '{"mame":["vtennis2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-tennis-3', + 'Virtua Tennis 3', + 'Sega', + 2006, + array['Virtua Tennis 3 (Japan)'], + array['Sports'], + '{"mame":["vtennis3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'virtual-boy', + 'Virtual Boy', + 'Nintendo', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["vboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vboy.cpp"]}'::jsonb + ), + ( + 'virtual-combat', + 'Virtual Combat', + 'VR8 Inc.', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["vcombat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vcombat.cpp"]}'::jsonb + ), + ( + 'virtual-football', + 'Virtual Football', + '', + null, + array['Virtual Football (with 3 bonus games)'], + array['Sports'], + '{"mame":["vfootbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'virtual-ping-pong-protocol', + 'Virtual Ping Pong (Protocol)', + 'Protocol', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["protpp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'virtual-pool', + 'Virtual Pool', + 'Incredible Technologies', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["virtpool"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'virtual-tv-ping-pong', + 'Virtual TV Ping Pong', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vtvppong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'virtual-tv-soccer', + 'Virtual TV Soccer', + '', + null, + '{}'::text[], + array['Sports'], + '{"mame":["vtvsocr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'virus-a', + 'Virus A', + 'Access', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["virusa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["access/acvirus.cpp"]}'::jsonb + ), + ( + 'virus-b', + 'Virus B', + 'Access', + 1999, + array['Virus B (Ver. T)'], + array['Arcade'], + '{"mame":["virusb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["access/acvirus.cpp"]}'::jsonb + ), + ( + 'virus-c', + 'Virus C', + 'Access', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["virusc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["access/acvirus.cpp"]}'::jsonb + ), + ( + 'virus-classic', + 'Virus Classic', + 'Access', + 2004, + '{}'::text[], + array['Classic'], + '{"mame":["viruscl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["access/acvirus.cpp"]}'::jsonb + ), + ( + 'virus-rack', + 'Virus Rack', + 'Access', + 2001, + array['Virus Rack (Ver. T)'], + array['Arcade'], + '{"mame":["virusrck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["access/acvirus.cpp"]}'::jsonb + ), + ( + 'virus-rack-xl', + 'Virus Rack XL', + 'Access', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["virusrckxl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["access/acvirus.cpp"]}'::jsonb + ), + ( + 'vision-quest', + 'Vision Quest', + 'Kramer Manufacturing / Nova Productions Ltd.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["visnqust"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cops.cpp"]}'::jsonb + ), + ( + 'visual-100', + 'Visual 100', + 'Visual Technology', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["v100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["visual/v100.cpp"]}'::jsonb + ), + ( + 'visual-102', + 'Visual 102', + 'Visual Technology', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["v102"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["visual/v102.cpp"]}'::jsonb + ), + ( + 'visual-1050', + 'Visual 1050', + 'Visual Technology Inc', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["v1050"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["visual/v1050.cpp"]}'::jsonb + ), + ( + 'visual-50', + 'Visual 50', + 'Visual Technology', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["visual50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["visual/v50.cpp"]}'::jsonb + ), + ( + 'visual-550', + 'Visual 550', + 'Visual Technology', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["v550"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["visual/v550.cpp"]}'::jsonb + ), + ( + 'visual-memory-unit', + 'Visual Memory Unit', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["svmu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/svmu.cpp"]}'::jsonb + ), + ( + 'vivid-dolls', + 'Vivid Dolls', + 'Visco', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["vivdolls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'vixen', + 'Vixen', + 'Osborne', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["vixen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["osborne/vixen.cpp"]}'::jsonb + ), + ( + 'vj-visual-and-music-slap', + 'VJ: Visual & Music Slap', + 'Jaleco', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["vjslap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'vk100-gigi', + 'VK100 ''GIGI''', + 'Digital Equipment Corporation', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["vk100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vk100.cpp"]}'::jsonb + ), + ( + 'vl1', + 'VL1', + 'Yamaha', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["vl1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymvl1.cpp"]}'::jsonb + ), + ( + 'vl70-m', + 'VL70-m', + 'Yamaha', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["vl70"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymvl70.cpp"]}'::jsonb + ), + ( + 'vlc-nevada', + 'VLC Nevada', + 'VLC Inc.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["nevada"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vlc.cpp"]}'::jsonb + ), + ( + 'vocalizer-1000', + 'Vocalizer 1000', + 'Breakaway Music Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["vocalizer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vocalizer.cpp"]}'::jsonb + ), + ( + 'voice-chess-challenger', + 'Voice Chess Challenger', + 'Fidelity Electronics', + 1979, + array['Voice Chess Challenger (set 1)'], + array['Arcade'], + '{"mame":["vcc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/vcc.cpp"]}'::jsonb + ), + ( + 'voice-sensory-chess-challenger', + 'Voice Sensory Chess Challenger', + 'Fidelity Electronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["vsc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/vsc.cpp"]}'::jsonb + ), + ( + 'volfied', + 'Volfied', + 'Taito Corporation Japan', + 1989, + array['Volfied (World, rev 1)'], + array['Arcade'], + '{"mame":["volfied"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/volfied.cpp"]}'::jsonb + ), + ( + 'volley-ball-playchoice-10', + 'Volley Ball (PlayChoice-10)', + 'Nintendo', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_vball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'volly-ramtek', + 'Volly (Ramtek)', + 'Ramtek', + 1973, + '{}'::text[], + array['Arcade'], + '{"mame":["vollyrmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/ramtek.cpp"]}'::jsonb + ), + ( + 'voltage-fighter-gowcaizer-choujin-gakuen-gowcaizer', + 'Voltage Fighter - Gowcaizer / Choujin Gakuen Gowcaizer', + 'Technos Japan', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["gowcaizr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'vortex', + 'Vortex', + 'Zilec Electronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["vortex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'vrt-vt-sdk-boxing-demo-for-vt03-pic32', + 'VRT VT SDK ''Boxing'' (Demo for VT03 Pic32)', + 'VRT', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vtboxing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vrt-vt-sdk-pink-jelly-vt03-demo', + 'VRT VT SDK ''Pink Jelly'' (VT03 Demo)', + 'VRT / Simmer Technology Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pinkjelly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vrt-vt-sdk-vt03-sound-test-sound-generator-fmdemo', + 'VRT VT SDK ''VT03 Sound Test'' (Sound Generator FMDemo)', + 'VRT', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vtsndtest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vs-block-breaker', + 'VS Block Breaker', + 'Kaneko / Mediaworks', + 1997, + array['VS Block Breaker (Europe)'], + array['Arcade'], + '{"mame":["vblokbrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'vs-gong-fight', + 'VS Gong Fight', + 'Kaneko', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["vsgongf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tsamurai.cpp"]}'::jsonb + ), + ( + 'vs-maxx-15-in-1', + 'Vs Maxx 15-in-1', + 'Senario / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmaxx15"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'vs-maxx-17-in-1', + 'Vs Maxx 17-in-1', + 'Senario / JungleTac', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmaxx17"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vs-maxx-25-in-1-sh6578-hardware', + 'Vs Maxx 25-in-1 (SH6578 hardware)', + 'Senario / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmaxx25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'vs-maxx-25-in-1-vt03-hardware', + 'Vs Maxx 25-in-1 (VT03 hardware)', + 'Senario / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmax25v"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vs-maxx-tx-2-50-in-1', + 'Vs Maxx TX-2 50-in-1', + 'Senario / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmaxtx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'vs-maxx-video-extreme-50-in-1-with-speed-racer-and-snood', + 'Vs Maxx Video Extreme 50-in-1 (with Speed Racer and Snood)', + 'Senario / JungleTac', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmaxxvd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vs-maxx-wireless-77-in-1', + 'Vs Maxx Wireless 77-in-1', + 'Senario / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmaxx77"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vs-atari-r-b-i-baseball', + 'Vs. Atari R.B.I. Baseball', + 'Namco', + 1986, + array['Vs. Atari R.B.I. Baseball (set 1)'], + array['Sports'], + '{"mame":["rbibb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-balloon-fight', + 'Vs. Balloon Fight', + 'Nintendo', + 1984, + array['Vs. Balloon Fight (set BF4 A-3)'], + array['Arcade'], + '{"mame":["balonfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-baseball', + 'Vs. Baseball', + 'Nintendo of America', + 1984, + array['Vs. Baseball (US, set BA E-1)'], + array['Sports'], + '{"mame":["vsbball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-battle-city', + 'Vs. Battle City', + 'Namco', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["btlecity"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-castlevania', + 'Vs. Castlevania', + 'Konami', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["cstlevna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-clu-clu-land', + 'Vs. Clu Clu Land', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["cluclu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-dr-mario', + 'Vs. Dr. Mario', + 'Nintendo', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["drmario"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-duck-hunt', + 'Vs. Duck Hunt', + 'Nintendo', + 1985, + array['Vs. Duck Hunt (set DH3 E)'], + array['Arcade'], + '{"mame":["duckhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-excitebike', + 'Vs. Excitebike', + 'Nintendo', + 1984, + array['Vs. Excitebike (set EB4-3 E)'], + array['Arcade'], + '{"mame":["excitebk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-freedom-force', + 'Vs. Freedom Force', + 'Sunsoft', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["vsfdf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-gradius', + 'Vs. Gradius', + 'Konami', + 1986, + array['Vs. Gradius (US, set GR E)'], + array['Shooter'], + '{"mame":["vsgradus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-gumshoe', + 'Vs. Gumshoe', + 'Nintendo', + 1986, + array['Vs. Gumshoe (set GM5)'], + array['Arcade'], + '{"mame":["vsgshoe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-hogan-s-alley', + 'Vs. Hogan''s Alley', + 'Nintendo', + 1985, + array['Vs. Hogan''s Alley (set HA4-1 E-1)'], + array['Arcade'], + '{"mame":["hogalley"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-hot-smash', + 'Vs. Hot Smash', + 'Kaneko / Taito', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["hotsmash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/superqix.cpp"]}'::jsonb + ), + ( + 'vs-ice-climber', + 'Vs. Ice Climber', + 'Nintendo', + 1984, + array['Vs. Ice Climber (set IC4-4 B-1)'], + array['Arcade'], + '{"mame":["iceclimb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-ice-climber-dual', + 'Vs. Ice Climber Dual', + 'Nintendo', + 1984, + array['Vs. Ice Climber Dual (set IC4-4 A-1)'], + array['Arcade'], + '{"mame":["iceclmrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-janshi-brandnew-stars', + 'Vs. Janshi Brandnew Stars', + 'Jaleco', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["bnstars1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/bnstars.cpp"]}'::jsonb + ), + ( + 'vs-mach-rider', + 'Vs. Mach Rider', + 'Nintendo', + 1985, + array['Vs. Mach Rider (Endurance Course Version)'], + array['Arcade'], + '{"mame":["nvs_machrider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-mighty-bomb-jack', + 'Vs. Mighty Bomb Jack', + 'Tecmo', + 1986, + array['Vs. Mighty Bomb Jack (Japan)'], + array['Arcade'], + '{"mame":["nvs_mightybj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-ninja-jajamaru-kun', + 'Vs. Ninja Jajamaru Kun', + 'Jaleco', + 1985, + array['Vs. Ninja Jajamaru Kun (Japan)'], + array['Arcade'], + '{"mame":["jajamaru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-platoon', + 'Vs. Platoon', + 'Ocean Software Limited', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["nvs_platoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-raid-on-bungeling-bay-rd4-2-b', + 'Vs. Raid on Bungeling Bay (RD4-2 B)', + 'Nintendo / Broderbund Software Inc.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["bnglngby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-slalom', + 'Vs. Slalom', + 'Rare Coin-It Inc.', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["vsslalom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-soccer', + 'Vs. Soccer', + 'Nintendo', + 1985, + array['Vs. Soccer (set SC4-2 A)'], + array['Sports'], + '{"mame":["vssoccer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-star-luster', + 'Vs. Star Luster', + 'Namco', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["starlstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-stroke-and-match-golf', + 'Vs. Stroke & Match Golf', + 'Nintendo', + 1984, + array['Vs. Stroke & Match Golf (Men Version, set GF4-2 F)'], + array['Sports'], + '{"mame":["smgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-super-captain-flag', + 'Vs. Super Captain Flag', + 'Jaleco', + 1993, + array['Vs. Super Captain Flag (Japan)'], + array['Arcade'], + '{"mame":["vscaptfl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'vs-super-mario-bros', + 'Vs. Super Mario Bros.', + 'Nintendo', + 1986, + array['Vs. Super Mario Bros. (set SM4-4 E)'], + array['Platformer'], + '{"mame":["suprmrio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-super-skykid', + 'Vs. Super SkyKid', + 'Namco', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["vsskykid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-super-xevious', + 'Vs. Super Xevious', + 'Namco', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["supxevs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-t-k-o-boxing', + 'Vs. T.K.O. Boxing', + 'Namco / Data East USA', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["tkoboxng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-tennis', + 'Vs. Tennis', + 'Nintendo Co., Ltd.', + 1984, + array['Vs. Tennis (Japan/USA, set TE A-3)'], + array['Sports'], + '{"mame":["vstennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-tetris', + 'Vs. Tetris', + 'Academysoft-Elorg', + 1987, + '{}'::text[], + array['Puzzle'], + '{"mame":["vstetris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-the-goonies', + 'Vs. The Goonies', + 'Konami', + 1986, + array['Vs. The Goonies (set E)'], + array['Arcade'], + '{"mame":["goonies"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-top-gun', + 'Vs. Top Gun', + 'Konami', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["topgun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-wrecking-crew', + 'Vs. Wrecking Crew', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["wrecking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vt100', + 'VT100', + 'Digital Equipment Corporation', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["vt100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt100.cpp"]}'::jsonb + ), + ( + 'vt102', + 'VT102', + 'Digital Equipment Corporation', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["vt102"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt100.cpp"]}'::jsonb + ), + ( + 'vt220', + 'VT220', + 'Digital Equipment Corporation', + 1983, + array['VT220 (Version 2.3)'], + array['Arcade'], + '{"mame":["vt220"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt220.cpp"]}'::jsonb + ), + ( + 'vt240', + 'VT240', + 'Digital Equipment Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["vt240"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt240.cpp"]}'::jsonb + ), + ( + 'vt320', + 'VT320', + 'Digital Equipment Corporation', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["vt320"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt320.cpp"]}'::jsonb + ), + ( + 'vt330', + 'VT330', + 'Digital Equipment Corporation', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["vt330"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt320.cpp"]}'::jsonb + ), + ( + 'vt52', + 'VT52', + 'ADI', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["adi_vt52"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/adi_vt52.cpp"]}'::jsonb + ), + ( + 'vt62-decscope', + 'VT62 DECscope', + 'Digital Equipment Corporation', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["vt62"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt62.cpp"]}'::jsonb + ), + ( + 'vulcan-venture-new', + 'Vulcan Venture (new)', + 'Konami', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["vulcan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twin16.cpp"]}'::jsonb + ), + ( + 'vulgus', + 'Vulgus', + 'Capcom', + 1984, + array['Vulgus (set 1)'], + array['Arcade'], + '{"mame":["vulgus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/vulgus.cpp"]}'::jsonb + ), + ( + 'vx600-programmable-matrix-synthesizer', + 'VX600 Programmable Matrix Synthesizer', + 'Akai', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["vx600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/akaivx600.cpp"]}'::jsonb + ), + ( + 'wacko', + 'Wacko', + 'Bally Midway', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wacko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'wai-wai-jockey', + 'Wai Wai Jockey', + 'Konami', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["waijockey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/quickpick5.cpp"]}'::jsonb + ), + ( + 'wai-wai-jockey-gate-in', + 'Wai Wai Jockey Gate-In!', + 'Jaleco / Casio', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["wwjgtin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/lasso.cpp"]}'::jsonb + ), + ( + 'waiwai-drive', + 'WaiWai Drive', + 'MOSS / Sammy', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["waidrive"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'wakeng', + 'Wakeng', + 'Sealy', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["wakeng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/menghong.cpp"]}'::jsonb + ), + ( + 'waku-waku-7', + 'Waku Waku 7', + 'Sunsoft', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["wakuwak7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'waku-waku-anpanman', + 'Waku Waku Anpanman', + 'Sega', + 1992, + array['Waku Waku Anpanman (Rev A)'], + array['Arcade'], + '{"mame":["wwanpanm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'waku-waku-doubutsu-land-tonton', + 'Waku Waku Doubutsu Land TonTon', + 'Success / Taiyo Jidoki', + 1987, + array['Waku Waku Doubutsu Land TonTon (Japan)'], + array['Arcade'], + '{"mame":["tonton"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/tonton.cpp"]}'::jsonb + ), + ( + 'waku-waku-jumbo', + 'Waku Waku Jumbo', + 'Sega', + 1990, + array['Waku Waku Jumbo (Rev A)'], + array['Arcade'], + '{"mame":["wwjumbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'waku-waku-marine', + 'Waku Waku Marine', + 'Sega', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["wwmarine"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'waku-waku-pajero', + 'Waku Waku Pajero', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["wwpajero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'waku-waku-shinkansen-j-971031-v0-002', + 'Waku Waku Shinkansen (J 971031 V0.002)', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["wwshin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'waku-waku-sonic-patrol-car', + 'Waku Waku Sonic Patrol Car', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["soniccar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'waku-waku-thomas', + 'Waku Waku Thomas', + 'Banpresto', + 1993, + array['Waku Waku Thomas (Japan)'], + array['Arcade'], + '{"mame":["wwthomas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'waku-waku-ultraman-racing', + 'Waku Waku Ultraman Racing', + 'Sega', + 1996, + '{}'::text[], + array['Racing'], + '{"mame":["ultracin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'wall-crash', + 'Wall Crash', + 'Midcoin', + 1984, + array['Wall Crash (set 1)'], + array['Arcade'], + '{"mame":["wallc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midcoin/wallc.cpp"]}'::jsonb + ), + ( + 'wall-street', + 'Wall Street', + 'Century Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wallst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'wally-wo-sagase-fd1094-317-0197b', + 'Wally wo Sagase! (FD1094 317-0197B)', + 'Sega', + 1992, + array['Wally wo Sagase! (rev B, Japan, 2 players) (FD1094 317-0197B)'], + array['Arcade'], + '{"mame":["wwallyj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'wan-wan-dash', + 'Wan Wan Dash', + 'Amuzy Corporation', + 2007, + array['Wan Wan Dash (Japan, ver 1.01)'], + array['Arcade'], + '{"mame":["wwdash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'wang-professional-computer', + 'Wang Professional Computer', + 'Wang Laboratories', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["wangpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wang/wangpc.cpp"]}'::jsonb + ), + ( + 'wangan-midnight', + 'Wangan Midnight', + 'Namco', + 2001, + array['Wangan Midnight (WMN1 Ver. A)'], + array['Arcade'], + '{"mame":["wanganmd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'wangan-midnight-maximum-tune-gdx-0009b', + 'Wangan Midnight Maximum Tune (GDX-0009B)', + 'Namco', + 2004, + array['Wangan Midnight Maximum Tune (Export, Rev B) (GDX-0009B)'], + array['Arcade'], + '{"mame":["wangmid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'wangan-midnight-maximum-tune-2-gdx-0016a', + 'Wangan Midnight Maximum Tune 2 (GDX-0016A)', + 'Namco', + 2005, + array['Wangan Midnight Maximum Tune 2 (Export, Rev A) (GDX-0016A)'], + array['Arcade'], + '{"mame":["wangmid2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'wangan-midnight-r', + 'Wangan Midnight R', + 'Namco', + 2002, + array['Wangan Midnight R (WMR1 Ver. A)'], + array['Arcade'], + '{"mame":["wanganmr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'wanikko-punch', + 'Wanikko Punch', + 'Amuzy Corporation', + 2005, + array['Wanikko Punch (Japan, ver 1.20)'], + array['Arcade'], + '{"mame":["wanpunch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'wanpaku-fishing', + 'Wanpaku Fishing', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["wfishing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'wanpaku-pirates', + 'Wanpaku Pirates', + 'Amuzy Corporation', + 2006, + array['Wanpaku Pirates (Japan, ver 1.00)'], + array['Arcade'], + '{"mame":["wanpakup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'wanpaku-safari-j-981109-v1-000', + 'Wanpaku Safari (J 981109 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["wasafari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'wanted', + 'Wanted', + 'Sigma Enterprises Inc.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["wanted"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'wanted-sega', + 'Wanted (Sega)', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wantsega"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'wantouchable', + 'Wantouchable', + 'Sammy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["wantouch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'war-gods-hd-10-09-1996-dual-resolution', + 'War Gods (HD 10/09/1996 - Dual Resolution)', + 'Midway', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["wargods"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midvunit.cpp"]}'::jsonb + ), + ( + 'war-iii-cherry-best', + 'War III Cherry Best', + 'S.B.E.', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["war3cb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'war-mission-wm-04-06-87', + 'War Mission (WM 04/06/87)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_war"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'war-of-aero-project-meiou', + 'War of Aero - Project MEIOU', + 'Yang Cheng', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["wrofaero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'war-of-the-bugs-or-monsterous-manouvers-in-a-mushroom-maze', + 'War of the Bugs or Monsterous Manouvers in a Mushroom Maze', + 'Armenia / Food and Fun Corp', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["warofbug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'war-of-the-worlds', + 'War of the Worlds', + 'Cinematronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["wotw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'war-final-assault-guts-1-3-apr-20-1999-game-apr-20-1999', + 'War: Final Assault (GUTS 1.3 Apr 20 1999, GAME Apr 20 1999)', + 'Atari Games', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["warfa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'warai-no-hana-tenshi', + 'Warai no Hana Tenshi', + 'Dynax', + 1991, + array['Warai no Hana Tenshi (Japan)'], + array['Arcade'], + '{"mame":["warahana"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'wardner', + 'Wardner', + 'Toaplan / Taito Corporation Japan', + 1987, + array['Wardner (World)'], + array['Arcade'], + '{"mame":["wardner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/wardner.cpp"]}'::jsonb + ), + ( + 'warlords', + 'Warlords', + 'Atari', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["warlords"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/centiped.cpp"]}'::jsonb + ), + ( + 'warp-and-warp', + 'Warp & Warp', + 'Namco', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["warpwarp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'warp-speed', + 'Warp Speed', + 'Meadows Games, Inc.', + null, + array['Warp Speed (prototype)'], + array['Arcade'], + '{"mame":["warpsped"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/warpsped.cpp"]}'::jsonb + ), + ( + 'warp-1', + 'Warp-1', + 'Sun Electronics', + 1979, + array['Warp-1 (Japan)'], + array['Arcade'], + '{"mame":["warp1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/dai3wksi.cpp"]}'::jsonb + ), + ( + 'warrior', + 'Warrior', + 'Vectorbeam', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["warrior"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'warrior-blade-rastan-saga-episode-iii', + 'Warrior Blade - Rastan Saga Episode III', + 'Taito Corporation', + 1991, + array['Warrior Blade - Rastan Saga Episode III (Japan)'], + array['Platformer'], + '{"mame":["warriorb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/warriorb.cpp"]}'::jsonb + ), + ( + 'warriors-of-fate', + 'Warriors of Fate', + 'Capcom', + 1992, + array['Warriors of Fate (World 921031)'], + array['Arcade'], + '{"mame":["wof"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'watashiha-suzumechan', + 'Watashiha Suzumechan', + 'Dyna Electronics', + 1986, + array['Watashiha Suzumechan (Japan)'], + array['Arcade'], + '{"mame":["suzume"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'water-balls', + 'Water Balls', + 'ABM', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["watrball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/blmbycar.cpp"]}'::jsonb + ), + ( + 'water-match-315-5064', + 'Water Match (315-5064)', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["wmatch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'water-ski', + 'Water Ski', + 'Taito Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["waterski"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'water-nymph', + 'Water-Nymph', + 'Subsino', + 1996, + array['Water-Nymph (Ver. 1.4)'], + array['Arcade'], + '{"mame":["wtrnymph"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'wave-runner', + 'Wave Runner', + 'Sega', + 1996, + array['Wave Runner (Japan, Revision A)'], + array['Arcade'], + '{"mame":["waverunr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'wave-runner-gp', + 'Wave Runner GP', + 'CRI / Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["wrungp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'wavestation-a-d', + 'WaveStation A/D', + 'Korg', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["korgwsad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgws.cpp"]}'::jsonb + ), + ( + 'wavestation-ex', + 'WaveStation EX', + 'Korg', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["korgwsex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgws.cpp"]}'::jsonb + ), + ( + 'wavestation-sr', + 'WaveStation SR', + 'Korg', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["korgwssr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgws.cpp"]}'::jsonb + ), + ( + 'wayne-gretzky-s-3d-hockey', + 'Wayne Gretzky''s 3D Hockey', + 'Atari Games', + 1996, + array['Wayne Gretzky''s 3D Hockey (ver 1.3)'], + array['Arcade'], + '{"mame":["wg3dh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'weatherstar-4000', + 'WeatherSTAR 4000', + 'Applied Microelectronics Institute/The Weather Channel', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["wxstar4k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amirix/wxstar4000.cpp"]}'::jsonb + ), + ( + 'wec-le-mans-24-v2-01', + 'WEC Le Mans 24 (v2.01)', + 'Konami', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["wecleman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/wecleman.cpp"]}'::jsonb + ), + ( + 'wedding-rhapsody-gx624-jaa', + 'Wedding Rhapsody (GX624 JAA)', + 'Konami', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["weddingr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'welltris', + 'Welltris', + 'Video System Co.', + 1991, + array['Welltris (World?, 2 players)'], + array['Arcade'], + '{"mame":["welltris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/welltris.cpp"]}'::jsonb + ), + ( + 'western-dream-gold', + 'Western Dream Gold', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["westdrmg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'western-venture', + 'Western Venture', + 'Astro Corp.', + 2008, + array['Western Venture (Ver. AA.02.D)'], + array['Arcade'], + '{"mame":["westvent"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'wgp-2-real-race-feeling', + 'WGP 2: Real Race Feeling', + 'Taito Corporation Japan', + 1990, + array['WGP 2: Real Race Feeling (World)'], + array['Arcade'], + '{"mame":["wgp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/wgp.cpp"]}'::jsonb + ), + ( + 'wgp-real-race-feeling', + 'WGP: Real Race Feeling', + 'Taito Corporation Japan', + 1989, + array['WGP: Real Race Feeling (World)'], + array['Arcade'], + '{"mame":["wgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/wgp.cpp"]}'::jsonb + ), + ( + 'wheel-of-fortune', + 'Wheel Of Fortune', + 'GameTek', + 1989, + array['Wheel Of Fortune (set 1)'], + array['Arcade'], + '{"mame":["wfortune"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'wheel-of-fortune-p517-v16-english', + 'Wheel of Fortune (P517 V16, English)', + 'Coinmaster-Gaming, Ltd.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["wof_v16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmvga.cpp"]}'::jsonb + ), + ( + 'wheels-and-fire', + 'Wheels & Fire', + 'TCH', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["wheelfir"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/wheelfir.cpp"]}'::jsonb + ), + ( + 'wheels-ii', + 'Wheels II', + 'Midway', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["wheelsii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwayttl.cpp"]}'::jsonb + ), + ( + 'wheels-runner', + 'Wheels Runner', + 'International Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["wheelrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/fantland.cpp"]}'::jsonb + ), + ( + 'white-russia', + 'White Russia', + 'Konami', + null, + array['White Russia (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["whiterus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'who-dunit', + 'Who Dunit', + 'Exidy', + 1988, + array['Who Dunit (version 9.0)'], + array['Arcade'], + '{"mame":["whodunit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'who-dunnit', + 'Who Dunnit', + 'WMS', + 1999, + array['Who Dunnit (Russian)'], + array['Arcade'], + '{"mame":["wdun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'who-shot-johnny-rock-v1-6', + 'Who Shot Johnny Rock? (v1.6)', + 'American Laser Games', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["wsjr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'wicat-system-150', + 'Wicat System 150', + 'Millennium Systems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wicat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wicat/wicat.cpp"]}'::jsonb + ), + ( + 'wicked-witch', + 'Wicked Witch', + 'Astro Corp.', + 2005, + array['Wicked Witch (Ver. AA.01.A)'], + array['Arcade'], + '{"mame":["wwitch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'wiggie-waggie', + 'Wiggie Waggie', + 'Promat', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["wiggie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'wikid-joystick-14-in-1', + 'Wikid Joystick 14-in-1', + 'Advance Bright Ltd. / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ablwikid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'wild-arrow-color-standard-v4-8', + 'Wild Arrow (color, Standard V4.8)', + 'Meyco Games, Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wldarrow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/meyc8080.cpp"]}'::jsonb + ), + ( + 'wild-card-olympic-games-v2-0', + 'Wild Card (Olympic Games, v2.0)', + 'Olympic Video Gaming PTY LTD', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["olym65wc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'wild-cat', + 'Wild Cat', + 'Excel', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["wcat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'wild-cat-3', + 'Wild Cat 3', + 'E.A.I.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["wcat3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'wild-fang-tecmo-knight', + 'Wild Fang / Tecmo Knight', + 'Tecmo', + 1989, + array['Wild Fang / Tecmo Knight (World?)'], + array['Arcade'], + '{"mame":["wildfang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/gaiden.cpp"]}'::jsonb + ), + ( + 'wild-gunman-playchoice-10', + 'Wild Gunman (PlayChoice-10)', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_wgnmn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'wild-guns', + 'Wild Guns', + 'bootleg', + 1996, + array['Wild Guns (SNES bootleg)'], + array['Arcade'], + '{"mame":["wldgunsb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'wild-pilot', + 'Wild Pilot', + 'Jaleco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["wildplt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'wild-riders', + 'Wild Riders', + 'Wow Entertainment / Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["wldrider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'wild-streak', + 'Wild Streak', + 'WMS', + 2000, + array['Wild Streak (Russian)'], + array['Arcade'], + '{"mame":["wldstrek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'wild-thing-atronic', + 'Wild Thing (Atronic)', + 'Atronic', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["atrwild"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'wild-west-c-o-w-boys-of-moo-mesa', + 'Wild West C.O.W.-Boys of Moo Mesa', + 'Konami', + 1992, + array['Wild West C.O.W.-Boys of Moo Mesa (ver EAB)'], + array['Arcade'], + '{"mame":["moomesa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/moo.cpp"]}'::jsonb + ), + ( + 'wild-western', + 'Wild Western', + 'Taito Corporation', + 1982, + array['Wild Western (set 1)'], + array['Arcade'], + '{"mame":["wwestern"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'wild-witch', + 'Wild Witch', + 'Video Klein', + 2001, + array['Wild Witch (Export, 6T/12T ver 1.84A)'], + array['Arcade'], + '{"mame":["wldwitch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'williams-multigame', + 'Williams Multigame', + 'hack (Clay Cowgill)', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["wmg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/wmg.cpp"]}'::jsonb + ), + ( + 'willow', + 'Willow', + 'Capcom', + 1989, + array['Willow (World)'], + array['Arcade'], + '{"mame":["willow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'wily-tower', + 'Wily Tower', + 'Irem', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["wilytowr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m63.cpp"]}'::jsonb + ), + ( + 'win-cherry', + 'Win Cherry', + 'Videostar', + 2001, + array['Win Cherry (ver 0.16 - 19990219)'], + array['Arcade'], + '{"mame":["wcherry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'win-lose-or-draw-senario', + 'Win, Lose or Draw (Senario)', + 'Senario', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["senwld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'winding-heat-eaa-euro-v2-11', + 'Winding Heat (EAA, Euro v2.11)', + 'Konami', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["windheat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/zr107.cpp"]}'::jsonb + ), + ( + 'windjammer-021216', + 'Windjammer (021216)', + 'Igrosoft', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["windjamr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'windjammers-flying-power-disc', + 'Windjammers / Flying Power Disc', + 'Data East Corporation', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["wjammers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'wing-force', + 'Wing Force', + 'A.I (Atlus license)', + 1993, + array['Wing Force (Japan, prototype)'], + array['Arcade'], + '{"mame":["wingforc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'wing-shooting-championship-v2-00', + 'Wing Shooting Championship V2.00', + 'Sammy USA Corporation', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["wschamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'wing-war', + 'Wing War', + 'Sega', + 1994, + array['Wing War (World)'], + array['Arcade'], + '{"mame":["wingwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model1.cpp"]}'::jsonb + ), + ( + 'wink', + 'Wink', + 'Midcoin', + 1985, + array['Wink (set 1)'], + array['Arcade'], + '{"mame":["wink"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midcoin/wink.cpp"]}'::jsonb + ), + ( + 'winner', + 'Winner', + 'Videos A A', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["winner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videosaa.cpp"]}'::jsonb + ), + ( + 'winner-s-wheel-magical-spot', + 'Winner''s Wheel - Magical Spot', + 'Sega', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["wwmspot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/winclub.cpp"]}'::jsonb + ), + ( + 'winners-circle-82', + 'Winners Circle (82)', + 'Corona Co, LTD.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["winner82"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/corona.cpp"]}'::jsonb + ), + ( + 'winning-bid-english', + 'Winning Bid (English)', + 'WMS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["winbid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'winning-run', + 'Winning Run', + 'Namco', + 1988, + array['Winning Run (World) (89/06/06, Ver.09)'], + array['Arcade'], + '{"mame":["winrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21.cpp"]}'::jsonb + ), + ( + 'winning-run-91', + 'Winning Run ''91', + 'Namco', + 1991, + array['Winning Run ''91 (Japan) (1991/03/05, Main Ver 1.0, Sub Ver 1.0)'], + array['Arcade'], + '{"mame":["winrun91"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21.cpp"]}'::jsonb + ), + ( + 'winning-run-suzuka-grand-prix', + 'Winning Run Suzuka Grand Prix', + 'Namco', + 1989, + array['Winning Run Suzuka Grand Prix (Japan) (89/12/03, Ver.02)'], + array['Arcade'], + '{"mame":["winrungp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21.cpp"]}'::jsonb + ), + ( + 'winning-spike', + 'Winning Spike', + 'Konami', + 1997, + array['Winning Spike (ver EAA)'], + array['Arcade'], + '{"mame":["winspike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'winter-heat-juet-971012-v1-000', + 'Winter Heat (JUET 971012 V1.000)', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["winterht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'wipeout-ramtek', + 'Wipeout (Ramtek)', + 'Ramtek', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["wipeormt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/ramtek.cpp"]}'::jsonb + ), + ( + 'wiping', + 'Wiping', + 'Nichibutsu', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wiping"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/wiping.cpp"]}'::jsonb + ), + ( + 'wireless-tennis-pal-play-vision', + 'Wireless Tennis (PAL, Play Vision)', + 'Macro Winners (Play Vision license)', + 2004, + '{}'::text[], + array['Sports'], + '{"mame":["sporztn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'wit-s', + 'Wit''s', + 'Athena (Visco license)', + 1989, + array['Wit''s (Japan)'], + array['Arcade'], + '{"mame":["wits"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'witch', + 'Witch', + 'Vic Tokai (Excellent System license)', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["witch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/witch.cpp"]}'::jsonb + ), + ( + 'witch-card', + 'Witch Card', + 'Video Klein?', + 1991, + array['Witch Card (Video Klein CPU box, set 1)'], + array['Arcade'], + '{"mame":["witchcrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'witch-game', + 'Witch Game', + 'Video Klein', + 1991, + array['Witch Game (Video Klein, set 1)'], + array['Arcade'], + '{"mame":["witchgme"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'witch-jack', + 'Witch Jack', + 'Video Klein', + 1996, + array['Witch Jack (Export, 6T/12T ver 0.87-89)'], + array['Arcade'], + '{"mame":["wtchjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'witch-royal', + 'Witch Royal', + 'Video Klein', + null, + array['Witch Royal (Export version 2.1)'], + array['Arcade'], + '{"mame":["witchryl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'witch-strike', + 'Witch Strike', + 'Video Klein', + 1992, + array['Witch Strike (Export, 6T/12T ver 1.01A)'], + array['Arcade'], + '{"mame":["wstrike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'witch-up-and-down', + 'Witch Up & Down', + 'Video Klein', + 1998, + array['Witch Up & Down (Export, 6T/12T ver 1.02)'], + array['Arcade'], + '{"mame":["wupndown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'wivern-wings', + 'Wivern Wings', + 'SemiCom', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["wivernwg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'wiz', + 'Wiz', + 'Seibu Kaihatsu', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["wiz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/wiz.cpp"]}'::jsonb + ), + ( + 'wiz-warz', + 'Wiz Warz', + 'Mylstar', + 1984, + array['Wiz Warz (prototype)'], + array['Arcade'], + '{"mame":["wizwarz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'wizard', + 'Wizard', + 'A.A.', + 1999, + array['Wizard (Ver 1.0)'], + array['Arcade'], + '{"mame":["wizard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'wizard-fire', + 'Wizard Fire', + 'Data East Corporation', + 1992, + array['Wizard Fire (Over Sea v2.1)'], + array['Arcade'], + '{"mame":["wizdfire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/rohga.cpp"]}'::jsonb + ), + ( + 'wizard-of-wor', + 'Wizard of Wor', + 'Dave Nutting Associates / Midway', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["wow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'wizard-oz-750', + 'Wizard OZ-750', + 'Sharp', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["oz750"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/rex6000.cpp"]}'::jsonb + ), + ( + 'wk-1800', + 'WK-1800', + 'Casio', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["wk1800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/wk1800.cpp"]}'::jsonb + ), + ( + 'wms-setup-clear-chips', + 'WMS SetUp/Clear Chips', + 'WMS', + null, + array['WMS SetUp/Clear Chips (set 1)'], + array['Arcade'], + '{"mame":["wms"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'wolf-pack', + 'Wolf Pack', + 'Atari', + 1978, + array['Wolf Pack (prototype)'], + array['Arcade'], + '{"mame":["wolfpack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/wolfpack.cpp"]}'::jsonb + ), + ( + 'won-tertainment-happy-channel', + 'Won! Tertainment Happy Channel', + 'Capcom / Tomy', + 2008, + array['Won! Tertainment Happy Channel (Ver.1.00E 2008/02/21)'], + array['Arcade'], + '{"mame":["wontame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'won-tertainment-music-channel-v1-00', + 'Won!Tertainment Music Channel (v1.00)', + 'Capcom', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["wontmuch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'wonder-boy', + 'Wonder Boy', + 'Escape (Sega license)', + 1986, + array['Wonder Boy (set 1, 315-5177)'], + array['Arcade'], + '{"mame":["wboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'wonder-boy-iii-monster-lair-8751-317-0098', + 'Wonder Boy III - Monster Lair (8751 317-0098)', + 'Sega / Westone', + 1988, + array['Wonder Boy III - Monster Lair (set 6, World, System 16B) (8751 317-0098)'], + array['Arcade'], + '{"mame":["wb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'wonder-boy-monster-land', + 'Wonder Boy: Monster Land', + 'Sega / Westone', + 1987, + array['Wonder Boy: Monster Land (Japan New Ver., MC-8123, 317-0043)'], + array['Arcade'], + '{"mame":["wbml"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'wonder-circus', + 'Wonder Circus', + 'Cobra', + null, + array['Wonder Circus (Japan, v1.1.1)'], + array['Arcade'], + '{"mame":["wcircus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'wonder-league-96', + 'Wonder League ''96', + 'SemiCom', + 1996, + array['Wonder League ''96 (Korea)'], + array['Arcade'], + '{"mame":["wondl96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'wonder-league-star-sok-magicball-fighting', + 'Wonder League Star - Sok-Magicball Fighting', + 'Mijin', + 1995, + array['Wonder League Star - Sok-Magicball Fighting (Korea)'], + array['Arcade'], + '{"mame":["wlstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'wonder-momo', + 'Wonder Momo', + 'Namco', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["wndrmomo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos86.cpp"]}'::jsonb + ), + ( + 'wonder-planet', + 'Wonder Planet', + 'Data East Corporation', + 1987, + array['Wonder Planet (Japan)'], + array['Arcade'], + '{"mame":["wndrplnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/karnov.cpp"]}'::jsonb + ), + ( + 'wonder-stick', + 'Wonder Stick', + 'Yun Sung', + null, + array['Wonder Stick (set 1)'], + array['Arcade'], + '{"mame":["wondstck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp"]}'::jsonb + ), + ( + 'wonderswan', + 'WonderSwan', + 'Bandai', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["wswan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bandai/wswan.cpp"]}'::jsonb + ), + ( + 'woodpecker', + 'Woodpecker', + 'Amenip (Palcom Queen River)', + 1981, + array['Woodpecker (set 1)'], + array['Arcade'], + '{"mame":["woodpeck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'world-adventure', + 'World Adventure', + 'Logic / F2 System', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["worldadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'world-beach-volley', + 'World Beach Volley', + 'Playmark', + 1995, + array['World Beach Volley (set 1, PIC16C57 audio CPU)'], + array['Arcade'], + '{"mame":["wbeachvl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/playmark.cpp"]}'::jsonb + ), + ( + 'world-championship-soccer-mega-tech', + 'World Championship Soccer (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Sports'], + '{"mame":["mt_wcsoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'world-class-bowling-v1-66', + 'World Class Bowling (v1.66)', + 'Incredible Technologies', + 1995, + '{}'::text[], + array['Sports'], + '{"mame":["wcbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-european-clubs-2004-2005-cdv-10013', + 'World Club Champion Football European Clubs 2004-2005 (CDV-10013)', + 'Sega', + 2005, + array['World Club Champion Football European Clubs 2004-2005 (Asia) (CDV-10013)'], + array['Sports'], + '{"mame":["wccf310j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-european-clubs-2004-2005-ver-1-2-cdv-10021', + 'World Club Champion Football European Clubs 2004-2005 Ver.1.2 (CDV-10021)', + 'Sega', + 2006, + array['World Club Champion Football European Clubs 2004-2005 Ver.1.2 (Japan) (CDV-10021)'], + array['Sports'], + '{"mame":["wccf341j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-european-clubs-2004-2005-ver-3-22-export-cdv-10015p', + 'World Club Champion Football European Clubs 2004-2005 Ver.3.22 (Export) (CDV-10015P)', + 'Sega', + 2005, + '{}'::text[], + array['Sports'], + '{"mame":["wccf322e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-european-clubs-2005-2006-cdv-10025', + 'World Club Champion Football European Clubs 2005-2006 (CDV-10025)', + 'Sega', + 2006, + array['World Club Champion Football European Clubs 2005-2006 (Japan) (CDV-10025)'], + array['Sports'], + '{"mame":["wccf400j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-european-clubs-2005-2006-export-cdv-10027', + 'World Club Champion Football European Clubs 2005-2006 (Export) (CDV-10027)', + 'Sega', + 2006, + '{}'::text[], + array['Sports'], + '{"mame":["wccf420e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-serie-a-2001-2002-dimm-firm-ver-3-03-cdp-10003', + 'World Club Champion Football Serie A 2001-2002 DIMM FIRM Ver.3.03 (CDP-10003)', + 'Hitmaker / Sega', + 2002, + '{}'::text[], + array['Sports'], + '{"mame":["wccf1dup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-serie-a-2001-2002-ver-2-cdp-10001c', + 'World Club Champion Football Serie A 2001-2002 Ver.2 (CDP-10001C)', + 'Hitmaker / Sega', + 2003, + array['World Club Champion Football Serie A 2001-2002 Ver.2 (Japan) (CDP-10001C)'], + array['Sports'], + '{"mame":["wccf116"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-serie-a-2002-2003-drive-checker-cdv-10007', + 'World Club Champion Football Serie A 2002-2003 Drive Checker (CDV-10007)', + 'Hitmaker / Sega', + 2004, + '{}'::text[], + array['Sports'], + '{"mame":["wccf2chk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-serie-a-2002-2003-ver-2-12-italy-cdv-10002', + 'World Club Champion Football Serie A 2002-2003 Ver.2.12 (Italy) (CDV-10002)', + 'Hitmaker / Sega', + 2004, + '{}'::text[], + array['Sports'], + '{"mame":["wccf212e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-serie-a-2002-2003-ver-2-34-cdv-10008', + 'World Club Champion Football Serie A 2002-2003 Ver.2.34 (CDV-10008)', + 'Hitmaker / Sega', + 2004, + array['World Club Champion Football Serie A 2002-2003 Ver.2.34 (Japan) (CDV-10008)'], + array['Sports'], + '{"mame":["wccf234j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-combat', + 'World Combat', + 'Konami', + 2002, + array['World Combat (ver AAD:B)'], + array['Arcade'], + '{"mame":["wcombat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'world-cup', + 'World Cup', + 'Nazionale Elettronica', + 2001, + array['World Cup (Ver 1.5)'], + array['Arcade'], + '{"mame":["wcup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'world-cup-volley-95', + 'World Cup Volley ''95', + 'Data East Corporation', + 1995, + array['World Cup Volley ''95 (Asia v1.0)'], + array['Arcade'], + '{"mame":["wcvol95"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco156.cpp"]}'::jsonb + ), + ( + 'world-darts', + 'World Darts', + 'Arcadia Systems', + 1987, + array['World Darts (Arcadia, set 1, V 2.1)'], + array['Arcade'], + '{"mame":["ar_dart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'world-heroes-alm-005', + 'World Heroes (ALM-005)', + 'Alpha Denshi Co.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["wh1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'world-heroes-2-alm-006-alh-006', + 'World Heroes 2 (ALM-006 ~ ALH-006)', + 'ADK', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["wh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'world-heroes-2-jet-adm-007-adh-007', + 'World Heroes 2 Jet (ADM-007 ~ ADH-007)', + 'ADK / SNK', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["wh2j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'world-heroes-perfect', + 'World Heroes Perfect', + 'ADK / SNK', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["whp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'world-kicks', + 'World Kicks', + 'Namco', + 2000, + array['World Kicks (World, WK2 Ver.A)'], + array['Arcade'], + '{"mame":["wldkicks"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-pk-soccer-v2', + 'World PK Soccer V2', + 'Jaleco', + 1996, + array['World PK Soccer V2 (ver 1.1)'], + array['Sports'], + '{"mame":["wpksocv2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'world-rally-2-twin-racing', + 'World Rally 2: Twin Racing', + 'Gaelco', + 1995, + array['World Rally 2: Twin Racing (version 20-07, checksum B1B8)'], + array['Racing'], + '{"mame":["wrally2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'world-rally-championship', + 'World Rally Championship', + 'Gaelco', + 1993, + array['World Rally Championship (version 1.0, checksum DE0D, 08 Nov 1993)'], + array['Arcade'], + '{"mame":["wrally"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/wrally.cpp"]}'::jsonb + ), + ( + 'world-series-99-super-major-league-99', + 'World Series 99 / Super Major League 99', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["smlg99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-series-baseball-super-major-league-gds-0010', + 'World Series Baseball / Super Major League (GDS-0010)', + 'Sega', + 2001, + '{}'::text[], + array['Sports'], + '{"mame":["wsbbgd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-series-the-season', + 'World Series: The Season', + 'Cinematronics', + 1985, + array['World Series: The Season (rev 1)'], + array['Arcade'], + '{"mame":["wseries"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'world-soccer-finals', + 'World Soccer Finals', + 'Leland Corporation', + 1990, + array['World Soccer Finals (rev 4)'], + array['Sports'], + '{"mame":["wsf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'world-soccer-tv-game-10-in-1-pal', + 'World Soccer TV Game 10-in-1 (PAL)', + 'Taikee', + null, + '{}'::text[], + array['Sports'], + '{"mame":["wldsoctv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'world-soccer-winning-eleven-arcade-game-2003', + 'World Soccer Winning Eleven Arcade Game 2003', + 'Konami', + 2003, + '{}'::text[], + array['Sports'], + '{"mame":["wswe2k3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython.cpp"]}'::jsonb + ), + ( + 'world-soccer-winning-eleven-arcade-game-style', + 'World Soccer Winning Eleven Arcade Game Style', + 'Konami', + 2002, + '{}'::text[], + array['Sports'], + '{"mame":["wswe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython.cpp"]}'::jsonb + ), + ( + 'world-tennis', + 'World Tennis', + 'bootleg', + 1982, + '{}'::text[], + array['Sports'], + '{"mame":["wtennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'world-trophy-soccer-arcadia-v-3-0', + 'World Trophy Soccer (Arcadia, V 3.0)', + 'Arcadia Systems', + 1989, + '{}'::text[], + array['Sports'], + '{"mame":["ar_socc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'world-wars', + 'World Wars', + 'SNK', + 1987, + array['World Wars (World?)'], + array['Arcade'], + '{"mame":["worldwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'wow-new-fantasia-explicit', + 'WOW New Fantasia (Explicit)', + 'Comad', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["wownfant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'wow-wireless-gaming-pal', + 'Wow Wireless Gaming (PAL)', + 'Wow', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["wowwg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'wren-executive', + 'Wren Executive', + 'Thorn EMI', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["wren"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wren.cpp"]}'::jsonb + ), + ( + 'wrestle-war-8751-317-0103', + 'Wrestle War (8751 317-0103)', + 'Sega', + 1989, + array['Wrestle War (set 3, World) (8751 317-0103)'], + array['Arcade'], + '{"mame":["wrestwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'wrestle-war-mega-tech', + 'Wrestle War (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_wwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'wu-lin-zhengba', + 'Wu Lin Zhengba', + 'Huang Yeh', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["wlzb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["huangyeh/hy-9802.cpp"]}'::jsonb + ), + ( + 'wu-lu-fuxing', + 'Wu Lu Fuxing', + 'Huang Yeh', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["wlfx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["huangyeh/hy-9802.cpp"]}'::jsonb + ), + ( + 'wully-bully', + 'Wully Bully', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["wulybuly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'wwf-royal-rumble', + 'WWF Royal Rumble', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["wwfroyal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'wwf-superstars', + 'WWF Superstars', + 'Technos Japan', + 1989, + array['WWF Superstars (Europe)'], + array['Arcade'], + '{"mame":["wwfsstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/wwfsstar.cpp"]}'::jsonb + ), + ( + 'wwf-wrestlefest', + 'WWF WrestleFest', + 'Technos Japan (Tecmo license)', + 1991, + array['WWF WrestleFest (World)'], + array['Arcade'], + '{"mame":["wwfwfest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon3.cpp"]}'::jsonb + ), + ( + 'wwf-wrestlemania', + 'WWF: Wrestlemania', + 'Midway', + 1995, + array['WWF: Wrestlemania (rev 1.30 08/10/95)'], + array['Arcade'], + '{"mame":["wwfmania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwunit.cpp"]}'::jsonb + ), + ( + 'wy-100', + 'WY-100', + 'Wyse Technology', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["wy100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy100.cpp"]}'::jsonb + ), + ( + 'wy-120-v1-4', + 'WY-120 (v1.4)', + 'Wyse Technology', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["wy120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy150.cpp"]}'::jsonb + ), + ( + 'wy-150-v1-0', + 'WY-150 (v1.0)', + 'Wyse Technology', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["wy150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy150.cpp"]}'::jsonb + ), + ( + 'wy-160-v1-7', + 'WY-160 (v1.7)', + 'Wyse Technology', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["wy160"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy150.cpp"]}'::jsonb + ), + ( + 'wy-185es-v2-0', + 'WY-185ES (v2.0)', + 'Wyse Technology', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["wy185es"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy55.cpp"]}'::jsonb + ), + ( + 'wy-30-v1-8', + 'WY-30+ (v1.8)', + 'Wyse Technology', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["wy30p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy30p.cpp"]}'::jsonb + ), + ( + 'wy-325-v3-2', + 'WY-325 (v3.2)', + 'Wyse Technology', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["wy325"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy150.cpp"]}'::jsonb + ), + ( + 'wy-50', + 'WY-50', + 'Wyse Technology', + 1984, + array['WY-50 (Rev. E)'], + array['Arcade'], + '{"mame":["wy50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy50.cpp"]}'::jsonb + ), + ( + 'wy-55-v2-1', + 'WY-55 (v2.1)', + 'Wyse Technology', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["wy55"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy55.cpp"]}'::jsonb + ), + ( + 'wy-60-rbfng2', + 'WY-60 (RBFNG2)', + 'Wyse Technology', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["wy60"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy60.cpp"]}'::jsonb + ), + ( + 'wy-65-v2-1', + 'WY-65 (v2.1)', + 'Wyse Technology', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["wy65"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy55.cpp"]}'::jsonb + ), + ( + 'wy-75', + 'WY-75', + 'Wyse Technology', + 1984, + array['WY-75 (Rev. H)'], + array['Arcade'], + '{"mame":["wy75"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy50.cpp"]}'::jsonb + ), + ( + 'wy-85', + 'WY-85', + 'Wyse Technology', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["wy85"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy85.cpp"]}'::jsonb + ), + ( + 'wyvern-f-0', + 'Wyvern F-0', + 'Taito Corporation', + 1985, + array['Wyvern F-0 (Rev 1)'], + array['Arcade'], + '{"mame":["wyvernf0"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/wyvernf0.cpp"]}'::jsonb + ), + ( + 'x-five-jokers', + 'X Five Jokers', + 'Electronic Projects', + null, + array['X Five Jokers (Version 1.12)'], + array['Arcade'], + '{"mame":["x5jokers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl3.cpp"]}'::jsonb + ), + ( + 'x-multiply', + 'X Multiply', + 'Irem', + 1989, + array['X Multiply (World, M81 hardware)'], + array['Arcade'], + '{"mame":["xmultipl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'x-the-ball', + 'X the Ball', + 'Rare', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["xtheball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rare/xtheball.cpp"]}'::jsonb + ), + ( + 'x-tom-3d', + 'X Tom 3D', + 'Andamiro / Jamie System Development', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["xtom3d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'x-07', + 'X-07', + 'Canon', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["x07"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["canon/x07.cpp"]}'::jsonb + ), + ( + 'x-day-2', + 'X-Day 2', + 'Namco', + 1995, + array['X-Day 2 (Japan)'], + array['Arcade'], + '{"mame":["xday2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'x-men', + 'X-Men', + 'Konami', + 1992, + array['X-Men (4 Players ver EBA)'], + array['Beat em up'], + '{"mame":["xmen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/xmen.cpp"]}'::jsonb + ), + ( + 'x-men-vs-street-fighter', + 'X-Men Vs. Street Fighter', + 'Capcom', + 1996, + array['X-Men Vs. Street Fighter (Europe 961004)'], + array['Fighting', 'Beat em up'], + '{"mame":["xmvsf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'x-men-children-of-the-atom', + 'X-Men: Children of the Atom', + 'Capcom', + 1994, + array['X-Men: Children of the Atom (Europe 950331)'], + array['Beat em up'], + '{"mame":["xmcota"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'x-plan', + 'X-Plan', + 'Subsino', + 2006, + array['X-Plan (Ver. 101)'], + array['Arcade'], + '{"mame":["xplan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'x-train', + 'X-Train', + 'Subsino', + 1999, + array['X-Train (Ver. 1.3)'], + array['Arcade'], + '{"mame":["xtrain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'x-eye', + 'X''eye', + 'JVC', + 1993, + array['X''eye (USA, NTSC)'], + array['Arcade'], + '{"mame":["xeye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'x2222-final-debug', + 'X2222 (final debug?)', + 'Oriental Soft / Promat', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["x2222"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["promat/gstream.cpp"]}'::jsonb + ), + ( + 'x37', + 'X37', + 'Luxor', + 1985, + array['X37 (prototype)'], + array['Arcade'], + '{"mame":["x37"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["luxor/ds90.cpp"]}'::jsonb + ), + ( + 'xain-d-sleena', + 'Xain''d Sleena', + 'Technos Japan (Taito license)', + 1986, + array['Xain''d Sleena (World)'], + array['Arcade'], + '{"mame":["xsleena"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/xain.cpp"]}'::jsonb + ), + ( + 'xain-d-sleena-sc-3-0-magnet-system', + 'Xain''d Sleena (SC 3.0, Magnet System)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_xain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'xbox', + 'XBOX', + 'Microsoft', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["xbox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microsoft/xbox.cpp"]}'::jsonb + ), + ( + 'xds-19p', + 'XDS-19P', + 'Visual Technology', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["xds19p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["visual/xds.cpp"]}'::jsonb + ), + ( + 'xenon-arcadia-v-2-3', + 'Xenon (Arcadia, V 2.3)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_xeon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'xenophobe', + 'Xenophobe', + 'Bally Midway', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["xenophob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr68.cpp"]}'::jsonb + ), + ( + 'xerox-820-ii', + 'Xerox 820-II', + 'Xerox', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["x820ii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["xerox/xerox820.cpp"]}'::jsonb + ), + ( + 'xevious-namco', + 'Xevious (Namco)', + 'Namco', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["xevious"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/galaga.cpp"]}'::jsonb + ), + ( + 'xevious-3d-g', + 'Xevious 3D/G', + 'Namco', + 1995, + array['Xevious 3D/G (World, XV32/VER.B)'], + array['Arcade'], + '{"mame":["xevi3dg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'xexex', + 'Xexex', + 'Konami', + 1991, + array['Xexex (ver EAA)'], + array['Arcade'], + '{"mame":["xexex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/xexex.cpp"]}'::jsonb + ), + ( + 'xiaochou-jianianhua-s100cn', + 'Xiaochou Jianianhua (S100CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["xcjnh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'xiaoyao-dou-dizhu-v216cn', + 'Xiaoyao Dou Dizhu (V216CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["xyddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'xin-jin-huangguan-v400cn', + 'Xin Jin Huangguan (V400CN)', + 'IGS', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["xjinhuang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'xing-wireless-interactive-tv-game-wi-tv-zone-48-in-1', + 'Xing Wireless Interactive TV Game ''Wi TV Zone'' 48-in-1', + 'Xing', + null, + array['Xing Wireless Interactive TV Game ''Wi TV Zone'' 48-in-1 (Europe, PAL)'], + array['Arcade'], + '{"mame":["xing48"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'xingyun-caishen', + 'Xingyun Caishen', + 'Huang Yeh', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["xycs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["huangyeh/hy-268a.cpp"]}'::jsonb + ), + ( + 'xingyun-dou-dizhu', + 'Xingyun Dou Dizhu', + 'Herb Home', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["xyddzhh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/bmcpokr.cpp"]}'::jsonb + ), + ( + 'xingyun-manguan', + 'Xingyun Manguan', + 'IGS', + 1996, + array['Xingyun Manguan (China, V651C, set 1)'], + array['Arcade'], + '{"mame":["xymg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs011.cpp"]}'::jsonb + ), + ( + 'xingyun-pao-de-kuai-v106cn', + 'Xingyun Pao De Kuai (V106CN)', + 'IGS', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["xypdk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'xingyun-paomadi-super-v401cn', + 'Xingyun Paomadi Super (V401CN)', + 'IGS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["xypmd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_68k_023vid.cpp"]}'::jsonb + ), + ( + 'xiyou-douniu-s110cn', + 'Xiyou Douniu (S110CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["xydn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'xm200-orchestra-module', + 'XM200 Orchestra Module', + 'Orla', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["xm200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orla/xm200.cpp"]}'::jsonb + ), + ( + 'xor-world', + 'Xor World', + 'Gaelco', + 1990, + array['Xor World (different hardware, ver 1.1, checksum 3333BA, prototype)', 'Xor World (Modular System, prototype, set 1)', 'Xor World (ver 1.2, checksum DB5D0F, prototype)'], + array['Arcade'], + '{"mame":["xorwflat","xorwldms","xorworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp","gaelco/xorworld_ms.cpp","gaelco/xorworld.cpp"]}'::jsonb + ), + ( + 'xpander', + 'Xpander', + 'Oberheim', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["xpander"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["oberheim/xpander.cpp"]}'::jsonb + ), + ( + 'xtreme-rally-off-beat-racer', + 'Xtreme Rally / Off Beat Racer!', + 'SNK', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["xrally"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'xtrial-racing', + 'Xtrial Racing', + 'Konami', + 2002, + array['Xtrial Racing (ver JAB)'], + array['Racing'], + '{"mame":["xtrial"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'xx-mission', + 'XX Mission', + 'UPL', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["xxmissio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/xxmissio.cpp"]}'::jsonb + ), + ( + 'xybots', + 'Xybots', + 'Atari Games', + 1987, + array['Xybots (rev 2)'], + array['Arcade'], + '{"mame":["xybots"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/xybots.cpp"]}'::jsonb + ), + ( + 'xyonix', + 'Xyonix', + 'Philko', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["xyonix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xyonix.cpp"]}'::jsonb + ), + ( + 'y-unit-test-rom-v1-40', + 'Y-Unit Test ROM (v1.40)', + 'Midway', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["yunittst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'yam-yam', + 'Yam! Yam!?', + 'Dooyong', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["yamyam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/gundealr.cpp"]}'::jsonb + ), + ( + 'yamaha-mixt-book-player-copera', + 'Yamaha Mixt Book Player Copera', + 'Yamaha / Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["copera"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segapico.cpp"]}'::jsonb + ), + ( + 'yamato', + 'Yamato', + 'Sega', + 1983, + array['Yamato (set 1)'], + array['Arcade'], + '{"mame":["yamato"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'yataimura-kingyosukui', + 'Yataimura Kingyosukui', + 'Sega', + 2009, + array['Yataimura Kingyosukui (1-player, Japan, Ver 1.005)'], + array['Arcade'], + '{"mame":["kingyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'yataimura-shateki', + 'Yataimura Shateki', + 'Sega', + 2010, + array['Yataimura Shateki (1-player, Japan, Ver 1.000)'], + array['Arcade'], + '{"mame":["shateki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'yatterman-plus-j-981006-v1-000', + 'Yatterman Plus (J 981006 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["yattrmnp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'yes-no-sinri-tokimeki-chart', + 'Yes/No Sinri Tokimeki Chart', + 'Taito Corporation', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["yesnoj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'yie-ar-kung-fu', + 'Yie Ar Kung-Fu', + 'Konami', + 1985, + array['Yie Ar Kung-Fu (version I)'], + array['Arcade'], + '{"mame":["yiear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/yiear.cpp"]}'::jsonb + ), + ( + 'ying-hua-lian-2-0', + 'Ying Hua Lian 2.0', + 'Subsino', + 1998, + array['Ying Hua Lian 2.0 (China, Ver. 1.02)'], + array['Arcade'], + '{"mame":["saklove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'yizhi-xiangqi', + 'Yizhi Xiangqi', + 'WHT', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["yizhix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/whtm68k.cpp"]}'::jsonb + ), + ( + 'yo-noid-playchoice-10', + 'Yo! Noid (PlayChoice-10)', + 'Capcom USA (Nintendo of America license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_ynoid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'yori-jori-kuk-kuk', + 'Yori Jori Kuk Kuk', + 'Golden Bell Entertainment', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["yorijori"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'yosaku-to-donbei', + 'Yosaku to Donbei', + 'Wing', + 1979, + array['Yosaku to Donbei (set 1)'], + array['Arcade'], + '{"mame":["yosakdon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'youjyuden', + 'Youjyuden', + 'Irem', + 1986, + array['Youjyuden (Japan)'], + array['Arcade'], + '{"mame":["youjyudn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'yu-gi-oh-monster-capsule', + 'Yu-Gi-Oh Monster Capsule', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["ymcapsul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'yu-jan', + 'Yu-Jan', + 'Yubis / T.System', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["yujan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/macs.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.015.sql b/supabase/seed-data/mame-game-catalog.generated.015.sql new file mode 100644 index 0000000..67b72bf --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.015.sql @@ -0,0 +1,744 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 69 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + 'yu-ka', + 'Yu-Ka', + 'Yubis / T.System', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["yuka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/macs.cpp"]}'::jsonb + ), + ( + 'yuanyang-hudie-meng', + 'Yuanyang Hudie Meng', + 'GMS', + 2005, + array['Yuanyang Hudie Meng (Version 8.8A 2005-09-25)'], + array['Arcade'], + '{"mame":["yyhm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'yukon', + 'Yukon', + 'Exidy', + 1989, + array['Yukon (version 2.0)'], + array['Arcade'], + '{"mame":["yukon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'yukon-gold', + 'Yukon Gold', + 'WMS', + 2000, + array['Yukon Gold (Russian)'], + array['Arcade'], + '{"mame":["yukongld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'yumefuda', + 'Yumefuda', + 'Alba', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["yumefuda"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/albazg.cpp"]}'::jsonb + ), + ( + 'z-100', + 'Z-100', + 'Zenith Data Systems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["z100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["heathzenith/z100.cpp"]}'::jsonb + ), + ( + 'z1013-matrix-8x4', + 'Z1013 (matrix 8x4)', + 'VEB Robotron Electronics Riesa', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["z1013"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/z1013.cpp"]}'::jsonb + ), + ( + 'z3-guitar-synthesizer', + 'Z3 Guitar Synthesizer', + 'Korg', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["korgz3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgz3.cpp"]}'::jsonb + ), + ( + 'z80-based-triple-time-zone-clock', + 'Z80 based, triple time zone clock', + 'Tom Storey', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["z80clock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/z80clock.cpp"]}'::jsonb + ), + ( + 'z80-dev-board', + 'Z80 dev board', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["z80dev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/z80dev.cpp"]}'::jsonb + ), + ( + 'z80ne', + 'Z80NE', + 'Nuova Elettronica', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["z80ne"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/z80ne.cpp"]}'::jsonb + ), + ( + 'z9001-kc-85-1-10', + 'Z9001 (KC 85/1.10)', + 'Robotron', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["z9001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/z9001.cpp"]}'::jsonb + ), + ( + 'zarya-vostoka', + 'Zarya Vostoka', + 'Nova Games of Canada', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["zaryavos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'zaviga', + 'Zaviga', + 'Data East Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["zaviga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/bwing.cpp"]}'::jsonb + ), + ( + 'zaxxon', + 'Zaxxon', + 'Sega', + 1982, + array['Zaxxon (set 1, rev D)'], + array['Arcade'], + '{"mame":["zaxxon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/zaxxon.cpp"]}'::jsonb + ), + ( + 'zdog-44-in-1', + 'ZDog (44 in 1)', + 'Hummer Technology Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["zdog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'zed-blade-operation-ragnarok', + 'Zed Blade / Operation Ragnarok', + 'NMK', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["zedblade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'zektor', + 'Zektor', + 'Sega', + 1982, + array['Zektor (revision B)'], + array['Arcade'], + '{"mame":["zektor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80v.cpp"]}'::jsonb + ), + ( + 'zelos', + 'Zelos', + 'Namco', + 1994, + array['Zelos (Japan, main unit)', 'Zelos (Japan, terminal)'], + array['Arcade'], + '{"mame":["zelos","zelost"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'zen-nippon-pro-wres-featuring-virtua-j-971123-v1-000', + 'Zen Nippon Pro-Wres Featuring Virtua (J 971123 V1.000)', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["znpwfv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'zenigata-ponta', + 'Zenigata Ponta', + 'Amuzy Corporation', + 2005, + array['Zenigata Ponta (Japan, ver 1.02)'], + array['Arcade'], + '{"mame":["zenponta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'zenkoku-seifuku-bishoujo-grand-prix-find-love-j-971212-v1-000', + 'Zenkoku Seifuku Bishoujo Grand Prix Find Love (J 971212 V1.000)', + 'Daiki / FCF', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["findlove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'zero-konami-endeavour', + 'Zero (Konami Endeavour)', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["konzero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'zero-gunner-export-model-2b', + 'Zero Gunner (Export, Model 2B)', + 'Psikyo', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["zerogun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'zero-gunner-2', + 'Zero Gunner 2', + 'Psikyo', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["zerogu2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'zero-hour', + 'Zero Hour', + 'Universal', + 1980, + array['Zero Hour (set 1)'], + array['Arcade'], + '{"mame":["zerohour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/zerohour.cpp"]}'::jsonb + ), + ( + 'zero-point', + 'Zero Point', + 'Unico', + 1998, + array['Zero Point (set 1)'], + array['Arcade'], + '{"mame":["zeropnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/unico.cpp"]}'::jsonb + ), + ( + 'zero-point-2', + 'Zero Point 2', + 'Unico', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["zeropnt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/unico.cpp"]}'::jsonb + ), + ( + 'zero-target', + 'Zero Target', + 'Data East Corporation', + 1985, + array['Zero Target (World, CW)'], + array['Arcade'], + '{"mame":["zerotrgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cntsteer.cpp"]}'::jsonb + ), + ( + 'zero-team-usa', + 'Zero Team USA', + 'Seibu Kaihatsu (Fabtek license)', + 1993, + array['Zero Team USA (US)'], + array['Arcade'], + '{"mame":["zeroteam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/raiden2.cpp"]}'::jsonb + ), + ( + 'zero-wing', + 'Zero Wing', + 'Toaplan', + 1989, + array['Zero Wing (2P set)'], + array['Arcade'], + '{"mame":["zerowing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/toaplan1.cpp"]}'::jsonb + ), + ( + 'zero-zone', + 'Zero Zone', + 'Comad', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["zerozone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["comad/zerozone.cpp"]}'::jsonb + ), + ( + 'zeroize', + 'Zeroize', + 'Data East Corporation', + 1983, + array['Zeroize (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["czeroize"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'zexall-fpga-z80-test-interface', + 'Zexall (FPGA Z80 test interface)', + 'Frank Cringle / Kevin Horton', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["zexall"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/zexall.cpp"]}'::jsonb + ), + ( + 'zhongguo-chu-da-d-v102c', + 'Zhongguo Chu Da D (V102C)', + 'IGS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["zhongguo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'zhongguo-long-pretty-chance-dragon-world-pretty-chance', + 'Zhongguo Long Pretty Chance [Dragon World Pretty Chance]', + 'IGS', + 2001, + array['Zhongguo Long Pretty Chance [Dragon World Pretty Chance] (V110 03/19/02 11:13:16, China)'], + array['Arcade'], + '{"mame":["dwpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'zhongji-dou-dizhu-v204cn', + 'Zhongji Dou Dizhu (V204CN)', + 'IGS', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["zjddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'zig-zag', + 'Zig Zag', + 'bootleg (LAX)', + 1982, + array['Zig Zag (bootleg Dig Dug conversion on Galaxian hardware, set 1)'], + array['Arcade'], + '{"mame":["zigzagb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'zing-zing-zip-zhen-zhen-ji-pao', + 'Zing Zing Zip / Zhen Zhen Ji Pao', + 'Allumer / Tecmo', + 1992, + array['Zing Zing Zip (World) / Zhen Zhen Ji Pao (China?)'], + array['Arcade'], + '{"mame":["zingzip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'zintrick-oshidashi-zentrix', + 'Zintrick / Oshidashi Zentrix', + 'bootleg', + 1996, + array['Zintrick / Oshidashi Zentrix (bootleg of CD version)'], + array['Arcade'], + '{"mame":["zintrckb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'zip-and-zap-explicit', + 'Zip & Zap (Explicit)', + 'Barko Corp', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["zipzap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'zircon-ii', + 'Zircon II', + 'Novag Industries / Intelligent Heuristic Programming', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["zircon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/zircon2.cpp"]}'::jsonb + ), + ( + 'zl-383-400-in-1-handheld-console', + 'ZL-383 400-in-1 Handheld Console', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["zl383"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'zoar', + 'Zoar', + 'Data East USA', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["zoar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'zodiack', + 'Zodiack', + 'Orca (Esco Trading Co., Inc. license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["zodiack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/zodiack.cpp"]}'::jsonb + ), + ( + 'zoids-infinity', + 'Zoids Infinity', + 'Tomy / Taito', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["zoidsinf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'zoids-infinity-ex-plus', + 'Zoids Infinity EX Plus', + 'Tomy / Taito', + 2006, + array['Zoids Infinity EX Plus (ver. 2.10)'], + array['Arcade'], + '{"mame":["zoidiexp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'zombie-raid', + 'Zombie Raid', + 'American Sammy', + 1995, + array['Zombie Raid (9/28/95, US)'], + array['Arcade'], + '{"mame":["zombraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'zombie-revenge', + 'Zombie Revenge', + 'Sega', + 1999, + array['Zombie Revenge (Rev A)'], + array['Arcade'], + '{"mame":["zombrvn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'zone-7-in-1-sports-ntsc', + 'Zone 7-in-1 Sports (NTSC)', + 'Ultimate Products Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["zone7in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'zone-fusion', + 'Zone Fusion', + 'Ultimate Products / Jungle''s Soft', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["zonefusn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'zoo', + 'Zoo', + 'Astro Corp.', + 2004, + array['Zoo (Ver. ZO.02.D, Aug 27 2004)'], + array['Arcade'], + '{"mame":["zoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'zoo-keeper', + 'Zoo Keeper', + 'Taito America Corporation', + 1982, + array['Zoo Keeper (set 1)'], + array['Arcade'], + '{"mame":["zookeep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'zoofari', + 'Zoofari', + 'ICE/Play Mechanix', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["zoofari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/vp101.cpp"]}'::jsonb + ), + ( + 'zoomania', + 'Zoomania', + 'Industrias Brasileiras', + null, + array['Zoomania (Version 10.04, set 1)'], + array['Arcade'], + '{"mame":["zoomania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'zoomer-z-pda-z-7000', + 'Zoomer (Z-PDA / Z-7000)', + 'Casio / Tandy', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["zoomer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/zoomer.cpp"]}'::jsonb + ), + ( + 'zooty-drum', + 'Zooty Drum', + 'PARA Enterprises', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["zdrum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pasha2.cpp"]}'::jsonb + ), + ( + 'zorton-brothers-los-justicieros-v1-01', + 'Zorton Brothers / Los Justicieros (v1.01)', + 'Picmatic', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["zortonbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'zrt-80', + 'ZRT-80', + 'Digital Research Computers', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["zrt80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["drc/zrt80.cpp"]}'::jsonb + ), + ( + 'zsbc-3', + 'ZSBC-3', + 'Digital Microsystems', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["zsbc3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dms/zsbc3.cpp"]}'::jsonb + ), + ( + 'zuanshi-wutai-v110ii', + 'Zuanshi Wutai (V110II)', + 'IGS', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["zuanshiw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'zudu-go-2udu-go', + 'Zudu-go / 2udu-go', + 'Macro Winners / Waixing', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["zudugo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'zun-zun-block', + 'Zun Zun Block', + 'Taito', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["zzblock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 'zunzunkyou-no-yabou', + 'Zunzunkyou no Yabou', + 'Sega', + 1994, + array['Zunzunkyou no Yabou (Japan)'], + array['Arcade'], + '{"mame":["zunkyou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'zupapa-italian-gambling-game', + 'Zupapa (Italian gambling game)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["zupapah8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'zupapa', + 'Zupapa!', + 'SNK', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["zupapa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'zuqiu-wang-king-of-football', + 'Zuqiu Wang - King of Football', + 'BMC', + 1995, + '{}'::text[], + array['Sports'], + '{"mame":["koftball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/koftball.cpp"]}'::jsonb + ), + ( + 'zwackery', + 'Zwackery', + 'Bally Midway', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["zwackery"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/zwackery.cpp"]}'::jsonb + ), + ( + 'zzyzzyxx', + 'Zzyzzyxx', + 'Cinematronics / Advanced Microcomputer Systems', + 1982, + array['Zzyzzyxx (set 1)'], + array['Arcade'], + '{"mame":["zzyzzyxx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/mame-game-catalog.generated.sql b/supabase/seed-data/mame-game-catalog.generated.sql new file mode 100644 index 0000000..662ff9d --- /dev/null +++ b/supabase/seed-data/mame-game-catalog.generated.sql @@ -0,0 +1,70744 @@ +-- Generated by scripts/build-mame-game-seed.mjs +-- Source: mame.xml +-- Games: 7069 +-- This file inserts/updates public.games only. It does not create venue inventory. + +begin; + +insert into public.games as g ( + slug, + title, + manufacturer, + release_year, + aliases, + categories, + external_ids, + metadata +) +values + ( + '005', + '005', + 'Sega', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["005"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80r.cpp"]}'::jsonb + ), + ( + '10-yard-fight', + '10-Yard Fight', + 'Irem', + 1983, + array['10-Yard Fight (World, set 1)'], + array['Arcade'], + '{"mame":["10yard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m58.cpp"]}'::jsonb + ), + ( + '100-in-1-v5-01-11-frd-bl-20041217', + '100 in 1 (v5.01.11-frd, BL 20041217)', + '', + 2004, + array['100 in 1 (D-CAT8 8bit Console, set 1) (v5.01.11-frd, BL 20041217)'], + array['Arcade'], + '{"mame":["mc_dcat8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + '100-in-1-arcade-action-ii-at-103', + '100 in 1 Arcade Action II (AT-103)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_aa2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + '1000-miglia-great-1000-miles-rally', + '1000 Miglia: Great 1000 Miles Rally', + 'Kaneko', + 1994, + array['1000 Miglia: Great 1000 Miles Rally (Taiwan 94/07/18)'], + array['Arcade'], + '{"mame":["gtmr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + '101-games-in-1', + '101 Games in 1', + 'Senario', + 2009, + array['101 Games in 1 (Senario, NES/Famicom bootlegs)'], + array['Arcade'], + '{"mame":["sen101"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + '110-in-1-coolbaby-coolboy-rs-1s', + '110 in 1 CoolBaby (CoolBoy RS-1S)', + 'CoolBoy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_110cb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + '119', + '119', + 'Coreland / Sega', + 1986, + array['119 (bootleg?)'], + array['Arcade'], + '{"mame":["119"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/119.cpp"]}'::jsonb + ), + ( + '138-in-1-coolbaby-coolboy-rs-5-pcb060-10009011v1-3', + '138 in 1 CoolBaby (CoolBoy RS-5, PCB060-10009011V1.3)', + 'CoolBoy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_138cb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + '18-holes-pro-golf', + '18 Holes Pro Golf', + 'Data East Corporation', + 1981, + array['18 Holes Pro Golf (set 1)'], + array['Sports'], + '{"mame":["progolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/progolf.cpp"]}'::jsonb + ), + ( + '18-wheeler-american-pro-trucker', + '18 Wheeler: American Pro Trucker', + 'Sega', + 2000, + array['18 Wheeler: American Pro Trucker (deluxe, Rev A)'], + array['Arcade'], + '{"mame":["18wheelr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + '1941-counter-attack', + '1941: Counter Attack', + 'Capcom', + 1990, + array['1941: Counter Attack (World 900227)'], + array['Arcade'], + '{"mame":["1941"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + '1942', + '1942', + 'Capcom', + 1984, + array['1942 (Revision B)'], + array['Shooter'], + '{"mame":["1942"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/1942.cpp"]}'::jsonb + ), + ( + '1942-playchoice-10', + '1942 (PlayChoice-10)', + 'Capcom', + 1987, + '{}'::text[], + array['Shooter'], + '{"mame":["pc_1942"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + '1943-kai-midway-kaisen', + '1943 Kai: Midway Kaisen', + 'Capcom', + 1987, + array['1943 Kai: Midway Kaisen (Japan)'], + array['Arcade'], + '{"mame":["1943kai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/1943.cpp"]}'::jsonb + ), + ( + '1943-the-battle-of-midway-euro', + '1943: The Battle of Midway (Euro)', + 'Capcom', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["1943"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/1943.cpp"]}'::jsonb + ), + ( + '1943-the-battle-of-midway-mark-ii', + '1943: The Battle of Midway Mark II', + 'Capcom', + 1987, + array['1943: The Battle of Midway Mark II (US)'], + array['Arcade'], + '{"mame":["1943mii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/1943.cpp"]}'::jsonb + ), + ( + '1944-the-loop-master', + '1944: The Loop Master', + 'Eighting / Raizing (Capcom license)', + 2000, + array['1944: The Loop Master (Europe 000620)'], + array['Arcade'], + '{"mame":["1944"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + '1945k-iii-newer-opcx2-pcb', + '1945k III (newer, OPCX2 PCB)', + 'Oriental Soft', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["1945kiii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["promat/1945kiii.cpp"]}'::jsonb + ), + ( + '19xx-the-war-against-destiny', + '19XX: The War Against Destiny', + 'Capcom', + 1996, + array['19XX: The War Against Destiny (Europe 960104)'], + array['Arcade'], + '{"mame":["19xx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + '2-spicy', + '2 Spicy', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["2spicy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + '200-in-1-retro-tv-game', + '200 in 1 Retro TV Game', + 'Thumbs Up', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_tv200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + '2011-super-hik-105-in-1-turbo-edition', + '2011 Super HiK 105 in 1 Turbo Edition', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_105te"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + '2020-super-baseball', + '2020 Super Baseball', + 'SNK / Pallas', + 1991, + array['2020 Super Baseball (set 1)'], + array['Sports'], + '{"mame":["2020bb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + '21-sigma', + '21 (Sigma)', + 'Sigma Enterprises', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sigma21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigma21.cpp"]}'::jsonb + ), + ( + '25-video-games-all-in-1-video-system-senario', + '25 Video Games - All in 1 Video System (Senario)', + 'Senario / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["senario25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + '280-zzzap', + '280-ZZZAP', + 'Dave Nutting Associates / Midway', + 1976, + array['280-ZZZAP (set 1)'], + array['Arcade'], + '{"mame":["280zzzap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + '3-count-bout-fire-suplex-ngm-043-ngh-043', + '3 Count Bout / Fire Suplex (NGM-043 ~ NGH-043)', + 'SNK', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["3countb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + '3-on-3-dunk-madness', + '3 On 3 Dunk Madness', + 'Video System Co.', + 1996, + array['3 On 3 Dunk Madness (US, prototype? 1997/02/04)'], + array['Arcade'], + '{"mame":["3on3dunk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/inufuku.cpp"]}'::jsonb + ), + ( + '3-super-8-italy', + '3 Super 8 (Italy)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["3super8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + '3-d-bowling', + '3-D Bowling', + 'Meadows Games, Inc.', + 1978, + '{}'::text[], + array['Sports'], + '{"mame":["bowl3d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadows.cpp"]}'::jsonb + ), + ( + '30-test-remake', + '30 Test (remake)', + 'Namco', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["30test"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/30test.cpp"]}'::jsonb + ), + ( + '3006', + '3006', + 'Labtam International', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["labtam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/labtam.cpp"]}'::jsonb + ), + ( + '35-in-1-super-twins', + '35 in 1 Super Twins', + 'SilverLit / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["silv35"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + '36-in-1-classic-games-phone-case', + '36-in-1 Classic Games phone case', + '', + null, + '{}'::text[], + array['Classic'], + '{"mame":["36pcase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + '39-in-1-mame-bootleg-gno-v000', + '39 in 1 MAME bootleg (GNO-V000)', + 'bootleg', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["39in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/39in1.cpp"]}'::jsonb + ), + ( + '3do-fz-1-r-e-a-l-interactive-multiplayer', + '3DO FZ-1 R.E.A.L. Interactive Multiplayer', + 'Panasonic', + 1993, + array['3DO FZ-1 R.E.A.L. Interactive Multiplayer (USA)'], + array['Arcade'], + '{"mame":["3do_fz1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + '3do-fz-10-r-e-a-l-interactive-multiplayer', + '3DO FZ-10 R.E.A.L. Interactive Multiplayer', + 'Panasonic', + 1994, + array['3DO FZ-10 R.E.A.L. Interactive Multiplayer (USA)'], + array['Arcade'], + '{"mame":["3do_fz10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + '3do-gdo-101m-interactive-multiplayer', + '3DO GDO-101M Interactive Multiplayer', + 'Goldstar', + 1994, + array['3DO GDO-101M Interactive Multiplayer (USA?)'], + array['Arcade'], + '{"mame":["3do_gdo101"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + '3do-imp-21j-try-interactive-multiplayer', + '3DO IMP-21J TRY Interactive Multiplayer', + 'Sanyo', + 1995, + array['3DO IMP-21J TRY Interactive Multiplayer (Japan)'], + array['Arcade'], + '{"mame":["3do_try"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + '3x3-puzzle-enterprise', + '3X3 Puzzle (Enterprise)', + 'Ace Enterprise', + 1998, + '{}'::text[], + array['Puzzle'], + '{"mame":["3x3puzzl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["promat/3x3puzzl.cpp"]}'::jsonb + ), + ( + '4-en-raya', + '4 En Raya', + 'IDSA', + 1990, + array['4 En Raya (set 1)'], + array['Arcade'], + '{"mame":["4enraya"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enraya.cpp"]}'::jsonb + ), + ( + '4-fun-in-1', + '4 Fun in 1', + 'Armenia / Food and Fun', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["4in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxold.cpp"]}'::jsonb + ), + ( + '4-d-warriors-315-5162', + '4-D Warriors (315-5162)', + 'Coreland / Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["4dwarrio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + '4-in-1', + '4-in-1', + 'SMS Manufacturing Corp.', + 1984, + array['4-in-1 (version SWS1-052587)'], + array['Arcade'], + '{"mame":["sms4in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/smsmcorp.cpp"]}'::jsonb + ), + ( + '40-bonus-games-in-1-atgames', + '40 Bonus Games in 1 (AtGames)', + 'AtGames', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["atgame40"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_firecore.cpp"]}'::jsonb + ), + ( + '4004-nixie-clock', + '4004 Nixie Clock', + 'John L. Weinrich', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["4004clk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/4004clk.cpp"]}'::jsonb + ), + ( + '500-gp', + '500 GP', + 'Namco', + 1998, + array['500 GP (US, 5GP3 Ver. C)'], + array['Arcade'], + '{"mame":["500gp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + '500-in-1-handheld-game', + '500-in-1 Handheld Game', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["500in1hh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + '630-games-in-1-handheld-t3', + '630 Games in 1 Handheld (T3)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["t3_630"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + '6300-plus', + '6300 Plus', + 'AT&T', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["att6300p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olivetti/att6300p.cpp"]}'::jsonb + ), + ( + '64th-street-a-detective-story', + '64th. Street: A Detective Story', + 'Jaleco', + 1991, + array['64th. Street: A Detective Story (World)'], + array['Arcade'], + '{"mame":["64street"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + '6809-portable', + '6809 Portable', + 'Dunfield', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["d6809"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/d6809.cpp"]}'::jsonb + ), + ( + '68k-single-board-computer', + '68k Single Board Computer', + 'Wichit Sirichote', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["68ksbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/68ksbc.cpp"]}'::jsonb + ), + ( + '7-e-mezzo', + '7 e Mezzo', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["7mezzo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicfly.cpp"]}'::jsonb + ), + ( + '7-gold', + '7 Gold', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["7gold"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + '7-ordi', + '7 Ordi', + 'Yun Sung', + 2002, + array['7 Ordi (Korea)'], + array['Arcade'], + '{"mame":["7ordi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp"]}'::jsonb + ), + ( + '7-smash', + '7 Smash', + 'Sovic', + 1993, + array['7 Smash (set 1)'], + array['Arcade'], + '{"mame":["7smash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/luckgrln.cpp"]}'::jsonb + ), + ( + '707-performing-synthesizer', + '707 Performing Synthesizer', + 'Korg', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["korg707"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgds8.cpp"]}'::jsonb + ), + ( + '720-degrees', + '720 Degrees', + 'Atari Games', + 1986, + array['720 Degrees (rev 4)'], + array['Arcade'], + '{"mame":["720"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy2.cpp"]}'::jsonb + ), + ( + '777777-in-1-8-bit-slim-station-newpxp-dvt22-a-pcb', + '777777 in 1 (8 bit Slim Station, NEWPXP-DVT22-A PCB)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_7x6ss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + '888888-in-1-8-bit-slim-station-newpxp-dvt22-a-pcb', + '888888 in 1 (8 bit Slim Station, NEWPXP-DVT22-A PCB)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_8x6ss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + '888888-in-1-coolboy-aef-390', + '888888 in 1 (Coolboy AEF-390)', + 'CoolBoy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_8x6cb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + '89-in-1-mini-game-console-060-92023011v1-0', + '89 in 1 Mini Game Console (060-92023011V1.0)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_89in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + '9-ball-shootout', + '9-Ball Shootout', + 'E-Scape EnterMedia (Bundra license)', + 1993, + array['9-Ball Shootout (set 1)'], + array['Arcade'], + '{"mame":["9ballsht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coolpool.cpp"]}'::jsonb + ), + ( + '9161-display-processor-unit', + '9161 Display Processor Unit', + 'Ericsson', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["e9161"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ericsson/e9161.cpp"]}'::jsonb + ), + ( + '9835a', + '9835A', + 'Hewlett-Packard', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9835a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9845.cpp"]}'::jsonb + ), + ( + '9845a', + '9845A', + 'Hewlett-Packard', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9845a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9845.cpp"]}'::jsonb + ), + ( + '9845b', + '9845B', + 'Hewlett-Packard', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9845b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9845.cpp"]}'::jsonb + ), + ( + '9845c', + '9845C', + 'Hewlett-Packard', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9845c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9845.cpp"]}'::jsonb + ), + ( + '9845t', + '9845T', + 'Hewlett-Packard', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9845t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9845.cpp"]}'::jsonb + ), + ( + '999', + '999', + 'Chang Yu Electronic', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["changyu2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/changyu.cpp"]}'::jsonb + ), + ( + '999999-in-1-pxp2-slim-station', + '999999 in 1 (PXP2 Slim Station)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_9x6ss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'a-day-in-space-31-03-87', + 'A Day In Space (31/03/87)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_day"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'a-plan', + 'A-Plan', + 'WeaShing H.K.', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["aplan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'a-d-2083', + 'A. D. 2083', + 'Midcoin', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ad2083"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'a-b-cop-fd1094-317-0169b', + 'A.B. Cop (FD1094 317-0169b)', + 'Sega', + 1990, + array['A.B. Cop (World) (FD1094 317-0169b)'], + array['Arcade'], + '{"mame":["abcop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'a5120', + 'A5120', + 'VEB Robotron', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["a5120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/a51xx.cpp"]}'::jsonb + ), + ( + 'a7150', + 'A7150', + 'VEB Robotron', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["a7150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/a7150.cpp"]}'::jsonb + ), + ( + 'aaargh-arcadia', + 'Aaargh (Arcadia)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_argh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'aamber-pegasus', + 'Aamber Pegasus', + 'Technosys', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["pegasus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/pegasus.cpp"]}'::jsonb + ), + ( + 'abacus', + 'Abacus', + 'Nazionale Elettronica', + 2001, + array['Abacus (Ver 1.0)'], + array['Arcade'], + '{"mame":["abacus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'abc-1600', + 'ABC 1600', + 'Luxor', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["abc1600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["luxor/abc1600.cpp"]}'::jsonb + ), + ( + 'abc-80', + 'ABC 80', + 'Luxor Datorer AB', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["abc80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["luxor/abc80.cpp"]}'::jsonb + ), + ( + 'abc-800-c-hr', + 'ABC 800 C/HR', + 'Luxor Datorer AB', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["abc800c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["luxor/abc80x.cpp"]}'::jsonb + ), + ( + 'abc-802', + 'ABC 802', + 'Luxor Datorer AB', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["abc802"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["luxor/abc80x.cpp"]}'::jsonb + ), + ( + 'abc-806', + 'ABC 806', + 'Luxor Datorer AB', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["abc806"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["luxor/abc80x.cpp"]}'::jsonb + ), + ( + 'abnormal-check', + 'Abnormal Check', + 'Namco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["abcheck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcond1.cpp"]}'::jsonb + ), + ( + 'abunai-houkago-mou-matenai', + 'Abunai Houkago - Mou Matenai', + 'Green Soft', + 1989, + array['Abunai Houkago - Mou Matenai (Japan 890325)'], + array['Arcade'], + '{"mame":["abunai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'acchi-muite-hoi-battle', + 'Acchi Muite Hoi Battle', + 'Amuzy Corporation', + 2006, + array['Acchi Muite Hoi Battle (Japan, ver 1.04)'], + array['Arcade'], + '{"mame":["amhbattl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'accord', + 'Accord', + 'Novag Industries / Intelligent Heuristic Programming', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["accord"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/accord.cpp"]}'::jsonb + ), + ( + 'ace', + 'Ace', + 'Allied Leisure', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["ace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/ace.cpp"]}'::jsonb + ), + ( + 'ace-attacker-fd1094-317-0059', + 'Ace Attacker (FD1094 317-0059)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["aceattac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'ace-driver-3-final-turn', + 'Ace Driver 3: Final Turn', + 'Namco', + 2008, + '{}'::text[], + array['Racing'], + '{"mame":["acedriv3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'ace-driver-racing-evolution', + 'Ace Driver: Racing Evolution', + 'Namco', + 1994, + array['Ace Driver: Racing Evolution (World, AD2)'], + array['Racing'], + '{"mame":["acedrive"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'ace-driver-victory-lap', + 'Ace Driver: Victory Lap', + 'Namco', + 1996, + array['Ace Driver: Victory Lap (World, ADV2 Ver.B)'], + array['Racing'], + '{"mame":["victlap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'acr-20-digital-accompaniment-center', + 'ACR-20 Digital Accompaniment Center', + 'Kawai Musical Instruments Manufacturing', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["acr20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/acr20.cpp"]}'::jsonb + ), + ( + 'acrobat-mission', + 'Acrobat Mission', + 'UPL (Taito license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["acrobatm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'acrobatic-dog-fight', + 'Acrobatic Dog-Fight', + 'Technos Japan', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dogfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/dogfgt.cpp"]}'::jsonb + ), + ( + 'acs586', + 'ACS586', + 'Altos Computer Systems', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["altos586"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["altos/altos586.cpp"]}'::jsonb + ), + ( + 'acs8600', + 'ACS8600', + 'Altos Computer Systems', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["altos8600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["altos/altos8600.cpp"]}'::jsonb + ), + ( + 'act-raiser-nintendo-super-system', + 'Act Raiser (Nintendo Super System)', + 'Enix', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_actr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'act-5a', + 'ACT-5A', + 'Micro-Term', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["act5a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microterm/microterm_f8.cpp"]}'::jsonb + ), + ( + 'act-fancer-cybernetick-hyper-weapon', + 'Act-Fancer Cybernetick Hyper Weapon', + 'Data East Corporation', + 1989, + array['Act-Fancer Cybernetick Hyper Weapon (World revision 3)'], + array['Arcade'], + '{"mame":["actfancr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/actfancr.cpp"]}'::jsonb + ), + ( + 'action-2000', + 'Action 2000', + 'Amcoe', + 1999, + array['Action 2000 (Version 3.5E Dual)'], + array['Arcade'], + '{"mame":["act2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'action-fighter-fd1089a-317-0018', + 'Action Fighter (FD1089A 317-0018)', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["afighter"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'action-hollywood', + 'Action Hollywood', + 'TCH / Proyesel', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["actionhw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/kickgoal.cpp"]}'::jsonb + ), + ( + 'adults-only-ukraine-v-43-23', + 'Adults Only (Ukraine, V. 43.23)', + 'Extrema', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["adults"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'advanced-bridge-challenger', + 'Advanced Bridge Challenger', + 'Fidelity Electronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["bridgeca"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/card.cpp"]}'::jsonb + ), + ( + 'advanced-pico-beena', + 'Advanced Pico BEENA', + 'Sega Toys', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["beena"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_beena.cpp"]}'::jsonb + ), + ( + 'adventure-vision', + 'Adventure Vision', + 'Entex', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["advision"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["entex/advision.cpp"]}'::jsonb + ), + ( + 'aero-fighters-newer-hardware', + 'Aero Fighters (newer hardware)', + 'Video System Co.', + 1992, + array['Aero Fighters (World / USA + Canada / Korea / Hong Kong / Taiwan) (newer hardware)'], + array['Arcade'], + '{"mame":["aerofgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/aerofgt.cpp"]}'::jsonb + ), + ( + 'aero-fighters-2-sonic-wings-2', + 'Aero Fighters 2 / Sonic Wings 2', + 'Video System Co.', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["sonicwi2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'aero-fighters-3-sonic-wings-3', + 'Aero Fighters 3 / Sonic Wings 3', + 'Video System Co.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["sonicwi3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'african-adventure', + 'African Adventure', + 'Konami', + null, + array['African Adventure (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["aadvent"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'after-burner', + 'After Burner', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["aburner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'after-burner-mega-tech-sms-based', + 'After Burner (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_aftrb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'after-burner-climax-export', + 'After Burner Climax (Export)', + 'Sega', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["abclimax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'after-burner-ii', + 'After Burner II', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["aburner2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'agat-7', + 'Agat-7', + 'Agat', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["agat7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["agat/agat.cpp"]}'::jsonb + ), + ( + 'agat-9', + 'Agat-9', + 'Agat', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["agat9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["agat/agat.cpp"]}'::jsonb + ), + ( + 'age-of-heroes-silkroad-2-v0-63-2001-02-07', + 'Age Of Heroes - Silkroad 2 (v0.63 - 2001/02/07)', + 'Unico', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["aoh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'agent-super-bond', + 'Agent Super Bond', + 'Signatron USA', + 1985, + array['Agent Super Bond (Super Cobra conversion, encrypted)'], + array['Arcade'], + '{"mame":["superbon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'aggressors-of-dark-kombat-tsuukai-gangan-koushinkyoku-adm-008-adh-008', + 'Aggressors of Dark Kombat / Tsuukai GANGAN Koushinkyoku (ADM-008 ~ ADH-008)', + 'ADK / SNK', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["aodk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'agress-missile-daisenryaku', + 'Agress - Missile Daisenryaku', + 'Palco', + 1991, + array['Agress - Missile Daisenryaku (Japan)'], + array['Arcade'], + '{"mame":["agress"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/blockout.cpp"]}'::jsonb + ), + ( + 'ah-eikou-no-koshien', + 'Ah Eikou no Koshien', + 'Taito Corporation', + 1990, + array['Ah Eikou no Koshien (Japan)'], + array['Arcade'], + '{"mame":["koshien"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'ai', + 'AI', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["segaai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaai.cpp"]}'::jsonb + ), + ( + 'ai-mode-pet-shiiku', + 'Ai-mode - Pet Shiiku', + 'Nichibutsu/eic', + 1999, + array['Ai-mode - Pet Shiiku (Japan)'], + array['Arcade'], + '{"mame":["aimode"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'aim-65', + 'AIM 65', + 'Rockwell', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["aim65"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rockwell/aim65.cpp"]}'::jsonb + ), + ( + 'aim-65-40', + 'AIM-65/40', + 'Rockwell', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["aim65_40"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rockwell/aim65_40.cpp"]}'::jsonb + ), + ( + 'air-assault', + 'Air Assault', + 'Irem', + 1993, + array['Air Assault (World)'], + array['Arcade'], + '{"mame":["airass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m107.cpp"]}'::jsonb + ), + ( + 'air-attack', + 'Air Attack', + 'Comad', + 1996, + array['Air Attack (set 1)'], + array['Arcade'], + '{"mame":["airattck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'air-buster-trouble-specialty-raid-unit', + 'Air Buster: Trouble Specialty Raid Unit', + 'Kaneko (Namco license)', + 1990, + array['Air Buster: Trouble Specialty Raid Unit (World)'], + array['Arcade'], + '{"mame":["airbustr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/airbustr.cpp"]}'::jsonb + ), + ( + 'air-combat', + 'Air Combat', + 'Namco', + 1992, + array['Air Combat (AC2, US)'], + array['Arcade'], + '{"mame":["aircomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21_c67.cpp"]}'::jsonb + ), + ( + 'air-combat-22', + 'Air Combat 22', + 'Namco', + 1995, + array['Air Combat 22 (Japan, ACS1 Ver.B)'], + array['Arcade'], + '{"mame":["airco22b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'air-duel', + 'Air Duel', + 'Irem', + 1990, + array['Air Duel (World, M82 hardware)'], + array['Arcade'], + '{"mame":["airduel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'air-gallet', + 'Air Gallet', + 'Gazelle (Banpresto license)', + 1996, + array['Air Gallet (Europe)'], + array['Arcade'], + '{"mame":["agallet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'air-inferno', + 'Air Inferno', + 'Taito Corporation Japan', + 1990, + array['Air Inferno (World)'], + array['Arcade'], + '{"mame":["ainferno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitoair.cpp"]}'::jsonb + ), + ( + 'air-race', + 'Air Race', + 'Atari Games', + 1985, + array['Air Race (prototype)'], + array['Arcade'], + '{"mame":["airrace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy4.cpp"]}'::jsonb + ), + ( + 'air-raid-single-pcb', + 'Air Raid (Single PCB)', + 'Seibu Kaihatsu', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["airraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/airraid.cpp"]}'::jsonb + ), + ( + 'air-rescue', + 'Air Rescue', + 'Sega', + 1992, + array['Air Rescue (World)'], + array['Arcade'], + '{"mame":["arescue"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'air-trix', + 'Air Trix', + 'Sega / Hitmaker', + 2000, + array['Air Trix (Rev A)'], + array['Arcade'], + '{"mame":["airtrix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'air-walkers', + 'Air Walkers', + 'Data East Corporation', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["airwlkrs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'airline-pilots', + 'Airline Pilots', + 'Sega', + 1999, + array['Airline Pilots (World, Rev B)', 'Airline Pilots (Japan, Rev A)'], + array['Arcade'], + '{"mame":["alpilot","alpilotj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'airwolf', + 'Airwolf', + 'Kyugo', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["airwolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/kyugo.cpp"]}'::jsonb + ), + ( + 'ajax', + 'Ajax', + 'Konami', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["ajax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ajax.cpp"]}'::jsonb + ), + ( + 'akatsuki-blitzkampf-ausf-achse', + 'Akatsuki Blitzkampf Ausf. Achse', + 'Subtle Style', + 2008, + array['Akatsuki Blitzkampf Ausf. Achse (Japan)'], + array['Arcade'], + '{"mame":["ausfache"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'akazukin', + 'Akazukin', + 'Sigma', + 1983, + array['Akazukin (Japan)'], + array['Arcade'], + '{"mame":["akazukin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/akazukin.cpp"]}'::jsonb + ), + ( + 'akka-arrh', + 'Akka Arrh', + 'Atari', + 1982, + array['Akka Arrh (prototype)'], + array['Arcade'], + '{"mame":["akkaarrh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/akkaarrh.cpp"]}'::jsonb + ), + ( + 'aladdin', + 'Aladdin', + 'bootleg / Sega', + 1993, + array['Aladdin (bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["aladmdb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'alantin-aladdin-s-magic-lamp', + 'Alantin - Aladdin''s Magic Lamp', + 'bootleg (Robert / Avraam)', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["alantin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/carrera.cpp"]}'::jsonb + ), + ( + 'alcon', + 'Alcon', + 'Toaplan / Taito America Corp.', + 1986, + array['Alcon (US)'], + array['Arcade'], + '{"mame":["alcon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/slapfght.cpp"]}'::jsonb + ), + ( + 'alex-kidd-the-lost-stars', + 'Alex Kidd: The Lost Stars', + 'Sega', + 1986, + array['Alex Kidd: The Lost Stars (set 2, unprotected)'], + array['Arcade'], + '{"mame":["alexkidd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'alfaskop-communication-processor-4101', + 'Alfaskop Communication Processor 4101', + 'Ericsson', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["alfaskop4101"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ericsson/alfaskop41xx.cpp"]}'::jsonb + ), + ( + 'alfaskop-display-unit-4110', + 'Alfaskop Display Unit 4110', + 'Ericsson', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["alfaskop4110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ericsson/alfaskop41xx.cpp"]}'::jsonb + ), + ( + 'alfaskop-flexible-disk-unit-4120', + 'Alfaskop Flexible Disk Unit 4120', + 'Ericsson', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["alfaskop4120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ericsson/alfaskop41xx.cpp"]}'::jsonb + ), + ( + 'ali-baba-and-40-thieves', + 'Ali Baba and 40 Thieves', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["alibaba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'alien-arena', + 'Alien Arena', + 'Duncan Brown', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["alienar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'alien-challenge', + 'Alien Challenge', + 'IGS', + 1994, + array['Alien Challenge (World)'], + array['Arcade'], + '{"mame":["aliencha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/lordgun.cpp"]}'::jsonb + ), + ( + 'alien-front', + 'Alien Front', + 'Sega', + 2001, + array['Alien Front (Rev T)'], + array['Arcade'], + '{"mame":["alienfnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'alien-invaders', + 'Alien Invaders', + 'Forbes?', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["alinvade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/alinvade.cpp"]}'::jsonb + ), + ( + 'alien-sector', + 'Alien Sector', + 'Namco', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["aliensec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/baraduke.cpp"]}'::jsonb + ), + ( + 'alien-storm-fd1094-317-0154', + 'Alien Storm (FD1094 317-0154)', + 'Sega', + 1990, + array['Alien Storm (World, 2 Players) (FD1094 317-0154)'], + array['Arcade'], + '{"mame":["astorm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'alien-storm-mega-tech', + 'Alien Storm (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_astrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'alien-syndrome', + 'Alien Syndrome', + 'Sega', + 1987, + array['Alien Syndrome (set 4, System 16B, unprotected)'], + array['Arcade'], + '{"mame":["aliensyn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'alien-syndrome-mega-tech-sms-based', + 'Alien Syndrome (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_asyn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'alien-vs-predator', + 'Alien vs. Predator', + 'Capcom', + 1994, + array['Alien vs. Predator (Europe 940520)'], + array['Arcade'], + '{"mame":["avsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'alien3-the-gun', + 'Alien3: The Gun', + 'Sega', + 1993, + array['Alien3: The Gun (World)'], + array['Arcade'], + '{"mame":["alien3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'aliens', + 'Aliens', + 'Konami', + 1990, + array['Aliens (World set 1)'], + array['Arcade'], + '{"mame":["aliens"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/aliens.cpp"]}'::jsonb + ), + ( + 'all-american-football', + 'All American Football', + 'Leland Corporation', + 1989, + array['All American Football (Leland, rev E)'], + array['Sports'], + '{"mame":["aafb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'all-purpose-electronic-x-ray-computer-as-described-in-1957', + 'All Purpose Electronic X-ray Computer (as described in 1957)', + 'Andrew Donald Booth', + 1955, + '{}'::text[], + array['Arcade'], + '{"mame":["apexc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["booth/apexc.cpp"]}'::jsonb + ), + ( + 'alley-master', + 'Alley Master', + 'Cinematronics', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["alleymas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'alligator-hunt', + 'Alligator Hunt', + 'Gaelco', + 1994, + array['Alligator Hunt (World, protected, checksum 2B34128B)'], + array['Arcade'], + '{"mame":["aligator"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'almond-pinky', + 'Almond Pinky', + 'Dynax', + 1988, + array['Almond Pinky (Japan)'], + array['Arcade'], + '{"mame":["mjapinky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'alone-shettle-crew', + 'Alone Shettle Crew', + 'New Digimatic', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["shettle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/shettle.cpp"]}'::jsonb + ), + ( + 'alpha-fighter-head-on', + 'Alpha Fighter / Head On', + 'Data East Corporation', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["alphaho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'alpha-mission-ii-aso-ii-last-guardian-ngm-007-ngh-007', + 'Alpha Mission II / ASO II - Last Guardian (NGM-007 ~ NGH-007)', + 'SNK', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["alpham2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'alpha-one-vision-electronics', + 'Alpha One (Vision Electronics)', + 'Vision Electronics', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["alpha1v"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m52.cpp"]}'::jsonb + ), + ( + 'alphatantel', + 'AlphaTantel', + 'Tantel', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["alphatan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tangerine/alphatan.cpp"]}'::jsonb + ), + ( + 'alphatronic-p2', + 'alphatronic P2', + 'Triumph-Adler', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["alphatp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ta/alphatpx.cpp"]}'::jsonb + ), + ( + 'alphatronic-p3', + 'alphatronic P3', + 'Triumph-Adler', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["alphatp3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ta/alphatpx.cpp"]}'::jsonb + ), + ( + 'alphatronic-pc-pal', + 'Alphatronic PC (PAL)', + 'Triumph-Adler', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["alphatro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ta/alphatro.cpp"]}'::jsonb + ), + ( + 'alphatronic-pc-16', + 'alphatronic PC-16', + 'Triumph-Adler', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["alphatpc16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ta/alphatpc16.cpp"]}'::jsonb + ), + ( + 'alpine-racer', + 'Alpine Racer', + 'Namco', + 1994, + array['Alpine Racer (World, AR2 Ver.D)'], + array['Arcade'], + '{"mame":["alpinerd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'alpine-racer-2', + 'Alpine Racer 2', + 'Namco', + 1996, + array['Alpine Racer 2 (World, ARS2 Ver.B)'], + array['Arcade'], + '{"mame":["alpinr2b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'alpine-ski', + 'Alpine Ski', + 'Taito Corporation', + 1982, + array['Alpine Ski (set 1)'], + array['Arcade'], + '{"mame":["alpine"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'alpine-surfer', + 'Alpine Surfer', + 'Namco', + 1996, + array['Alpine Surfer (World, AF2 Ver.A)'], + array['Arcade'], + '{"mame":["alpines"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'alta-tensione', + 'Alta Tensione', + '', + 1999, + array['Alta Tensione (ver. 2.01a)'], + array['Arcade'], + '{"mame":["altaten"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'altair', + 'Altair', + 'Cidelsa', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["altair"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cidelsa.cpp"]}'::jsonb + ), + ( + 'altair-680b', + 'Altair 680b', + 'MITS', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["mits680b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mits/mits680b.cpp"]}'::jsonb + ), + ( + 'altair-8800b', + 'Altair 8800b', + 'MITS', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["al8800b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mits/al8800b.cpp"]}'::jsonb + ), + ( + 'altair-8800bt', + 'Altair 8800bt', + 'MITS', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["al8800bt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mits/altair.cpp"]}'::jsonb + ), + ( + 'altair-ii', + 'Altair II', + 'Cidelsa', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["altair2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cidelsa.cpp"]}'::jsonb + ), + ( + 'altered-beast-8751-317-0078', + 'Altered Beast (8751 317-0078)', + 'Sega', + 1988, + array['Altered Beast (set 8) (8751 317-0078)'], + array['Arcade'], + '{"mame":["altbeast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'altered-beast-mega-tech', + 'Altered Beast (Mega-Tech)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_beast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'alto-i', + 'Alto I', + 'Xerox', + 1973, + '{}'::text[], + array['Arcade'], + '{"mame":["alto1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["xerox/alto1.cpp"]}'::jsonb + ), + ( + 'alto-ii', + 'Alto-II', + 'Xerox', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["alto2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["xerox/alto2.cpp"]}'::jsonb + ), + ( + 'altos-486', + 'Altos 486', + 'Altos Computer Systems', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["altos486"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["altos/altos486.cpp"]}'::jsonb + ), + ( + 'altos-5-15', + 'Altos 5-15', + 'Altos', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["altos5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["altos/altos5.cpp"]}'::jsonb + ), + ( + 'amateurcomputer-ac1-berlin', + 'Amateurcomputer AC1 Berlin', + 'Frank Heyder', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["ac1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/ac1.cpp"]}'::jsonb + ), + ( + 'amazing-maze', + 'Amazing Maze', + 'Midway', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["maze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'amazon-spirit-konami-endeavour-nsw', + 'Amazon Spirit (Konami Endeavour, NSW)', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["amazonsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'amazonia-ming-yang-electronic-tsk', + 'Amazonia (Ming-Yang Electronic / TSK)', + 'Ming-Yang Electronic / TSK', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["amaztsk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'amazonia-king-v104br', + 'Amazonia King (V104BR)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["amazonia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'amazonia-king-ii-v202br', + 'Amazonia King II (V202BR)', + 'IGS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["amazoni2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'ambush', + 'Ambush', + 'Tecfri', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ambush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/ambush.cpp"]}'::jsonb + ), + ( + 'amcoe-link-control-box', + 'Amcoe Link Control Box', + 'Amcoe', + null, + array['Amcoe Link Control Box (Version 2.2)'], + array['Arcade'], + '{"mame":["amclink"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'ameri-darts', + 'Ameri Darts', + 'Ameri', + 1989, + array['Ameri Darts (set 1)'], + array['Arcade'], + '{"mame":["amerdart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coolpool.cpp"]}'::jsonb + ), + ( + 'american-horseshoes', + 'American Horseshoes', + 'Taito America Corporation', + 1990, + array['American Horseshoes (US)'], + array['Arcade'], + '{"mame":["horshoes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'american-speedway', + 'American Speedway', + 'Enerdyne Technologies Inc.', + 1987, + array['American Speedway (set 1)'], + array['Arcade'], + '{"mame":["amspdwy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amspdwy.cpp"]}'::jsonb + ), + ( + 'americana-9131-01', + 'Americana (9131-01)', + 'Merit', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["americna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'amidar', + 'Amidar', + 'Konami', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["amidar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'amiga-1000-pal', + 'Amiga 1000 (PAL)', + 'Commodore', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["a1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-1200-pal', + 'Amiga 1200 (PAL)', + 'Commodore', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["a1200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-2000-pal', + 'Amiga 2000 (PAL)', + 'Commodore', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["a2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-3000-pal', + 'Amiga 3000 (PAL)', + 'Commodore', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["a3000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-4000-040-pal', + 'Amiga 4000/040 (PAL)', + 'Commodore', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["a4000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-4000t-pal', + 'Amiga 4000T (PAL)', + 'Commodore', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["a4000t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-500-pal', + 'Amiga 500 (PAL)', + 'Commodore', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["a500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-500-plus-pal', + 'Amiga 500 Plus (PAL)', + 'Commodore', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["a500p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-600-pal', + 'Amiga 600 (PAL)', + 'Commodore', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["a600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'amiga-cd32-pal', + 'Amiga CD32 (PAL)', + 'Commodore', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["cd32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'aminosan-satellite', + 'Aminosan (satellite)', + 'Sega', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["aminosan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'amps-car-phone', + 'AMPS Car Phone', + 'Motorola', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["ampscarp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/ampscarp.cpp"]}'::jsonb + ), + ( + 'amuse', + 'Amuse', + 'Greyhound Electronics', + 1982, + array['Amuse (Version 50.08 IBA)'], + array['Arcade'], + '{"mame":["amuse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'amust-executive-816', + 'Amust Executive 816', + 'Amust', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["amust"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/amust.cpp"]}'::jsonb + ), + ( + 'an1x-control-synthesizer', + 'AN1x Control Synthesizer', + 'Yamaha', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["an1x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/yman1x.cpp"]}'::jsonb + ), + ( + 'ancient-atlantis', + 'Ancient Atlantis', + 'Novotech', + null, + array['Ancient Atlantis (set 1)'], + array['Arcade'], + '{"mame":["ancienta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'andro-dunos-ngm-049-ngh-049', + 'Andro Dunos (NGM-049 ~ NGH-049)', + 'Visco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["androdun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'android', + 'Android', + 'Nasco', + 1987, + array['Android (prototype, later build)'], + array['Arcade'], + '{"mame":["androidp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nasco/himesiki.cpp"]}'::jsonb + ), + ( + 'andromeda-ss', + 'Andromeda SS', + 'Irem', + 1980, + array['Andromeda SS (Japan?)'], + array['Arcade'], + '{"mame":["andromed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m10.cpp"]}'::jsonb + ), + ( + 'angel-kids', + 'Angel Kids', + 'Sega / Nasco?', + 1988, + array['Angel Kids (Japan)'], + array['Arcade'], + '{"mame":["angelkds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/angelkds.cpp"]}'::jsonb + ), + ( + 'angler-dangler', + 'Angler Dangler', + 'Data East Corporation', + 1982, + array['Angler Dangler (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cadanglr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'angler-king', + 'Angler King', + 'Namco', + 1998, + array['Angler King (Japan, AG1 Ver. A)'], + array['Arcade'], + '{"mame":["aking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'animal-basket-hustle-tamaire-kyousou-24-jan-2005', + 'Animal Basket / Hustle Tamaire Kyousou (24 Jan 2005)', + 'MOSS / Sammy', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["anmlbskt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'animal-bonus', + 'Animal Bonus', + 'Amcoe', + 2003, + array['Animal Bonus (Version 1.8E Dual)'], + array['Arcade'], + '{"mame":["anibonus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'animal-bonus-nudge', + 'Animal Bonus Nudge', + 'Amcoe', + 2003, + array['Animal Bonus Nudge (Version 2.1 Dual)'], + array['Arcade'], + '{"mame":["abnudge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'animal-catch', + 'Animal Catch', + 'Sammy', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["animalc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'animal-house', + 'Animal House', + 'Suns Co Ltd.', + 1991, + array['Animal House (V1.0, set 1)'], + array['Arcade'], + '{"mame":["animalhs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'animal-kaiser-the-king-of-animals-ana1004-na-b', + 'Animal Kaiser - The King Of Animals (ANA1004-NA-B)', + 'Namco', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["animalk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'animal-kaiser-the-king-of-animals-evo-1-ana2004-na-a', + 'Animal Kaiser - The King of Animals (Evo 1, ANA2004-NA-A)', + 'Namco', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["animalke1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'animal-kaiser-the-king-of-animals-evo-2-ana2004-na-a', + 'Animal Kaiser - The King of Animals (Evo 2, ANA2004-NA-A)', + 'Namco', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["animalke2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'animal-kaiser-the-king-of-animals-evo-8-ana2004-na-a', + 'Animal Kaiser - The King of Animals (Evo 8, ANA2004-NA-A)', + 'Namco', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["animalke8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'animal-kaiser-the-king-of-animals-unknown-evo-ana2004-na-a', + 'Animal Kaiser - The King of Animals (unknown Evo, ANA2004-NA-A)', + 'Namco', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["animalkeu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'animal-treasure-hunt', + 'Animal Treasure Hunt', + 'Amcoe', + 2003, + array['Animal Treasure Hunt (Version 1.9R, set 1)'], + array['Arcade'], + '{"mame":["anithunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'animal-wonders', + 'Animal Wonders', + 'GPS', + null, + array['Animal Wonders (ver A900 66)'], + array['Arcade'], + '{"mame":["animalw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'anime-champ', + 'Anime Champ', + 'Konami', + 2000, + array['Anime Champ (GCA07 VER. JAA)'], + array['Arcade'], + '{"mame":["animechmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'another-world', + 'Another World', + 'Sunwise', + 1989, + array['Another World (Japan, V1.8)'], + array['Arcade'], + '{"mame":["anoworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunwise/anoworld.cpp"]}'::jsonb + ), + ( + 'anpanman-color-pc', + 'Anpanman Color PC', + 'Bandai', + 2009, + array['Anpanman Color PC (Japan)'], + array['Arcade'], + '{"mame":["anpncpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'anteater', + 'Anteater', + 'Tago Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["anteater"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'anti-aircraft', + 'Anti-Aircraft', + 'Atari', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["antiairc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'apache-3', + 'Apache 3', + 'Tatsumi', + 1988, + array['Apache 3 (rev F)'], + array['Arcade'], + '{"mame":["apache3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/apache3.cpp"]}'::jsonb + ), + ( + 'apb-all-points-bulletin', + 'APB - All Points Bulletin', + 'Atari Games', + 1987, + array['APB - All Points Bulletin (rev 7)'], + array['Arcade'], + '{"mame":["apb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy2.cpp"]}'::jsonb + ), + ( + 'apc', + 'APC', + 'NEC', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["apc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/apc.cpp"]}'::jsonb + ), + ( + 'apf-m-1000', + 'APF M-1000', + 'APF Electronics Inc.', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["apfm1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["apf/apf.cpp"]}'::jsonb + ), + ( + 'apollo-dn3500', + 'Apollo DN3500', + 'Apollo', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["dn3500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["apollo/apollo.cpp"]}'::jsonb + ), + ( + 'apparel-night', + 'Apparel Night', + 'Central Denshi', + 1986, + array['Apparel Night (Japan 860929)'], + array['Arcade'], + '{"mame":["apparel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'apple-10', + 'Apple 10', + 'Sandii''', + 1998, + array['Apple 10 (Ver 1.21)'], + array['Arcade'], + '{"mame":["apple10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/snookr10.cpp"]}'::jsonb + ), + ( + 'applix-1616', + 'Applix 1616', + 'Applix Pty Ltd', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["applix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/applix.cpp"]}'::jsonb + ), + ( + 'appoooh', + 'Appoooh', + 'Sanritsu / Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["appoooh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/appoooh.cpp"]}'::jsonb + ), + ( + 'apricot-f1', + 'Apricot F1', + 'ACT', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["f1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["act/apricotf.cpp"]}'::jsonb + ), + ( + 'apricot-pc-xi', + 'Apricot PC/Xi', + 'ACT', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["apricot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["act/apricot.cpp"]}'::jsonb + ), + ( + 'apricot-portable-fp', + 'Apricot Portable / FP', + 'ACT', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["fp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["act/apricotp.cpp"]}'::jsonb + ), + ( + 'apricot-xen', + 'Apricot XEN', + 'ACT', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["apxen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["act/apxen.cpp"]}'::jsonb + ), + ( + 'aqua-jack', + 'Aqua Jack', + 'Taito Corporation Japan', + 1990, + array['Aqua Jack (World)'], + array['Arcade'], + '{"mame":["aquajack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'aqua-jet', + 'Aqua Jet', + 'Namco', + 1996, + array['Aqua Jet (World, AJ2 Ver.B)'], + array['Arcade'], + '{"mame":["aquajet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'aqua-rush', + 'Aqua Rush', + 'Namco', + 1999, + array['Aqua Rush (Japan, AQ1/VER.A1)'], + array['Arcade'], + '{"mame":["aquarush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'aqua-stage', + 'Aqua Stage', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["aquastge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/coolridr.cpp"]}'::jsonb + ), + ( + 'aquarium', + 'Aquarium', + 'Excellent System', + 1996, + array['Aquarium (US)'], + array['Arcade'], + '{"mame":["aquarium"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/aquarium.cpp"]}'::jsonb + ), + ( + 'arabian', + 'Arabian', + 'Sun Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["arabian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/arabian.cpp"]}'::jsonb + ), + ( + 'arabian-fight', + 'Arabian Fight', + 'Sega', + 1991, + array['Arabian Fight (World)'], + array['Arcade'], + '{"mame":["arabfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'arabian-jewel-mda-c0090', + 'Arabian Jewel (MDA-C0090)', + 'Sega', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["arajewel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'arabian-magic', + 'Arabian Magic', + 'Taito Corporation Japan', + 1992, + array['Arabian Magic (Ver 1.0O 1992/07/06)'], + array['Arcade'], + '{"mame":["arabianm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'arbalester', + 'Arbalester', + 'Jordan I.S. / Seta', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["arbalest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'arcade-center-30-in-1-jl1800-01', + 'Arcade Center - 30-in-1 (JL1800_01)', + 'Lexibook', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["lexi30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'arcade-center-60-in-1-jl1810gr', + 'Arcade Center - 60-in-1 (JL1810GR)', + 'Lexibook', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["jl1810gr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'arcade-classics', + 'Arcade Classics', + 'Atari Games', + 1992, + array['Arcade Classics (prototype)'], + array['Arcade'], + '{"mame":["arcadecl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/arcadecl.cpp"]}'::jsonb + ), + ( + 'arcadia-nmk', + 'Arcadia (NMK)', + 'NMK', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["arcadian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'arcadia-2001', + 'Arcadia 2001', + 'Emerson', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["arcadia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["arcadia/arcadia.cpp"]}'::jsonb + ), + ( + 'arcana-heart', + 'Arcana Heart', + 'Examu', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["acheart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/nexus3d.cpp"]}'::jsonb + ), + ( + 'arcana-heart-full', + 'Arcana Heart Full', + 'Examu', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["acheartf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/nexus3d.cpp"]}'::jsonb + ), + ( + 'arch-rivals', + 'Arch Rivals', + 'Bally Midway', + 1989, + array['Arch Rivals (rev 4.0 6/29/89)'], + array['Arcade'], + '{"mame":["archrivl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr68.cpp"]}'::jsonb + ), + ( + 'arctic-thunder-v1-002', + 'Arctic Thunder (v1.002)', + 'Midway Games', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["arctthnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midqslvr.cpp"]}'::jsonb + ), + ( + 'area-51-r3000', + 'Area 51 (R3000)', + 'Atari Games', + 1996, + '{}'::text[], + array['Light gun'], + '{"mame":["area51"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'area-51-maximum-force-duo-v2-0', + 'Area 51 / Maximum Force Duo v2.0', + 'Atari Games', + 1998, + '{}'::text[], + array['Light gun'], + '{"mame":["area51mx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'area-51-site-4', + 'Area 51: Site 4', + 'Atari Games', + 1998, + array['Area 51: Site 4 (HD Rev 2.01, September 7, 1998)'], + array['Light gun'], + '{"mame":["a51site4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/mediagx.cpp"]}'::jsonb + ), + ( + 'argus', + 'Argus', + 'NMK (Jaleco license)', + 1986, + array['Argus (Gottlieb, prototype)'], + array['Arcade'], + '{"mame":["argus","argusg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/argus.cpp","gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'ark-area', + 'Ark Area', + 'UPL', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["arkarea"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/ninjakd2.cpp"]}'::jsonb + ), + ( + 'arkanoid', + 'Arkanoid', + 'Taito Corporation Japan', + 1986, + array['Arkanoid (World, older)'], + array['Arcade'], + '{"mame":["arkanoid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/arkanoid.cpp"]}'::jsonb + ), + ( + 'arkanoid-revenge-of-doh', + 'Arkanoid - Revenge of DOH', + 'Taito Corporation Japan', + 1987, + array['Arkanoid - Revenge of DOH (World)'], + array['Arcade'], + '{"mame":["arknoid2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'arkanoid-returns', + 'Arkanoid Returns', + 'Taito Corporation', + 1997, + array['Arkanoid Returns (Ver 2.02O 1997/02/10)'], + array['Arcade'], + '{"mame":["arkretrn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'arlington-horse-racing-v1-40-d', + 'Arlington Horse Racing (v1.40-D)', + 'Strata / Incredible Technologies', + 1991, + '{}'::text[], + array['Racing'], + '{"mame":["arlingtn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'arm-wrestling', + 'Arm Wrestling', + 'Nintendo', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["armwrest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/punchout.cpp"]}'::jsonb + ), + ( + 'armadillo-racing', + 'Armadillo Racing', + 'Namco', + 1997, + array['Armadillo Racing (World, AM2 Ver.A)'], + array['Racing'], + '{"mame":["adillor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'armed-f', + 'Armed F', + 'Nichibutsu', + 1988, + array['Armed F (Japan)'], + array['Arcade'], + '{"mame":["armedf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/armedf.cpp"]}'::jsonb + ), + ( + 'armed-police-batrider-fri-feb-13-1998', + 'Armed Police Batrider (Fri Feb 13 1998)', + 'Raizing / Eighting', + 1998, + array['Armed Police Batrider (Europe) (Fri Feb 13 1998)'], + array['Arcade'], + '{"mame":["batrider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/raizing_batrider.cpp"]}'::jsonb + ), + ( + 'armor-attack', + 'Armor Attack', + 'Cinematronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["armora"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'armored-car', + 'Armored Car', + 'Stern Electronics', + 1981, + array['Armored Car (set 1)'], + array['Arcade'], + '{"mame":["armorcar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'armored-warriors', + 'Armored Warriors', + 'Capcom', + 1994, + array['Armored Warriors (Europe 941024)'], + array['Arcade'], + '{"mame":["armwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'arnold-palmer-tournament-golf-mega-tech', + 'Arnold Palmer Tournament Golf (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Sports'], + '{"mame":["mt_tgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'around-the-world', + 'Around The World', + 'Amcoe', + 2007, + array['Around The World (Version 1.4R CGA)'], + array['Arcade'], + '{"mame":["atworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'arrow-flash-mega-tech', + 'Arrow Flash (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_arrow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'art-of-fighting-ryuuko-no-ken-ngm-044-ngh-044', + 'Art of Fighting / Ryuuko no Ken (NGM-044 ~ NGH-044)', + 'SNK', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["aof"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'art-of-fighting-2-ryuuko-no-ken-2-ngm-056', + 'Art of Fighting 2 / Ryuuko no Ken 2 (NGM-056)', + 'SNK', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["aof2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'art-of-fighting-3-the-path-of-the-warrior-art-of-fighting-ryuuko-no-ken-gaiden', + 'Art of Fighting 3 - The Path of the Warrior / Art of Fighting - Ryuuko no Ken Gaiden', + 'SNK', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["aof3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'as-1-controller', + 'AS-1 Controller', + 'Sega', + 1993, + array['AS-1 Controller (set 1)'], + array['Arcade'], + '{"mame":["as1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'ashura-blaster', + 'Ashura Blaster', + 'Taito Corporation Japan', + 1990, + array['Ashura Blaster (World)'], + array['Arcade'], + '{"mame":["ashura"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'asian-dynamite-dynamite-deka-ex', + 'Asian Dynamite / Dynamite Deka EX', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["asndynmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'aso-armored-scrum-object', + 'ASO - Armored Scrum Object', + 'SNK', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["aso"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'asr-10', + 'ASR-10', + 'Ensoniq', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["asr10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqasr.cpp"]}'::jsonb + ), + ( + 'asr-x', + 'ASR-X', + 'Ensoniq', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["asrx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqasr.cpp"]}'::jsonb + ), + ( + 'assault', + 'Assault', + 'Namco', + 1988, + array['Assault (Rev B)'], + array['Arcade'], + '{"mame":["assault"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'assist05', + 'ASSIST05', + 'Motorola', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["assist05"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/assist05.cpp"]}'::jsonb + ), + ( + 'asterix', + 'Asterix', + 'Konami', + 1992, + array['Asterix (ver EAD)'], + array['Arcade'], + '{"mame":["asterix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/asterix.cpp"]}'::jsonb + ), + ( + 'asteroids', + 'Asteroids', + 'Atari', + 1979, + array['Asteroids (rev 4)'], + array['Classic'], + '{"mame":["asteroid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/asteroid.cpp"]}'::jsonb + ), + ( + 'asteroids-deluxe', + 'Asteroids Deluxe', + 'Atari', + 1980, + array['Asteroids Deluxe (rev 3)'], + array['Classic'], + '{"mame":["astdelux"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/asteroid.cpp"]}'::jsonb + ), + ( + 'astra-superstars-j-980514-v1-002', + 'Astra SuperStars (J 980514 V1.002)', + 'Sunsoft', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["astrass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'astro-blaster', + 'Astro Blaster', + 'Sega', + 1981, + array['Astro Blaster (version 3)'], + array['Arcade'], + '{"mame":["astrob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80r.cpp"]}'::jsonb + ), + ( + 'astro-chase-max-a-flex', + 'Astro Chase (Max-A-Flex)', + 'Exidy / First Star Software', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mf_achas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/maxaflex.cpp"]}'::jsonb + ), + ( + 'astro-fantasia', + 'Astro Fantasia', + 'Data East Corporation', + 1981, + array['Astro Fantasia (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["castfant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'astro-fighter', + 'Astro Fighter', + 'Data East', + 1979, + array['Astro Fighter (set 1)'], + array['Arcade'], + '{"mame":["astrof"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/astrof.cpp"]}'::jsonb + ), + ( + 'astro-warrior-mega-tech-sms-based', + 'Astro Warrior (Mega-Tech, SMS based)', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_astro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'astro-wars', + 'Astro Wars', + 'Zaccaria / Zelco', + 1980, + array['Astro Wars (set 1)'], + array['Arcade'], + '{"mame":["astrowar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/galaxia.cpp"]}'::jsonb + ), + ( + 'astron-belt', + 'Astron Belt', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["astron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segald.cpp"]}'::jsonb + ), + ( + 'astropal', + 'Astropal', + 'Sidam?', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["astropal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'asuka-and-asuka', + 'Asuka & Asuka', + 'Taito Corporation', + 1988, + array['Asuka & Asuka (World)'], + array['Arcade'], + '{"mame":["asuka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'asura-blade-sword-of-dynasty', + 'Asura Blade - Sword of Dynasty', + 'Fuuki', + 1998, + array['Asura Blade - Sword of Dynasty (Japan)'], + array['Arcade'], + '{"mame":["asurabld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fuuki/fuukifg3.cpp"]}'::jsonb + ), + ( + 'asura-buster-eternal-warriors', + 'Asura Buster - Eternal Warriors', + 'Fuuki', + 2001, + array['Asura Buster - Eternal Warriors (USA)'], + array['Arcade'], + '{"mame":["asurabus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fuuki/fuukifg3.cpp"]}'::jsonb + ), + ( + 'asylum', + 'Asylum', + 'Leland Corporation', + 1991, + array['Asylum (prototype)'], + array['Arcade'], + '{"mame":["asylum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'atari-2600-ntsc', + 'Atari 2600 (NTSC)', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["a2600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/a2600.cpp"]}'::jsonb + ), + ( + 'atari-2600-point-of-purchase-display', + 'Atari 2600 Point of Purchase Display', + 'Atari', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["a2600_pop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/a2600.cpp"]}'::jsonb + ), + ( + 'atari-400-ntsc', + 'Atari 400 (NTSC)', + 'Atari', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["a400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atari400.cpp"]}'::jsonb + ), + ( + 'atari-5200', + 'Atari 5200', + 'Atari', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["a5200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atari400.cpp"]}'::jsonb + ), + ( + 'atari-7800-ntsc', + 'Atari 7800 (NTSC)', + 'Atari', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["a7800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/a7800.cpp"]}'::jsonb + ), + ( + 'atari-800-ntsc', + 'Atari 800 (NTSC)', + 'Atari', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["a800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atari400.cpp"]}'::jsonb + ), + ( + 'atari-800xl-ntsc', + 'Atari 800XL (NTSC)', + 'Atari', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["a800xl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atari400.cpp"]}'::jsonb + ), + ( + 'atari-baseball', + 'Atari Baseball', + 'Atari', + 1979, + array['Atari Baseball (set 1)'], + array['Sports'], + '{"mame":["abaseb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarifb.cpp"]}'::jsonb + ), + ( + 'atari-basketball', + 'Atari Basketball', + 'Atari', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["bsktball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bsktball.cpp"]}'::jsonb + ), + ( + 'atari-flashback-mini-7800', + 'Atari Flashback Mini 7800', + 'Atari / Nice Code', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["afbm7800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'atari-football', + 'Atari Football', + 'Atari', + 1978, + array['Atari Football (revision 2)'], + array['Sports'], + '{"mame":["atarifb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarifb.cpp"]}'::jsonb + ), + ( + 'atari-soccer', + 'Atari Soccer', + 'Atari', + 1980, + '{}'::text[], + array['Sports'], + '{"mame":["soccer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarifb.cpp"]}'::jsonb + ), + ( + 'atari-xe-game-system', + 'Atari XE Game System', + 'Atari', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["xegs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atari400.cpp"]}'::jsonb + ), + ( + 'ataxx', + 'Ataxx', + 'Leland Corporation', + 1990, + array['Ataxx (rev 5)'], + array['Arcade'], + '{"mame":["ataxx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'athena', + 'Athena', + 'SNK', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["athena"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'athena-no-hatena', + 'Athena no Hatena?', + 'Athena', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["atehate"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'atlantica-atronic', + 'Atlantica (Atronic)', + 'Atronic', + 2002, + array['Atlantica (Russia) (Atronic) (set 1)'], + array['Arcade'], + '{"mame":["atlantca"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'atm18-mini-chess-computer-english', + 'ATM18 Mini Chess Computer (English)', + 'Elektor', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["atm18mcc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektor/avrmax.cpp"]}'::jsonb + ), + ( + 'atomic-point', + 'Atomic Point', + 'Philko', + 1990, + array['Atomic Point (Korea)'], + array['Arcade'], + '{"mame":["atomicp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'atomic-robo-kid', + 'Atomic Robo-kid', + 'UPL', + 1988, + array['Atomic Robo-kid (World, Type-2)'], + array['Arcade'], + '{"mame":["robokid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/ninjakd2.cpp"]}'::jsonb + ), + ( + 'atomic-runner-chelnov', + 'Atomic Runner Chelnov', + 'Data East Corporation', + 1988, + array['Atomic Runner Chelnov (World)'], + array['Arcade'], + '{"mame":["chelnov"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/karnov.cpp"]}'::jsonb + ), + ( + 'atronic-setup-clear-chips', + 'Atronic SetUp/Clear Chips', + 'Atronic', + 1999, + array['Atronic SetUp/Clear Chips (Russia, set 1)'], + array['Arcade'], + '{"mame":["atronic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'attack', + 'Attack', + 'Exidy', + 1977, + array['Attack (set 1)'], + array['Arcade'], + '{"mame":["attckexd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidyttl.cpp"]}'::jsonb + ), + ( + 'attack-force-encrypted', + 'Attack Force (encrypted)', + 'Electronic Games Systems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["attackfc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'attack-pla-rail', + 'Attack Pla Rail', + 'Namco / Tomy', + 1998, + array['Attack Pla Rail (Japan, AP1/VER.A)'], + array['Arcade'], + '{"mame":["aplarail"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'attack-ufo', + 'Attack UFO', + 'Ryoto Electric Co.', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["attckufo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/attckufo.cpp"]}'::jsonb + ), + ( + 'atv-track', + 'ATV Track', + 'Gaelco', + 2002, + array['ATV Track (set 1)'], + array['Arcade'], + '{"mame":["atvtrack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/atvtrack.cpp"]}'::jsonb + ), + ( + 'au', + 'Au', + 'Tehkan', + 1983, + array['Au (location test)'], + array['Arcade'], + '{"mame":["au"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'aurail-unprotected', + 'Aurail (unprotected)', + 'Sega / Westone', + 1990, + array['Aurail (set 3, US) (unprotected)'], + array['Arcade'], + '{"mame":["aurail"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'ausbaufaehiger-mikrocomputer-mit-dem-u-880', + 'Ausbaufaehiger Mikrocomputer mit dem U 880', + 'Militaerverlag der DDR', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["amu880"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/huebler.cpp"]}'::jsonb + ), + ( + 'aussie-byte-ii', + 'Aussie Byte II', + 'SME Systems', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["aussieby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/aussiebyte.cpp"]}'::jsonb + ), + ( + 'auto-response-board', + 'Auto Response Board', + 'AVE Micro Systems', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["arb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/ave_arb.cpp"]}'::jsonb + ), + ( + 'av-hanafuda-hana-no-ageman', + 'AV Hanafuda Hana no Ageman', + 'Nichibutsu / AV Japan', + 1990, + array['AV Hanafuda Hana no Ageman (Japan 900716)'], + array['Arcade'], + '{"mame":["hnageman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'av-hanafuda-hana-no-christmas-eve', + 'AV Hanafuda Hana no Christmas Eve', + 'Nichibutsu / AV Japan', + 1990, + array['AV Hanafuda Hana no Christmas Eve (Japan 901204)'], + array['Arcade'], + '{"mame":["hnxmasev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'avalanche', + 'Avalanche', + 'Atari', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["avalnche"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/avalnche.cpp"]}'::jsonb + ), + ( + 'avenger', + 'Avenger', + 'Electra', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["avenger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/electra.cpp"]}'::jsonb + ), + ( + 'avengers', + 'Avengers', + 'Capcom', + 1987, + array['Avengers (US, rev. D)'], + array['Arcade'], + '{"mame":["avengers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lwings.cpp"]}'::jsonb + ), + ( + 'avengers-in-galactic-storm', + 'Avengers In Galactic Storm', + 'Data East Corporation', + 1995, + array['Avengers In Galactic Storm (US/Europe 1.0)'], + array['Arcade'], + '{"mame":["avengrgs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_mlc.cpp"]}'::jsonb + ), + ( + 'avenging-spirit', + 'Avenging Spirit', + 'Jaleco', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["avspirit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'aviion-4600', + 'AViiON 4600', + 'Data General', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["aviion_4600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dg/aviion88k.cpp"]}'::jsonb + ), + ( + 'avr-max-chess-computer-english', + 'AVR-Max Chess Computer (English)', + 'Elektor', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["avrmax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektor/avrmax.cpp"]}'::jsonb + ), + ( + 'ax-145', + 'AX-145', + 'Brother', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ax145"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/ax145.cpp"]}'::jsonb + ), + ( + 'ax80', + 'AX80', + 'Akai', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["ax80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/akaiax80.cpp"]}'::jsonb + ), + ( + 'aztarac', + 'Aztarac', + 'Centuri', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["aztarac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/aztarac.cpp"]}'::jsonb + ), + ( + 'azumanga-daioh-puzzle-bobble-gdl-0018', + 'Azumanga Daioh Puzzle Bobble (GDL-0018)', + 'MOSS (Taito license)', + 2002, + '{}'::text[], + array['Puzzle'], + '{"mame":["azumanga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'azurian-attack', + 'Azurian Attack', + 'Rait Electronics Ltd', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["azurian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'b-wings', + 'B-Wings', + 'Data East Corporation', + 1984, + array['B-Wings (Japan new Ver.)'], + array['Arcade'], + '{"mame":["bwings"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/bwing.cpp"]}'::jsonb + ), + ( + 'b-c-kid-bonk-s-adventure-arcade-version-kyukyoku-pc-genjin-special-arcade-version', + 'B.C. Kid / Bonk''s Adventure: Arcade Version / Kyukyoku!! PC Genjin: Special Arcade Version', + 'Kaneko (Hudson Soft / Red license)', + 1994, + array['B.C. Kid (Europe) / Bonk''s Adventure: Arcade Version (US, China, Korea) / Kyukyoku!! PC Genjin: Special Arcade Version (Japan)'], + array['Arcade'], + '{"mame":["bonkadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'b-c-story', + 'B.C. Story', + 'SemiCom / Tirano', + 1997, + array['B.C. Story (set 1)'], + array['Arcade'], + '{"mame":["bcstry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'b-rap-boys', + 'B.Rap Boys', + 'Kaneko', + 1992, + array['B.Rap Boys (World)'], + array['Arcade'], + '{"mame":["brapboys"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'b16', + 'B16', + 'Hitachi', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["b16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hitachi/b16.cpp"]}'::jsonb + ), + ( + 'b16-ex-ii', + 'B16 EX-II', + 'Hitachi', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["b16ex2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hitachi/b16.cpp"]}'::jsonb + ), + ( + 'babooshka-atronic', + 'Babooshka (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["baboshka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'baby-boom-challenge', + 'Baby Boom Challenge', + 'Status Games', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["bbchall"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'baby-phoenix-gv-system', + 'Baby Phoenix/GV System', + 'Konami', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["konamigv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'baby-suprem', + 'Baby Suprem', + 'Andra / Vifico', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["bsuprem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/babysuprem.cpp"]}'::jsonb + ), + ( + 'baccarat-special', + 'Baccarat Special', + 'World Station Co.,LTD', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["baccarsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/umipoker.cpp"]}'::jsonb + ), + ( + 'back-fire-tecmo', + 'Back Fire (Tecmo)', + 'Tecmo', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["backfirt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo.cpp"]}'::jsonb + ), + ( + 'back-street-soccer-krb-0031-pcb', + 'Back Street Soccer (KRB-0031 PCB)', + 'SunA (Unico license)', + 1996, + '{}'::text[], + array['Sports'], + '{"mame":["bssoccer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna16.cpp"]}'::jsonb + ), + ( + 'backfire', + 'Backfire!', + 'Data East Corporation', + 1995, + array['Backfire! (Data East, Japan, set 1)'], + array['Arcade'], + '{"mame":["backfire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/backfire.cpp"]}'::jsonb + ), + ( + 'backgammon', + 'Backgammon', + 'Merkur', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["backgamn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/manohman.cpp"]}'::jsonb + ), + ( + 'backgammon-challenger', + 'Backgammon Challenger', + 'Fidelity Electronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["backgamc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/cc7.cpp"]}'::jsonb + ), + ( + 'bad-dudes-vs-dragonninja', + 'Bad Dudes vs. Dragonninja', + 'Data East USA', + 1988, + array['Bad Dudes vs. Dragonninja (US, revision 1)'], + array['Arcade'], + '{"mame":["baddudes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'bad-lands', + 'Bad Lands', + 'Atari Games', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["badlands"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/badlands.cpp"]}'::jsonb + ), + ( + 'badlands', + 'Badlands', + 'Konami', + 1984, + array['Badlands (Konami, set 1)'], + array['Arcade'], + '{"mame":["kbadlands"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konblands.cpp"]}'::jsonb + ), + ( + 'bagman', + 'Bagman', + 'Valadon Automation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["bagman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["valadon/bagman.cpp"]}'::jsonb + ), + ( + 'bai-bian-dou-dizhu', + 'Bai Bian Dou Dizhu', + 'Sealy', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["bbddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_z80.cpp"]}'::jsonb + ), + ( + 'baibian-shuangkou', + 'Baibian Shuangkou', + 'TJF', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["baibians"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ddz.cpp"]}'::jsonb + ), + ( + 'baile-2005-v3-2-2005-01-12', + 'Baile 2005 (V3.2 2005-01-12)', + 'GMS', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["baile"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'baku-baku-animal-j-950407-v1-000', + 'Baku Baku Animal (J 950407 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["bakubaku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'bakutotsu-kijuutei', + 'Bakutotsu Kijuutei', + 'Namco', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["bakutotu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'bal-cube', + 'Bal Cube', + 'Metro', + 1996, + array['Bal Cube (Japan)'], + array['Arcade'], + '{"mame":["balcube"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'balance-try', + 'Balance Try', + 'Namco', + 1999, + array['Balance Try (Japan, ver 1.00)'], + array['Arcade'], + '{"mame":["blnctry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'ball-challenge', + 'Ball Challenge', + 'TVE', + 2002, + array['Ball Challenge (20020607 1.0 OVERSEA)'], + array['Arcade'], + '{"mame":["ballch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'ball-pom-line', + 'Ball Pom Line', + 'Namco', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["ballpom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'balloon-bomber', + 'Balloon Bomber', + 'Taito', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ballbomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'balloon-brothers', + 'Balloon Brothers', + 'East Technology', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ballbros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_x.cpp"]}'::jsonb + ), + ( + 'balloon-fight-playchoice-10', + 'Balloon Fight (PlayChoice-10)', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_bfght"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'bally-professional-arcade', + 'Bally Professional Arcade', + 'Bally Manufacturing', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["astrocde"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrohome.cpp"]}'::jsonb + ), + ( + 'baluba-louk-no-densetsu', + 'Baluba-louk no Densetsu', + 'Able Corp, Ltd.', + 1986, + array['Baluba-louk no Densetsu (Japan)'], + array['Arcade'], + '{"mame":["baluba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/senjyo.cpp"]}'::jsonb + ), + ( + 'banana-splash', + 'Banana Splash', + 'Novotech', + null, + array['Banana Splash (set 1)'], + array['Arcade'], + '{"mame":["bsplash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'bananas-go-bahamas', + 'Bananas Go Bahamas', + 'Novotech', + null, + array['Bananas Go Bahamas (set 1)'], + array['Arcade'], + '{"mame":["bananas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'banbam', + 'BanBam', + 'Sun Electronics', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["banbam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/markham.cpp"]}'::jsonb + ), + ( + 'banctec-eseries-panel', + 'BancTec ESeries Panel', + 'DALE Electronics', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["banctec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["banctec/banctec.cpp"]}'::jsonb + ), + ( + 'bandit', + 'Bandit', + 'Data East USA / Incredible Technologies', + 1989, + array['Bandit (US prototype)'], + array['Arcade'], + '{"mame":["bandit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'bang-bang-ball-v1-05', + 'Bang Bang Ball (v1.05)', + 'Banpresto / Kunihiko Tashiro+Goodhouse', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["bangball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'bang-bang-busters-2010-nci-release', + 'Bang Bang Busters (2010 NCI release)', + 'Visco', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["b2b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'bang-bead', + 'Bang Bead', + 'Visco', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["bangbead"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'bang', + 'Bang!', + 'Gaelco / Bit Managers', + 1998, + array['Bang! (version 2, checksum 140E)'], + array['Arcade'], + '{"mame":["bang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'bank-panic', + 'Bank Panic', + 'Sanritsu / Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bankp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/bankp.cpp"]}'::jsonb + ), + ( + 'bank-robbery', + 'Bank Robbery', + 'Entertainment Technology Corp.', + 1993, + array['Bank Robbery (Ver. 3.32)'], + array['Arcade'], + '{"mame":["bankrob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'bare-knuckle', + 'Bare Knuckle', + 'bootleg', + 1994, + array['Bare Knuckle (scrambled bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["barekch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'bare-knuckle-ii', + 'Bare Knuckle II', + 'bootleg', + 1994, + array['Bare Knuckle II (scrambled bootleg of Mega Drive version)', 'Bare Knuckle II (bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["barek2ch","barek2mb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'bare-knuckle-iii', + 'Bare Knuckle III', + 'bootleg / Sega', + 1994, + array['Bare Knuckle III (scrambled bootleg of Mega Drive version)', 'Bare Knuckle III (Conny bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["barek3mb","barek3mbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'bare-knuckle-iii-sunset-riders', + 'Bare Knuckle III / Sunset Riders', + 'bootleg / Sega', + 1994, + array['Bare Knuckle III / Sunset Riders (scrambled bootleg of Mega Drive versions)'], + array['Arcade'], + '{"mame":["bk3ssrmb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'barline', + 'Barline', + 'Nichibutsu', + 1988, + array['Barline (Japan?)'], + array['Arcade'], + '{"mame":["barline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'barricade', + 'Barricade', + 'Ramtek', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["barricad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/hitme.cpp"]}'::jsonb + ), + ( + 'barrier', + 'Barrier', + 'Cinematronics (Vectorbeam license)', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["barrier"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'barroom-baseball', + 'Barroom Baseball', + 'Atari', + 1983, + array['Barroom Baseball (prototype)'], + array['Sports'], + '{"mame":["barbball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bartop52.cpp"]}'::jsonb + ), + ( + 'baryon-future-assault', + 'Baryon - Future Assault', + 'SemiCom / Tirano', + 1997, + array['Baryon - Future Assault (set 1)'], + array['Arcade'], + '{"mame":["baryon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dreamwld.cpp"]}'::jsonb + ), + ( + 'baseball-playchoice-10', + 'Baseball (PlayChoice-10)', + 'Nintendo of America', + 1984, + '{}'::text[], + array['Sports'], + '{"mame":["pc_bball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'baseball-ramtek', + 'Baseball (Ramtek)', + 'Ramtek', + 1974, + '{}'::text[], + array['Sports'], + '{"mame":["bballrmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/ramtek.cpp"]}'::jsonb + ), + ( + 'baseball-stars-2', + 'Baseball Stars 2', + 'SNK', + 1992, + '{}'::text[], + array['Sports'], + '{"mame":["bstars2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'baseball-stars-professional-ngm-002', + 'Baseball Stars Professional (NGM-002)', + 'SNK', + 1990, + '{}'::text[], + array['Sports'], + '{"mame":["bstars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'baseball-stars-be-a-champ-playchoice-10', + 'Baseball Stars: Be a Champ! (PlayChoice-10)', + 'SNK (Nintendo of America license)', + 1989, + '{}'::text[], + array['Sports'], + '{"mame":["pc_bstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'baseball-the-season-ii', + 'Baseball: The Season II', + 'Cinematronics', + 1987, + '{}'::text[], + array['Sports'], + '{"mame":["basebal2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'bases-loaded', + 'Bases Loaded', + 'Jaleco (Nintendo of America license)', + 1990, + array['Bases Loaded (Prototype, PlayChoice-10)'], + array['Arcade'], + '{"mame":["pc_bload"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'basic-master-jr-mb-6885', + 'Basic Master Jr. (MB-6885)', + 'Hitachi', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["bmjr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hitachi/bmjr.cpp"]}'::jsonb + ), + ( + 'basic-master-level-3-mb-6890', + 'Basic Master Level 3 (MB-6890)', + 'Hitachi', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["bml3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hitachi/bml3.cpp"]}'::jsonb + ), + ( + 'bassstation-rack-analogue-synthesizer-module', + 'BassStation Rack Analogue Synthesizer Module', + 'Novation', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["bassstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novation/basssta.cpp"]}'::jsonb + ), + ( + 'batman', + 'Batman', + 'Atari Games', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["batman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/batman.cpp"]}'::jsonb + ), + ( + 'batman-forever-jue-960507-v1-000', + 'Batman Forever (JUE 960507 V1.000)', + 'Acclaim', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["batmanfr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'batsugun', + 'Batsugun', + 'Toaplan', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["batsugun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/batsugun.cpp"]}'::jsonb + ), + ( + 'battlantis', + 'Battlantis', + 'Konami', + 1987, + array['Battlantis (version G)'], + array['Arcade'], + '{"mame":["battlnts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/battlnts.cpp"]}'::jsonb + ), + ( + 'battle-bakraid-unlimited-version-tue-jun-8-1999', + 'Battle Bakraid - Unlimited Version (Tue Jun 8 1999)', + 'Eighting', + 1999, + array['Battle Bakraid - Unlimited Version (USA) (Tue Jun 8 1999)'], + array['Arcade'], + '{"mame":["bbakraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/raizing_batrider.cpp"]}'::jsonb + ), + ( + 'battle-chopper', + 'Battle Chopper', + 'Irem', + 1987, + array['Battle Chopper (World)'], + array['Arcade'], + '{"mame":["bchopper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'battle-circuit', + 'Battle Circuit', + 'Capcom', + 1997, + array['Battle Circuit (Europe 970319)'], + array['Arcade'], + '{"mame":["batcir"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'battle-cross', + 'Battle Cross', + 'Omori Electric Co., Ltd.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["battlex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omori/battlex.cpp"]}'::jsonb + ), + ( + 'battle-cruiser-m-12', + 'Battle Cruiser M-12', + 'Sigma Enterprises Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["bcruzm12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'battle-garegga-sat-feb-3-1996', + 'Battle Garegga (Sat Feb 3 1996)', + 'Raizing / Eighting', + 1996, + array['Battle Garegga (Europe / USA / Japan / Asia) (Sat Feb 3 1996)'], + array['Arcade'], + '{"mame":["bgaregga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/raizing.cpp"]}'::jsonb + ), + ( + 'battle-gear', + 'Battle Gear', + 'Taito', + 1999, + array['Battle Gear (VER.2.40A)'], + array['Arcade'], + '{"mame":["batlgear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'battle-gear-2', + 'Battle Gear 2', + 'Taito', + 2000, + array['Battle Gear 2 (VER.2.04J)'], + array['Arcade'], + '{"mame":["batlgr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'battle-gear-3', + 'Battle Gear 3', + 'Taito', + 2002, + array['Battle Gear 3 (Ver.2.01A)'], + array['Arcade'], + '{"mame":["batlgr3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'battle-k-road', + 'Battle K-Road', + 'Psikyo', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["btlkroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo.cpp"]}'::jsonb + ), + ( + 'battle-lane-vol-5', + 'Battle Lane! Vol. 5', + 'Technos Japan (Taito license)', + 1986, + array['Battle Lane! Vol. 5 (set 1)'], + array['Arcade'], + '{"mame":["battlane"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/battlane.cpp"]}'::jsonb + ), + ( + 'battle-of-atlantis', + 'Battle of Atlantis', + 'Comsoft', + 1981, + array['Battle of Atlantis (set 1)'], + array['Arcade'], + '{"mame":["atlantis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'battle-of-the-solar-system', + 'Battle of the Solar System', + 'Microprose Games Inc.', + 1992, + array['Battle of the Solar System (rev. 1.1a 7/23/92)'], + array['Arcade'], + '{"mame":["botss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/micro3d.cpp"]}'::jsonb + ), + ( + 'battle-rangers', + 'Battle Rangers', + 'Data East Corporation', + 1988, + array['Battle Rangers (World)'], + array['Arcade'], + '{"mame":["battlera"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/battlera.cpp"]}'::jsonb + ), + ( + 'battle-shark', + 'Battle Shark', + 'Taito Corporation Japan', + 1989, + array['Battle Shark (World)'], + array['Arcade'], + '{"mame":["bshark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'battle-tryst', + 'Battle Tryst', + 'Konami', + 1998, + array['Battle Tryst (ver JAC)'], + array['Arcade'], + '{"mame":["btltryst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamim2.cpp"]}'::jsonb + ), + ( + 'battlecry', + 'Battlecry', + 'Home Data', + 1991, + array['Battlecry (Version E)'], + array['Arcade'], + '{"mame":["battlcry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/homedata.cpp"]}'::jsonb + ), + ( + 'battlefront', + 'BattleFront', + 'TJF', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["btlfront"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ddz.cpp"]}'::jsonb + ), + ( + 'battletoads', + 'Battletoads', + 'Rare / Electronic Arts', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["btoads"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rare/btoads.cpp"]}'::jsonb + ), + ( + 'battlezone', + 'Battlezone', + 'Atari', + 1980, + array['Battlezone (rev 2)'], + array['Arcade'], + '{"mame":["bzone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bzone.cpp"]}'::jsonb + ), + ( + 'bay-route-fd1094-317-0116', + 'Bay Route (FD1094 317-0116)', + 'Sunsoft / Sega', + 1989, + array['Bay Route (set 3, World) (FD1094 317-0116)'], + array['Arcade'], + '{"mame":["bayroute"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'bazooka', + 'Bazooka', + 'Project Support Engineering', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["bazooka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pse.cpp"]}'::jsonb + ), + ( + 'bbc-bridge-companion', + 'BBC Bridge Companion', + 'Unicard', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["bbcbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unicard/bbcbc.cpp"]}'::jsonb + ), + ( + 'bcs-3-rev-2-4', + 'BCS 3 rev 2.4', + 'Eckhard Schiller', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bcs3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/bcs3.cpp"]}'::jsonb + ), + ( + 'beach-festival-world-championship-1997', + 'Beach Festival World Championship 1997', + 'Comad', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["wbbc97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pspikes.cpp"]}'::jsonb + ), + ( + 'beach-head-2000-install-05-27-03', + 'Beach Head 2000 Install - 05/27/03', + 'Global VR', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["bhead2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'beach-head-2000-install-09-16-01', + 'Beach Head 2000 Install - 09/16/01', + 'Global VR', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["bhead2ka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'beach-head-2002-install-05-27-03', + 'Beach Head 2002 Install - 05/27/03', + 'Global VR', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["bhead2k2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'beach-head-2003-desert-war-install-05-27-03', + 'Beach Head 2003 Desert War Install - 05/27/03', + 'Global VR', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["bhead2k3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'beach-patrol-atronic', + 'Beach Patrol (Atronic)', + 'Atronic', + 2002, + array['Beach Patrol (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["beachpt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'beach-spikers-gds-0014', + 'Beach Spikers (GDS-0014)', + 'CRI / Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["beachspi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'beam-invader', + 'Beam Invader', + 'Teknon Kogyo', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["beaminv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/beaminv.cpp"]}'::jsonb + ), + ( + 'bear-necessities-atronic', + 'Bear Necessities (Atronic)', + 'Atronic', + 2002, + array['Bear Necessities (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["bearnec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'beast-busters', + 'Beast Busters', + 'SNK', + 1989, + array['Beast Busters (World)'], + array['Arcade'], + '{"mame":["bbusters"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/bbusters.cpp"]}'::jsonb + ), + ( + 'beast-busters-second-nightmare', + 'Beast Busters: Second Nightmare', + 'SNK / ADK', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["bbust2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'beat-player-2000', + 'Beat Player 2000', + 'dgPIX Entertainment Inc.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["btplay2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'beat-the-champ-gv053-uaa01', + 'Beat the Champ (GV053 UAA01)', + 'Konami', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["btchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'beathead', + 'BeatHead', + 'Atari Games', + 1993, + array['BeatHead (prototype)'], + array['Arcade'], + '{"mame":["beathead"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/beathead.cpp"]}'::jsonb + ), + ( + 'beatmania', + 'beatmania', + 'Konami', + 1997, + array['beatmania (ver JA-B)'], + array['Rhythm'], + '{"mame":["bm1stmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-2nd-mix', + 'beatmania 2nd MIX', + 'Konami', + 1998, + array['beatmania 2nd MIX (ver JA-B)'], + array['Rhythm'], + '{"mame":["bm2ndmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-3rd-mix', + 'beatmania 3rd MIX', + 'Konami', + 1998, + array['beatmania 3rd MIX (ver JA-B)'], + array['Rhythm'], + '{"mame":["bm3rdmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-4th-mix', + 'beatmania 4th MIX', + 'Konami', + 1999, + array['beatmania 4th MIX (ver JA-A)'], + array['Rhythm'], + '{"mame":["bm4thmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-5th-mix', + 'beatmania 5th MIX', + 'Konami', + 1999, + array['beatmania 5th MIX (ver JA-A)'], + array['Rhythm'], + '{"mame":["bm5thmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-6th-mix', + 'beatmania 6th MIX', + 'Konami', + 2001, + array['beatmania 6th MIX (ver JA-A)'], + array['Rhythm'], + '{"mame":["bm6thmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-7th-mix', + 'beatmania 7th MIX', + 'Konami', + 2001, + array['beatmania 7th MIX (ver JA-B)'], + array['Rhythm'], + '{"mame":["bm7thmix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-club-mix', + 'beatmania Club MIX', + 'Konami', + 2000, + array['beatmania Club MIX (ver JA-A)'], + array['Rhythm'], + '{"mame":["bmclubmx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-complete-mix', + 'beatmania complete MIX', + 'Konami', + 1999, + array['beatmania complete MIX (ver JA-C)'], + array['Rhythm'], + '{"mame":["bmcompmx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-complete-mix-2', + 'beatmania complete MIX 2', + 'Konami', + 2000, + array['beatmania complete MIX 2 (ver JA-A)'], + array['Rhythm'], + '{"mame":["bmcompm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-core-remix', + 'beatmania CORE REMIX', + 'Konami', + 2000, + array['beatmania CORE REMIX (ver JA-A)'], + array['Rhythm'], + '{"mame":["bmcorerm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-featuring-dreams-come-true', + 'beatmania featuring Dreams Come True', + 'Konami', + 2000, + array['beatmania featuring Dreams Come True (ver JA-A)'], + array['Rhythm'], + '{"mame":["bmdct"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-863-jab', + 'beatmania IIDX (863 JAB)', + 'Konami', + 1999, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-2nd-style-gc985-jaa', + 'beatmania IIDX 2nd style (GC985 JAA)', + 'Konami', + 1999, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-3rd-style-gc992-jac', + 'beatmania IIDX 3rd style (GC992 JAC)', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-4th-style-gca03-jaa', + 'beatmania IIDX 4th style (GCA03 JAA)', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-5th-style-gca17-jaa', + 'beatmania IIDX 5th style (GCA17 JAA)', + 'Konami', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-6th-style-gcb4u-jab', + 'beatmania IIDX 6th style (GCB4U JAB)', + 'Konami', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-7th-style-gcb44-jab', + 'beatmania IIDX 7th style (GCB44 JAB)', + 'Konami', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-8th-style-gcc44-jaa', + 'beatmania IIDX 8th style (GCC44 JAA)', + 'Konami', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidx8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-substream-983-jaa', + 'beatmania IIDX Substream (983 JAA)', + 'Konami', + 1999, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidxs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-substream-with-ddr-2nd-club-version-2-984-a01-bm', + 'beatmania IIDX Substream with DDR 2nd Club Version 2 (984 A01 BM)', + 'Konami', + 1999, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidxc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iidx-with-ddr-2nd-club-version-896-jab', + 'beatmania IIDX with DDR 2nd Club Version (896 JAB)', + 'Konami', + 1999, + '{}'::text[], + array['Rhythm'], + '{"mame":["bmiidxc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'beatmania-iii', + 'Beatmania III', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["bm3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'beatmania-iii-append-6th-mix', + 'Beatmania III Append 6th Mix', + 'Konami', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["bm36th"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'beatmania-iii-append-7th-mix', + 'Beatmania III Append 7th Mix', + 'Konami', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["bm37th"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'beatmania-iii-append-core-remix', + 'Beatmania III Append Core Remix', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["bm3core"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'beatmania-iii-the-final', + 'Beatmania III The Final', + 'Konami', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["bm3final"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'beatmania-the-final', + 'beatmania THE FINAL', + 'Konami', + 2002, + array['beatmania THE FINAL (ver JA-A)'], + array['Rhythm'], + '{"mame":["bmfinal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'beauty-block', + 'Beauty Block', + 'AMT', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["beautyb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system16.cpp"]}'::jsonb + ), + ( + 'bebox-dual603-66', + 'BeBox Dual603-66', + 'Be Inc', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["bebox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["be/bebox.cpp"]}'::jsonb + ), + ( + 'bee-bop', + 'Bee Bop', + 'Novotech', + null, + array['Bee Bop (set 1)'], + array['Arcade'], + '{"mame":["beebop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'bee-zerk', + 'Bee-Zerk', + 'VLT Inc.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["beezerk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vlc34010.cpp"]}'::jsonb + ), + ( + 'beetlemania', + 'Beetlemania', + 'Novotech', + null, + array['Beetlemania (set 1)'], + array['Arcade'], + '{"mame":["beetlem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'beetlemania-atronic', + 'Beetlemania (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["atrbtlma"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'beetles-unplugged-atronic', + 'Beetles Unplugged (Atronic)', + 'Atronic', + 2002, + array['Beetles Unplugged (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["beetleup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'beezer', + 'Beezer', + 'Pacific Polytechnical Corp. / Tong Electronic', + 1982, + array['Beezer (version 9.0)'], + array['Arcade'], + '{"mame":["beezer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/beezer.cpp"]}'::jsonb + ), + ( + 'bega-s-battle', + 'Bega''s Battle', + 'Data East', + 1983, + array['Bega''s Battle (Revision 3)'], + array['Arcade'], + '{"mame":["begas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_ld.cpp"]}'::jsonb + ), + ( + 'behind-enemy-lines', + 'Behind Enemy Lines', + 'Sega / EPL Productions', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["bel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'bel-slots-export-5-01', + 'Bel Slots Export (5.01)', + 'Impera', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["belslots"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'bell-star-plus', + 'Bell Star Plus', + 'Paloma Elektronik?', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["bellstrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'bell-star-vip2-v-25-02-02', + 'Bell-Star+ (Vip2 v.25.02.02)', + 'Paloma Elektronik?', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["bellstr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'bell-star-vip2-v-30-1-02', + 'Bell-Star+ (Vip2 v.30.1.02)', + 'Paloma Elektronik?', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["bellstr3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'bell-star-5-vip2-v-3-6-02', + 'Bell-Star+ 5 (Vip2 v.3.6.02)', + 'Paloma Elektronik?', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["bellstr1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'bells-and-whistles', + 'Bells & Whistles', + 'Konami', + 1991, + array['Bells & Whistles (World, version L)'], + array['Arcade'], + '{"mame":["blswhstl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'beluga', + 'Beluga', + 'Novag Industries / Intelligent Heuristic Programming', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["beluga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/primo.cpp"]}'::jsonb + ), + ( + 'ben-bero-beh', + 'Ben Bero Beh', + 'Taito', + 1984, + array['Ben Bero Beh (Japan)'], + array['Arcade'], + '{"mame":["benberob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/halleys.cpp"]}'::jsonb + ), + ( + 'bermuda-triangle', + 'Bermuda Triangle', + 'SNK', + 1987, + array['Bermuda Triangle (World?)'], + array['Arcade'], + '{"mame":["bermudat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'berzerk', + 'Berzerk', + 'Stern Electronics', + 1980, + array['Berzerk (revision RC31A)'], + array['Arcade'], + '{"mame":["berzerk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/berzerk.cpp"]}'::jsonb + ), + ( + 'best-bout-boxing', + 'Best Bout Boxing', + 'Jaleco', + 1994, + array['Best Bout Boxing (ver 1.3)'], + array['Arcade'], + '{"mame":["bbbxing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'best-of-best', + 'Best Of Best', + 'SunA', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["bestbest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna16.cpp"]}'::jsonb + ), + ( + 'bestri', + 'Bestri', + 'F2 System', + 1998, + array['Bestri (Korea, set 1)'], + array['Arcade'], + '{"mame":["bestri"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/crospang.cpp"]}'::jsonb + ), + ( + 'beta', + 'Beta', + 'Pitronics', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["beta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pitronics/beta.cpp"]}'::jsonb + ), + ( + 'beyond-kung-fu', + 'Beyond Kung-Fu', + 'Irem', + 1987, + array['Beyond Kung-Fu (location test)'], + array['Arcade'], + '{"mame":["bkungfu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62_bkungfu.cpp"]}'::jsonb + ), + ( + 'bic-a5105', + 'BIC A5105', + 'VEB Robotron', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["a5105"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/a5105.cpp"]}'::jsonb + ), + ( + 'big-10-1985-success', + 'Big 10 (1985, Success)', + 'Success', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["big10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/big10.cpp"]}'::jsonb + ), + ( + 'big-10-1986-system-make', + 'Big 10 (1986, System Make)', + 'System Make', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["big10a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/big10.cpp"]}'::jsonb + ), + ( + 'big-blue-atronic', + 'Big Blue (Atronic)', + 'Atronic', + 2002, + array['Big Blue (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["bigblue"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'big-board', + 'Big Board', + 'Digital Research Computers', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["bigboard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["xerox/xerox820.cpp"]}'::jsonb + ), + ( + 'big-board-ii', + 'Big Board II', + 'Digital Research Computers', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["bigbord2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["xerox/bigbord2.cpp"]}'::jsonb + ), + ( + 'big-buck-hunter-shooter-s-challenge-v1-60-01', + 'Big Buck Hunter - Shooter''s Challenge (v1.60.01)', + 'Incredible Technologies', + 2002, + '{}'::text[], + array['Shooter'], + '{"mame":["bbhsc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'big-buck-hunter-v1-00-14', + 'Big Buck Hunter (v1.00.14)', + 'Incredible Technologies', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["bbh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'big-buck-hunter-call-of-the-wild-v3-02-5', + 'Big Buck Hunter Call of the Wild (v3.02.5)', + 'Incredible Technologies', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["bbhcotw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'big-buck-hunter-ii-sportsman-s-paradise-v2-02-11', + 'Big Buck Hunter II - Sportsman''s Paradise (v2.02.11)', + 'Incredible Technologies', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["bbh2sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'big-bucks', + 'Big Bucks', + 'Dynasoft Inc.', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["bigbucks"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'big-cheese-atronic', + 'Big Cheese (Atronic)', + 'Atronic', + 2002, + array['Big Cheese (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["abigchs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'big-deal-belgien-5-04', + 'Big Deal Belgien (5.04)', + 'Impera', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["bigdeal0"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'big-event-golf', + 'Big Event Golf', + 'Taito America Corporation', + 1986, + array['Big Event Golf (US)'], + array['Sports'], + '{"mame":["bigevglf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/bigevglf.cpp"]}'::jsonb + ), + ( + 'big-fight-big-trouble-in-the-atlantic-ocean', + 'Big Fight - Big Trouble In The Atlantic Ocean', + 'Tatsumi', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["bigfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/cyclwarr.cpp"]}'::jsonb + ), + ( + 'big-karnak', + 'Big Karnak', + 'Gaelco', + 1991, + array['Big Karnak (ver. 1.0, checksum 1e38c94)'], + array['Arcade'], + '{"mame":["bigkarnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp"]}'::jsonb + ), + ( + 'big-run', + 'Big Run', + 'Jaleco', + 1989, + array['Big Run (11th Rallye version, Europe?)'], + array['Arcade'], + '{"mame":["bigrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'big-striker', + 'Big Striker', + 'Jaleco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["bigstrik"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'big-tippers', + 'Big Tippers', + 'WMS', + 2001, + array['Big Tippers (Russian)'], + array['Arcade'], + '{"mame":["btippers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'big-twin', + 'Big Twin', + 'Playmark', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["bigtwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/playmark.cpp"]}'::jsonb + ), + ( + 'bigfoot-bonkers', + 'Bigfoot Bonkers', + 'Meadows Games, Inc.', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["bbonk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/lazercmd.cpp"]}'::jsonb + ), + ( + 'bijokko-gakuen', + 'Bijokko Gakuen', + 'Nichibutsu', + 1988, + array['Bijokko Gakuen (Japan 880116)'], + array['Arcade'], + '{"mame":["bijokkog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'bijokko-yume-monogatari', + 'Bijokko Yume Monogatari', + 'Nichibutsu', + 1987, + array['Bijokko Yume Monogatari (Japan 870925)'], + array['Arcade'], + '{"mame":["bijokkoy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'bikinikko-okinawa-de-ippai-shichaimashita', + 'BiKiNikko - Okinawa de Ippai Shichaimashita', + 'Nichibutsu/eic', + 1999, + array['BiKiNikko - Okinawa de Ippai Shichaimashita (Japan)'], + array['Arcade'], + '{"mame":["bikiniko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'bikkuri-card', + 'Bikkuri Card', + 'Peni', + 1987, + array['Bikkuri Card (Japan)'], + array['Arcade'], + '{"mame":["bikkuric"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/timeplt.cpp"]}'::jsonb + ), + ( + 'bikkuri-pro-wrestling', + 'Bikkuri Pro Wrestling', + 'Nichibutsu', + 1988, + array['Bikkuri Pro Wrestling (Japan 881221, Ver 1.05)'], + array['Arcade'], + '{"mame":["bikkuri"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'billiard-academy-real-break', + 'Billiard Academy Real Break', + 'Nakanihon', + 1998, + array['Billiard Academy Real Break (Europe)'], + array['Arcade'], + '{"mame":["realbrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/realbrk.cpp"]}'::jsonb + ), + ( + 'bio-attack', + 'Bio Attack', + 'Taito Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["bioatack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'bio-f-r-e-a-k-s', + 'Bio F.R.E.A.K.S', + 'Midway Games', + 1997, + array['Bio F.R.E.A.K.S (prototype, boot ROM 0.1i)'], + array['Arcade'], + '{"mame":["biofreak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'bio-hazard-battle', + 'Bio-Hazard Battle', + 'bootleg / Sega', + 1995, + array['Bio-Hazard Battle (scrambled bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["biohzdmb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'bio-hazard-battle-mega-play', + 'Bio-hazard Battle (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_bio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'bio-ship-paladin', + 'Bio-ship Paladin', + 'UPL (American Sammy license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["bioship"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'biomechanical-toy', + 'Biomechanical Toy', + 'Gaelco / Zeus', + 1995, + array['Biomechanical Toy (ver. 1.0.1885, checksum 69f5e032)'], + array['Arcade'], + '{"mame":["biomtoy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp"]}'::jsonb + ), + ( + 'bionic-commando-euro', + 'Bionic Commando (Euro)', + 'Capcom', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["bionicc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/bionicc.cpp"]}'::jsonb + ), + ( + 'biplane', + 'Biplane', + 'Fun Games', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["biplane"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/fungames.cpp"]}'::jsonb + ), + ( + 'biplane-4', + 'Biplane 4', + 'Fun Games', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["biplane4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/fungames.cpp"]}'::jsonb + ), + ( + 'birdie-king', + 'Birdie King', + 'Taito Corporation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["bking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/bking.cpp"]}'::jsonb + ), + ( + 'birdie-king-2', + 'Birdie King 2', + 'Taito Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["bking2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/bking.cpp"]}'::jsonb + ), + ( + 'birdie-king-3', + 'Birdie King 3', + 'Taito Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bking3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/bking.cpp"]}'::jsonb + ), + ( + 'birdie-try', + 'Birdie Try', + 'Data East Corporation', + 1988, + array['Birdie Try (Japan, revision 2, revision 1 MCU)'], + array['Arcade'], + '{"mame":["birdtry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'birdiy', + 'Birdiy', + 'Mama Top', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["birdiy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'bishi-bashi-champ-mini-game-senshuken', + 'Bishi Bashi Champ Mini Game Senshuken', + 'Konami', + 1996, + array['Bishi Bashi Champ Mini Game Senshuken (ver JAA, 3 Players)'], + array['Arcade'], + '{"mame":["bishi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/bishi.cpp"]}'::jsonb + ), + ( + 'bishou-jan', + 'Bishou Jan', + 'Subsino', + 1999, + array['Bishou Jan (Japan, Ver. 203)'], + array['Arcade'], + '{"mame":["bishjan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'bishoujo-janshi-pretty-sailor-18-kin', + 'Bishoujo Janshi Pretty Sailor 18-kin', + 'Sphinx', + 1994, + array['Bishoujo Janshi Pretty Sailor 18-kin (Japan)'], + array['Arcade'], + '{"mame":["psailor1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj9195.cpp"]}'::jsonb + ), + ( + 'bishoujo-janshi-pretty-sailor-2', + 'Bishoujo Janshi Pretty Sailor 2', + 'Sphinx', + 1994, + array['Bishoujo Janshi Pretty Sailor 2 (Japan)'], + array['Arcade'], + '{"mame":["psailor2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj9195.cpp"]}'::jsonb + ), + ( + 'bitel-t3210', + 'Bitel T3210', + 'Siemens', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["t3210"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["siemens/bitel.cpp"]}'::jsonb + ), + ( + 'bittboy-mini-fc-300-in-1', + 'BittBoy Mini FC 300 in 1', + 'BittBoy', + 2017, + '{}'::text[], + array['Arcade'], + '{"mame":["bittboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'black-beard', + 'Black Beard', + 'Astro Corp.', + 2005, + array['Black Beard (Russia, set 1)'], + array['Arcade'], + '{"mame":["blackbd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'black-heart', + 'Black Heart', + 'UPL', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["blkheart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'black-hole', + 'Black Hole', + 'TDS & MINTS', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["blkhole"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'black-hole-efg-sanremo', + 'Black Hole (EFG Sanremo)', + 'EFG Sanremo', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["blackhol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/efg8080.cpp"]}'::jsonb + ), + ( + 'black-jack', + 'Black Jack', + 'Irem', + 1992, + array['Black Jack (Irem, satellite unit, rev. T)'], + array['Arcade'], + '{"mame":["bj92"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m78.cpp"]}'::jsonb + ), + ( + 'black-jack-olympic-games-v5-04-upgrade-kit-for-wild-card', + 'Black Jack (Olympic Games, v5.04, upgrade kit for Wild Card)', + 'Olympic Video Gaming PTY LTD', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["olym65bj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'black-panther', + 'Black Panther', + 'Konami', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["blkpnthr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'black-pearl-ukraine-v-45-02', + 'Black Pearl (Ukraine, V. 45.02)', + 'Extrema', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["blpearl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'black-rose-rapid-fire-grand-prix-konami-endeavour-queensland', + 'Black Rose Rapid Fire Grand Prix (Konami Endeavour, Queensland)', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["blkrose"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'black-touch', + 'Black Touch', + 'Yang Gi Co Ltd.', + null, + array['Black Touch (Korea)'], + array['Arcade'], + '{"mame":["blktouch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'black-touch-96', + 'Black Touch ''96', + 'D.G.R.M.', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["blackt96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dgrm/blackt96.cpp"]}'::jsonb + ), + ( + 'black-touch-ii', + 'Black Touch II', + '', + 1993, + array['Black Touch II (Korea)'], + array['Arcade'], + '{"mame":["blktch2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shanghai.cpp"]}'::jsonb + ), + ( + 'black-widow', + 'Black Widow', + 'Atari', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["bwidow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bwidow.cpp"]}'::jsonb + ), + ( + 'blade-master', + 'Blade Master', + 'Irem', + 1991, + array['Blade Master (World)'], + array['Arcade'], + '{"mame":["bmaster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'blades-of-steel', + 'Blades of Steel', + 'Konami', + 1987, + array['Blades of Steel (version T, Joystick)'], + array['Arcade'], + '{"mame":["bladestl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/bladestl.cpp"]}'::jsonb + ), + ( + 'blandia', + 'Blandia', + 'Allumer', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["blandia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'blast-off', + 'Blast Off', + 'Namco', + 1989, + array['Blast Off (Japan)'], + array['Arcade'], + '{"mame":["blastoff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'blastaball-arcadia-v-2-1', + 'Blastaball (Arcadia, V 2.1)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_blast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'blasted', + 'Blasted', + 'Bally Midway', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["blasted"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr68.cpp"]}'::jsonb + ), + ( + 'blaster', + 'Blaster', + 'Williams / Vid Kidz', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["blaster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'blasteroids', + 'Blasteroids', + 'Atari Games', + 1987, + array['Blasteroids (rev 4)'], + array['Arcade'], + '{"mame":["blstroid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/blstroid.cpp"]}'::jsonb + ), + ( + 'blasto', + 'Blasto', + 'Gremlin', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["blasto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/blockade.cpp"]}'::jsonb + ), + ( + 'blaze-on', + 'Blaze On', + 'A.I (Atlus license)', + 1992, + array['Blaze On (World)'], + array['Arcade'], + '{"mame":["blazeon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'blazer', + 'Blazer', + 'Namco', + 1987, + array['Blazer (Japan)'], + array['Arcade'], + '{"mame":["blazer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'blazing-star', + 'Blazing Star', + 'Yumekobo', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["blazstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'blazing-tornado', + 'Blazing Tornado', + 'Human Amusement', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["blzntrnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'blicks', + 'Blicks', + 'Sega', + 1990, + array['Blicks (Japan)'], + array['Arcade'], + '{"mame":["blicks"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasm1.cpp"]}'::jsonb + ), + ( + 'blits-loto-ukraine-v-30-16', + 'Blits Loto (Ukraine, V. 30.16)', + 'Extrema', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["bloto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'block-block', + 'Block Block', + 'Capcom', + 1991, + array['Block Block (World 911219 Joystick)'], + array['Arcade'], + '{"mame":["block"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'block-carnival-thunder-and-lightning-2', + 'Block Carnival / Thunder & Lightning 2', + 'Visco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["blockcar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'block-fever', + 'Block Fever', + 'Nintendo', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["blockfvr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/blockfvr.cpp"]}'::jsonb + ), + ( + 'block-gal-mc-8123b-317-0029', + 'Block Gal (MC-8123B, 317-0029)', + 'Sega / Vic Tokai', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["blockgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'block-hole', + 'Block Hole', + 'Konami', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["blockhl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/blockhl.cpp"]}'::jsonb + ), + ( + 'block-out', + 'Block Out', + 'Technos Japan / California Dreams', + 1989, + array['Block Out (set 1)'], + array['Arcade'], + '{"mame":["blockout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/blockout.cpp"]}'::jsonb + ), + ( + 'block-pong-pong', + 'Block Pong-Pong', + 'MOSS / Sammy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["blokpong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'blockade', + 'Blockade', + 'Gremlin', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["blockade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/blockade.cpp"]}'::jsonb + ), + ( + 'blocken', + 'Blocken', + 'Visco / KID', + 1994, + array['Blocken (Japan)'], + array['Arcade'], + '{"mame":["blocken"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shangha3.cpp"]}'::jsonb + ), + ( + 'blockout-tax', + 'Blockout (TAX)', + 'TAX / Game Revival', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["blocktax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blocktax.cpp"]}'::jsonb + ), + ( + 'blomby-car', + 'Blomby Car', + 'ABM & Gecas', + 1994, + array['Blomby Car (Version 1P0)'], + array['Arcade'], + '{"mame":["blmbycar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/blmbycar.cpp"]}'::jsonb + ), + ( + 'blood-bros', + 'Blood Bros.', + 'TAD Corporation', + 1990, + array['Blood Bros. (World?)'], + array['Arcade'], + '{"mame":["bloodbro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/bloodbro.cpp"]}'::jsonb + ), + ( + 'blood-storm-v2-22', + 'Blood Storm (v2.22)', + 'Strata / Incredible Technologies', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["bloodstm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'blood-warrior', + 'Blood Warrior', + 'Kaneko', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["bloodwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'bloody-roar-3', + 'Bloody Roar 3', + 'bootleg', + 2001, + array['Bloody Roar 3 (bootleg)'], + array['Arcade'], + '{"mame":["bldyr3b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'bloxeed-fd1094-317-0139', + 'Bloxeed (FD1094 317-0139)', + 'Sega / Elorg', + 1989, + array['Bloxeed (Japan) (FD1094 317-0139)'], + array['Arcade'], + '{"mame":["bloxeed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'blue-hawk', + 'Blue Hawk', + 'Dooyong', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["bluehawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'blue-print-midway', + 'Blue Print (Midway)', + 'Zilec Electronics / Bally Midway', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["blueprnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/blueprnt.cpp"]}'::jsonb + ), + ( + 'blue-shark-mds-hellas', + 'Blue Shark (MDS Hellas)', + 'MDS Hellas', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["blshark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'blue-shark-midway', + 'Blue Shark (Midway)', + 'Midway', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["blueshrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'blue-s-journey-raguy-alm-001-alh-001', + 'Blue''s Journey / Raguy (ALM-001 ~ ALH-001)', + 'Alpha Denshi Co.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["bjourney"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'bmx-stunts', + 'BMX Stunts', + 'Jetsoft', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["bmxstunts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'bnb-arcade', + 'BnB Arcade', + 'Eolith', + 2003, + array['BnB Arcade (V1.0005 World)'], + array['Arcade'], + '{"mame":["bballoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/ghosteo.cpp"]}'::jsonb + ), + ( + 'bo', + 'BO', + 'Philips', + 1987, + array['BO (Videosynthesizer Prototype)'], + array['Arcade'], + '{"mame":["pbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/philipsbo.cpp"]}'::jsonb + ), + ( + 'body-slam-8751-317-0015', + 'Body Slam (8751 317-0015)', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["bodyslam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'bogey-manor', + 'Bogey Manor', + 'Technos Japan', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["bogeyman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/bogeyman.cpp"]}'::jsonb + ), + ( + 'boggy-84', + 'Boggy ''84', + 'Kaneko', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["boggy84"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/fastfred.cpp"]}'::jsonb + ), + ( + 'bomb-bee', + 'Bomb Bee', + 'Namco', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["bombbee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'bomb-jack', + 'Bomb Jack', + 'Tehkan', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bombjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/bombjack.cpp"]}'::jsonb + ), + ( + 'bomb-kick', + 'Bomb Kick', + 'Yun Sung', + 1998, + array['Bomb Kick (set 1)'], + array['Arcade'], + '{"mame":["bombkick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsun16.cpp"]}'::jsonb + ), + ( + 'bomber-man-world-new-dyna-blaster-global-quest', + 'Bomber Man World / New Dyna Blaster - Global Quest', + 'Irem', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["bbmanw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m90.cpp"]}'::jsonb + ), + ( + 'bombjack-twin', + 'Bombjack Twin', + 'NMK', + 1993, + array['Bombjack Twin (set 1)'], + array['Arcade'], + '{"mame":["bjtwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'bombs-away', + 'Bombs Away', + 'Meadows', + 1976, + array['Bombs Away (prototype)'], + array['Arcade'], + '{"mame":["bombaway","bombsa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadwttl.cpp","jaleco/psychic5.cpp"]}'::jsonb + ), + ( + 'bonanza-bros', + 'Bonanza Bros', + 'Sega', + 1990, + array['Bonanza Bros (US, Floppy DS3-5000-07d? Based)'], + array['Arcade'], + '{"mame":["bnzabros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'bonanza-bros-mega-tech', + 'Bonanza Bros. (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_bbros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'bondwell-12', + 'Bondwell 12', + 'Bondwell Holding', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bw12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bondwell/bw12.cpp"]}'::jsonb + ), + ( + 'bondwell-model-2', + 'Bondwell Model 2', + 'Bondwell Holding', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["bw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bondwell/bw2.cpp"]}'::jsonb + ), + ( + 'bongo', + 'Bongo', + 'Jetsoft', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["bongo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'bonne-chance', + 'Bonne Chance!', + '', + null, + array['Bonne Chance! (Golden Poker prequel HW, set 1)', 'Bonne Chance! (Golden Poker prequel HW, set 2)'], + array['Arcade'], + '{"mame":["bchancep","bchanceq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'bonne-chance-french-english', + 'Bonne Chance! (French/English)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["bchance"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicfly.cpp"]}'::jsonb + ), + ( + 'bonus-card-german', + 'Bonus Card (German)', + 'Fun World', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["bonuscrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'bonus-chance', + 'Bonus Chance', + 'Wing Co., Ltd.', + 1990, + array['Bonus Chance (W-8, set 1)'], + array['Arcade'], + '{"mame":["bonusch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'bonus-spin-bonanza-v1-1g', + 'Bonus Spin Bonanza (V1.1G)', + 'Dyna', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["bsbonanza"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'bonze-adventure', + 'Bonze Adventure', + 'Taito Corporation Japan', + 1988, + array['Bonze Adventure (World, rev 1)'], + array['Arcade'], + '{"mame":["bonzeadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'boo-boo-donpatchi', + 'Boo Boo Donpatchi', + 'Amuzy Corporation', + 2005, + array['Boo Boo Donpatchi (Japan, ver 1.01)'], + array['Arcade'], + '{"mame":["boobood"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'booby-kids-magnet-system', + 'Booby Kids (Magnet System)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_boob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'boogie-wings', + 'Boogie Wings', + 'Data East Corporation', + 1992, + array['Boogie Wings (Europe v1.5, 92.12.07)'], + array['Arcade'], + '{"mame":["boogwing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/boogwing.cpp"]}'::jsonb + ), + ( + 'book-of-ra', + 'Book Of Ra', + 'Novotech', + null, + array['Book Of Ra (set 1)'], + array['Arcade'], + '{"mame":["bookra"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'book-theatre', + 'Book Theatre', + 'Nazionale Elettronica', + null, + array['Book Theatre (Ver 1.2)'], + array['Arcade'], + '{"mame":["bookthr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'boom', + 'Boom', + 'WMS', + 1998, + array['Boom (Russian)'], + array['Arcade'], + '{"mame":["wmsboom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'boomer-rang-r-genesis', + 'Boomer Rang''r / Genesis', + 'Data East Corporation', + 1983, + array['Boomer Rang''r / Genesis (set 1)'], + array['Arcade'], + '{"mame":["boomrang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/liberate.cpp"]}'::jsonb + ), + ( + 'boong-ga-boong-ga-spank-em', + 'Boong-Ga Boong-Ga (Spank''em!)', + 'Taff System', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["boonggab"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'boot-hill', + 'Boot Hill', + 'Dave Nutting Associates / Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["boothill"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'border-down-gdl-0023a', + 'Border Down (GDL-0023A)', + 'G.Rev', + 2003, + array['Border Down (Rev A) (GDL-0023A)'], + array['Arcade'], + '{"mame":["bdrdown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'borderline', + 'Borderline', + 'Sega', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["brdrline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'borench', + 'Borench', + 'Sega', + 1990, + array['Borench (set 1)'], + array['Arcade'], + '{"mame":["borench"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'boris', + 'Boris', + 'Applied Concepts', + 1978, + array['Boris (rev. 01)'], + array['Arcade'], + '{"mame":["boris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["appliedconcepts/boris.cpp"]}'::jsonb + ), + ( + 'boris-diplomat', + 'Boris Diplomat', + 'Applied Concepts', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["borisdpl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["appliedconcepts/borisdpl.cpp"]}'::jsonb + ), + ( + 'born-to-fight', + 'Born To Fight', + 'International Games', + null, + array['Born To Fight (set 1)'], + array['Arcade'], + '{"mame":["borntofi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/fantland.cpp"]}'::jsonb + ), + ( + 'bosconian-star-destroyer', + 'Bosconian - Star Destroyer', + 'Namco', + 1981, + array['Bosconian - Star Destroyer (version 5)'], + array['Arcade'], + '{"mame":["bosco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/galaga.cpp"]}'::jsonb + ), + ( + 'botanic-english-spanish', + 'Botanic (English / Spanish)', + 'Itisa', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["botanic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["valadon/bagman.cpp"]}'::jsonb + ), + ( + 'bottle-10', + 'Bottle 10', + 'C.M.C.', + 1996, + array['Bottle 10 (Italian, set 1)'], + array['Arcade'], + '{"mame":["bottle10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'bottom-of-the-ninth', + 'Bottom of the Ninth', + 'Konami', + 1989, + array['Bottom of the Ninth (version T)'], + array['Arcade'], + '{"mame":["bottom9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/bottom9.cpp"]}'::jsonb + ), + ( + 'boulder-dash', + 'Boulder Dash', + 'Data East Corporation', + 1985, + array['Boulder Dash (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cbdash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'boulder-dash-max-a-flex', + 'Boulder Dash (Max-A-Flex)', + 'Exidy / First Star Software', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mf_bdash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/maxaflex.cpp"]}'::jsonb + ), + ( + 'boulder-dash-boulder-dash-part-2', + 'Boulder Dash / Boulder Dash Part 2', + 'Data East Corporation (licensed from First Star)', + 1990, + array['Boulder Dash / Boulder Dash Part 2 (World)'], + array['Arcade'], + '{"mame":["bouldash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'bouncing-balls', + 'Bouncing Balls', + 'Comad', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["bballs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/tigeroad.cpp"]}'::jsonb + ), + ( + 'bounty-hunter-gc-tech-co-ltd', + 'Bounty Hunter (GC-Tech Co., LTD)', + 'GC-Tech Co., LTD', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["bntyhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bntyhunt.cpp"]}'::jsonb + ), + ( + 'bowl-o-rama', + 'Bowl-O-Rama', + 'P&P Marketing', + 1991, + array['Bowl-O-Rama (Rev 1.0)'], + array['Arcade'], + '{"mame":["bowlrama"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/capbowl.cpp"]}'::jsonb + ), + ( + 'bowling-alley', + 'Bowling Alley', + 'Midway', + 1978, + '{}'::text[], + array['Sports'], + '{"mame":["bowler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'bowling-gum', + 'Bowling Gum', + '', + null, + '{}'::text[], + array['Sports'], + '{"mame":["bowlgum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enraya.cpp"]}'::jsonb + ), + ( + 'bowling-road', + 'Bowling Road', + 'Nazionale Elettronica', + 2001, + array['Bowling Road (Ver 1.5)'], + array['Sports'], + '{"mame":["bowlroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'bowmen', + 'Bowmen', + 'Ten-Level', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["bowmen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/vigilant.cpp"]}'::jsonb + ), + ( + 'boxer', + 'Boxer', + 'Atari', + 1978, + array['Boxer (prototype)'], + array['Arcade'], + '{"mame":["boxer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/boxer.cpp"]}'::jsonb + ), + ( + 'boxing-bugs', + 'Boxing Bugs', + 'Cinematronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["boxingb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'boxing-mania-ashita-no-joe', + 'Boxing Mania: Ashita no Joe', + 'Konami', + 2001, + array['Boxing Mania: Ashita no Joe (ver JAA)'], + array['Arcade'], + '{"mame":["boxingm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'boxy-boy', + 'Boxy Boy', + 'Namco', + 1990, + array['Boxy Boy (World, SB2)'], + array['Arcade'], + '{"mame":["boxyboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'bra-il', + 'Bra$il', + 'High Video', + 2000, + array['Bra$il (Version 3)'], + array['Arcade'], + '{"mame":["brasil"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'bradley-trainer', + 'Bradley Trainer', + 'Atari', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["bradley"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bzone.cpp"]}'::jsonb + ), + ( + 'brailab-plus', + 'BraiLab Plus', + 'Jozsef and Endre Lukacs', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["braiplus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homelab/braiplus.cpp"]}'::jsonb + ), + ( + 'brain', + 'Brain', + 'Coreland / Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["brain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'brasil-86', + 'Brasil 86', + '', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["brasil86"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'brasil-87', + 'Brasil 87', + '', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["brasil87"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'brasil-89', + 'Brasil 89', + '', + 1989, + array['Brasil 89 (set 1)'], + array['Arcade'], + '{"mame":["brasil89"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'brasil-93', + 'Brasil 93', + '', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["brasil93"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'brave-firefighters', + 'Brave Firefighters', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["braveff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'break-thru', + 'Break Thru', + 'Data East Corporation', + 1986, + array['Break Thru (World)'], + array['Arcade'], + '{"mame":["brkthru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/brkthru.cpp"]}'::jsonb + ), + ( + 'breakers', + 'Breakers', + 'Visco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["breakers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'breakers-revenge', + 'Breakers Revenge', + 'Visco', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["breakrev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'breakout', + 'Breakout', + 'Atari', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["breakout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/pong.cpp"]}'::jsonb + ), + ( + 'brick-people-block-peepoo', + 'Brick People / Block PeePoo', + 'Sega', + 2009, + array['Brick People / Block PeePoo (Ver 1.002)'], + array['Arcade'], + '{"mame":["brickppl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'brick-zone-v6-0-joystick', + 'Brick Zone (v6.0, Joystick)', + 'SunA', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["brickzn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna8.cpp"]}'::jsonb + ), + ( + 'bridge-bidder', + 'Bridge Bidder', + 'Fidelity Electronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["bridgeb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/bridgeb.cpp"]}'::jsonb + ), + ( + 'bridge-challenger', + 'Bridge Challenger', + 'Fidelity Electronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["bridgec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/card.cpp"]}'::jsonb + ), + ( + 'bridge-challenger-iii', + 'Bridge Challenger III', + 'Fidelity Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["bridgec3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/card.cpp"]}'::jsonb + ), + ( + 'bristles-max-a-flex', + 'Bristles (Max-A-Flex)', + 'Exidy / First Star Software', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mf_brist"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/maxaflex.cpp"]}'::jsonb + ), + ( + 'brixian', + 'Brixian', + 'Cheil Computer System', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["brixian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/arkanoid.cpp"]}'::jsonb + ), + ( + 'brodjaga', + 'Brodjaga', + 'bootleg', + null, + array['Brodjaga (Arcade bootleg of ZX Spectrum ''Inspector Gadget and the Circus of Fear'')'], + array['Arcade'], + '{"mame":["brod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/photon2.cpp"]}'::jsonb + ), + ( + 'brute-force', + 'Brute Force', + 'Leland Corporation', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["brutforc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'bu-bu-car-english', + 'Bu Bu Car (English)', + 'IGS', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["bubucar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm2.cpp"]}'::jsonb + ), + ( + 'bubble-2000', + 'Bubble 2000', + 'Afega (Tuning license)', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["bubl2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'bubble-bobble', + 'Bubble Bobble', + 'Taito Corporation', + 1986, + array['Bubble Bobble (Japan, Ver 0.1)'], + array['Platformer', 'Puzzle'], + '{"mame":["bublbobl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/bublbobl.cpp"]}'::jsonb + ), + ( + 'bubble-bobble-ii', + 'Bubble Bobble II', + 'Taito Corporation Japan', + 1994, + array['Bubble Bobble II (Ver 2.6O 1994/12/16)'], + array['Platformer', 'Puzzle'], + '{"mame":["bublbob2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'bubble-memories-the-story-of-bubble-bobble-iii', + 'Bubble Memories: The Story Of Bubble Bobble III', + 'Taito Corporation Japan', + 1995, + array['Bubble Memories: The Story Of Bubble Bobble III (Ver 2.4O 1996/02/15)'], + array['Platformer', 'Puzzle'], + '{"mame":["bubblem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'bubble-torneo', + 'Bubble Torneo', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["btorneo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'bubble-trouble-golly-ghost-2', + 'Bubble Trouble - Golly! Ghost! 2', + 'Namco', + 1992, + array['Bubble Trouble - Golly! Ghost! 2 (World, Rev B)'], + array['Arcade'], + '{"mame":["bubbletr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'bubblen-roulette', + 'Bubblen Roulette', + 'Taito Corporation', + 1997, + array['Bubblen Roulette (Japan, main ver. 1.8, video ver. 1.3)'], + array['Arcade'], + '{"mame":["bubbroul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/sbmjb.cpp"]}'::jsonb + ), + ( + 'bubbles', + 'Bubbles', + 'Williams', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["bubbles"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'buccaneers', + 'Buccaneers', + 'Duintronic', + 1989, + array['Buccaneers (set 1)'], + array['Arcade'], + '{"mame":["buccanrs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/vigilant.cpp"]}'::jsonb + ), + ( + 'buck-rogers-planet-of-zoom', + 'Buck Rogers: Planet of Zoom', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["buckrog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/turbo.cpp"]}'::jsonb + ), + ( + 'bucky-o-hare', + 'Bucky O''Hare', + 'Konami', + 1992, + array['Bucky O''Hare (ver EAB)'], + array['Arcade'], + '{"mame":["bucky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/moo.cpp"]}'::jsonb + ), + ( + 'buena-suerte', + 'Buena Suerte', + '', + 1990, + array['Buena Suerte (Spanish, set 1)'], + array['Arcade'], + '{"mame":["bsuerte"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'buena-suerte-94', + 'Buena Suerte ''94', + 'Entretenimientos GEMINIS', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["bs94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/re900.cpp"]}'::jsonb + ), + ( + 'buggy-boy-speed-buggy', + 'Buggy Boy/Speed Buggy', + 'Tatsumi', + 1985, + array['Buggy Boy/Speed Buggy (cockpit, rev. D)'], + array['Arcade'], + '{"mame":["buggyboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/tx1.cpp"]}'::jsonb + ), + ( + 'buggy-challenge', + 'Buggy Challenge', + 'Taito Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["buggychl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/buggychl.cpp"]}'::jsonb + ), + ( + 'bugs-fever', + 'Bugs Fever', + 'Amcoe', + 2006, + array['Bugs Fever (Version 1.7R CGA)'], + array['Arcade'], + '{"mame":["bugfever"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'bull-fighter', + 'Bull Fighter', + 'Alpha Denshi Co.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bullfgtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/equites.cpp"]}'::jsonb + ), + ( + 'bullet', + 'Bullet', + 'Wave Mate', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wmbullet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wavemate/bullet.cpp"]}'::jsonb + ), + ( + 'bullet-fd1094-317-0041', + 'Bullet (FD1094 317-0041)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["bullet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'bullet-mark', + 'Bullet Mark', + 'Sega', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["bmark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segattl.cpp"]}'::jsonb + ), + ( + 'bullfight-315-5065', + 'Bullfight (315-5065)', + 'Coreland / Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["bullfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'bulls-eye-darts', + 'Bulls Eye Darts', + 'Shinkai Inc. (Magic Electronics Inc. license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["bullsdrt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/centiped.cpp"]}'::jsonb + ), + ( + 'bungee-monkey', + 'Bungee Monkey', + 'Novotech', + null, + array['Bungee Monkey (set 1)'], + array['Arcade'], + '{"mame":["bungeem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'bungo-mini-5sx', + 'Bungo mini 5SX', + 'NEC', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mini5sx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/bungo.cpp"]}'::jsonb + ), + ( + 'burger-kids', + 'Burger Kids', + 'Sunwise', + 1995, + array['Burger Kids (Japan)'], + array['Arcade'], + '{"mame":["burgkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/sunwise.cpp"]}'::jsonb + ), + ( + 'burger-time', + 'Burger Time', + 'Data East Corporation', + 1982, + array['Burger Time (Data East set 1)', 'Burger Time (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["btime","cbtime"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp","dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'burglar-x', + 'Burglar X', + 'Unico', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["burglarx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/unico.cpp"]}'::jsonb + ), + ( + 'buriki-one-world-grapple-tournament-99-in-tokyo', + 'Buriki One: World Grapple Tournament ''99 in Tokyo', + 'SNK', + 1999, + array['Buriki One: World Grapple Tournament ''99 in Tokyo (rev.B)'], + array['Arcade'], + '{"mame":["buriki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'burnin-rubber', + 'Burnin'' Rubber', + 'Data East', + 1982, + array['Burnin'' Rubber (DECO Cassette) (US) (set 1)'], + array['Arcade'], + '{"mame":["brubber","cburnrub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp","dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'burning-fight-ngm-018-ngh-018', + 'Burning Fight (NGM-018 ~ NGH-018)', + 'SNK', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["burningf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'burning-force', + 'Burning Force )', + 'Namco', + 1989, + array['Burning Force (Japan, new version (Rev C))'], + array['Arcade'], + '{"mame":["burnforc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'burning-rival', + 'Burning Rival', + 'Sega', + 1992, + array['Burning Rival (World)'], + array['Arcade'], + '{"mame":["brival"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'burning-sanrinsya-burning-tricycle', + 'Burning Sanrinsya - Burning Tricycle', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["b3rinsya"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'buster', + 'Buster', + 'Marian Electronics Ltd.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["buster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/buster.cpp"]}'::jsonb + ), + ( + 'butasan-pig-s-and-bomber-s', + 'Butasan - Pig''s & Bomber''s', + 'NMK (Jaleco license)', + 1987, + array['Butasan - Pig''s & Bomber''s (Japan, English)'], + array['Arcade'], + '{"mame":["butasan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/argus.cpp"]}'::jsonb + ), + ( + 'butterfly-video-game', + 'Butterfly Video Game', + 'Bordun International', + 1995, + array['Butterfly Video Game (version A00)'], + array['Arcade'], + '{"mame":["butrfly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'buttobi-striker', + 'Buttobi Striker', + 'Konami', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["buttobi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'bygone', + 'Bygone', + 'Taito Corporation', + 1985, + array['Bygone (prototype)'], + array['Arcade'], + '{"mame":["bygone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/lkage.cpp"]}'::jsonb + ), + ( + 'c-10', + 'C-10', + 'Cromemco', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["c10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cromemco/c10.cpp"]}'::jsonb + ), + ( + 'c-80', + 'C-80', + 'Joachim Czepa', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["c80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/c80.cpp"]}'::jsonb + ), + ( + 'cabal', + 'Cabal', + 'TAD Corporation', + 1988, + array['Cabal (World, Joystick)'], + array['Arcade'], + '{"mame":["cabal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/cabal.cpp"]}'::jsonb + ), + ( + 'cabaret-show', + 'Cabaret Show', + 'AMT Co. Ltd.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["cabaret"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/cabaret.cpp"]}'::jsonb + ), + ( + 'cachat', + 'Cachat', + 'Taito Corporation', + 1993, + array['Cachat (Japan)'], + array['Arcade'], + '{"mame":["cachat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'cadash', + 'Cadash', + 'Taito Corporation Japan', + 1989, + array['Cadash (World)'], + array['Arcade'], + '{"mame":["cadash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'cadillacs-and-dinosaurs', + 'Cadillacs and Dinosaurs', + 'Capcom', + 1993, + array['Cadillacs and Dinosaurs (World 930201)'], + array['Arcade'], + '{"mame":["dino"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'cai-jin-shen-long', + 'Cai Jin Shen Long', + 'IGS', + 1999, + array['Cai Jin Shen Long (link version, host)', 'Cai Jin Shen Long (link version, extension, S111CN)'], + array['Arcade'], + '{"mame":["cjslh","cjsll"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027_link.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-10-7c-big-game', + 'Cal Omega - Game 10.7c (Big Game)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg107"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-12-7-keno', + 'Cal Omega - Game 12.7 (Keno)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg127"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-12-8-arcade-game', + 'Cal Omega - Game 12.8 (Arcade Game)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg128"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-13-4-nudge', + 'Cal Omega - Game 13.4 (Nudge)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg134"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-14-5-pixels', + 'Cal Omega - Game 14.5 (Pixels)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg145"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-15-9-wild-double-up', + 'Cal Omega - Game 15.9 (Wild Double-Up)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg159"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-16-4-keno', + 'Cal Omega - Game 16.4 (Keno)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg164"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-16-8-keno', + 'Cal Omega - Game 16.8 (Keno)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg168"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-17-0', + 'Cal Omega - Game 17.0', + 'Cal Omega Inc.', + 1983, + array['Cal Omega - Game 17.0 (Amusement Poker)'], + array['Arcade'], + '{"mame":["comg170"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-17-6-nudge', + 'Cal Omega - Game 17.6 (Nudge)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg176"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-18-1-nudge', + 'Cal Omega - Game 18.1 (Nudge)', + 'Cal Omega Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["comg181"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-18-3-pixels', + 'Cal Omega - Game 18.3 (Pixels)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg183"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-18-4-pixels', + 'Cal Omega - Game 18.4 (Pixels)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg184"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-18-5-pixels', + 'Cal Omega - Game 18.5 (Pixels)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg185"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-18-6-pixels', + 'Cal Omega - Game 18.6 (Pixels)', + 'Cal Omega Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comg186"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-18-7', + 'Cal Omega - Game 18.7', + 'Cal Omega Inc.', + 1983, + array['Cal Omega - Game 18.7 (Amusement Poker)'], + array['Arcade'], + '{"mame":["comg187"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-20-8-winner-s-choice', + 'Cal Omega - Game 20.8 (Winner''s Choice)', + 'Cal Omega Inc.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["comg208"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-22-7', + 'Cal Omega - Game 22.7', + 'Cal Omega Inc.', + 1984, + array['Cal Omega - Game 22.7 (Amusement Poker, d/d)'], + array['Arcade'], + '{"mame":["comg227"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-23-6-hotline', + 'Cal Omega - Game 23.6 (Hotline)', + 'Cal Omega Inc.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["comg236"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-24-6-hotline', + 'Cal Omega - Game 24.6 (Hotline)', + 'Cal Omega Inc.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["comg246"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-27-2', + 'Cal Omega - Game 27.2', + 'Cal Omega Inc.', + 1985, + array['Cal Omega - Game 27.2 (Keno, amusement)'], + array['Arcade'], + '{"mame":["comg272a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-27-2-keno-gaming', + 'Cal Omega - Game 27.2 (Keno, gaming)', + 'Cal Omega Inc.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["comg272b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-8-0-arcade-black-jack', + 'Cal Omega - Game 8.0 (Arcade Black Jack)', + 'Cal Omega Inc.', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["comg080"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-game-9-4-keno', + 'Cal Omega - Game 9.4 (Keno)', + 'Cal Omega Inc.', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["comg094"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-system-903-diag-prom', + 'Cal Omega - System 903 Diag.PROM', + 'Cal Omega Inc.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["comg903d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'cal-omega-system-905-diag-prom', + 'Cal Omega - System 905 Diag.PROM', + 'Cal Omega Inc.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["comg905d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'calcune', + 'Calcune', + 'Yuvo', + 1996, + array['Calcune (Japan, prototype)'], + array['Arcade'], + '{"mame":["calcune"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/calcune.cpp"]}'::jsonb + ), + ( + 'caliber-50', + 'Caliber 50', + 'Seta', + 1989, + array['Caliber 50 (Ver. 1.01)'], + array['Arcade'], + '{"mame":["calibr50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'california-chase', + 'California Chase', + 'The Game Room', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["calchase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/calchase.cpp"]}'::jsonb + ), + ( + 'california-games-mega-tech', + 'California Games (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_calga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'california-speed', + 'California Speed', + 'Atari Games', + 1998, + array['California Speed (Version 2.1a Apr 17 1998, GUTS 1.25 Apr 17 1998 / MAIN Apr 17 1998)'], + array['Arcade'], + '{"mame":["calspeed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'calipso', + 'Calipso', + 'Tago Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["calipso"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'calorie-kun-vs-moguranian', + 'Calorie Kun vs Moguranian', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["calorie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/bombjack.cpp"]}'::jsonb + ), + ( + 'cameltry', + 'Cameltry', + 'Taito Corporation Japan', + 1989, + array['Cameltry (World, YM2610)'], + array['Arcade'], + '{"mame":["cameltry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'candy-candy', + 'Candy Candy', + 'Eolith', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["candy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'candy-puzzle-v1-0', + 'Candy Puzzle (v1.0)', + 'CD Express', + 1995, + '{}'::text[], + array['Puzzle'], + '{"mame":["cndypuzl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'cane', + 'Cane', + 'Model Racing', + null, + array['Cane (prototype)'], + array['Arcade'], + '{"mame":["cane"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'cannon-ball-pac-man-hardware', + 'Cannon Ball (Pac-Man Hardware)', + 'Novomatic', + 1985, + '{}'::text[], + array['Classic'], + '{"mame":["cannonbp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'cannon-ball-yun-sung-horizontal', + 'Cannon Ball (Yun Sung, horizontal)', + 'Yun Sung / Soft Vision', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["cannball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsung8.cpp"]}'::jsonb + ), + ( + 'cannon-spike-gun-spike', + 'Cannon Spike / Gun Spike', + 'Psikyo / Capcom', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["cspike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'cannonball', + 'Cannonball', + 'Atari', + 1976, + array['Cannonball (Atari, prototype)'], + array['Arcade'], + '{"mame":["cball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cball.cpp"]}'::jsonb + ), + ( + 'canvas-croquis', + 'Canvas Croquis', + 'SNK', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["canvas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/mainsnk.cpp"]}'::jsonb + ), + ( + 'canyon-bomber', + 'Canyon Bomber', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["canyon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/canyon.cpp"]}'::jsonb + ), + ( + 'capcom-baseball', + 'Capcom Baseball', + 'Capcom', + 1989, + array['Capcom Baseball (Japan)'], + array['Sports'], + '{"mame":["cbasebal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cbasebal.cpp"]}'::jsonb + ), + ( + 'capcom-bowling', + 'Capcom Bowling', + 'Incredible Technologies / Capcom', + 1988, + array['Capcom Bowling (set 1)'], + array['Sports'], + '{"mame":["capbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/capbowl.cpp"]}'::jsonb + ), + ( + 'capcom-fighting-jam', + 'Capcom Fighting Jam', + 'Capcom / Namco', + 2004, + array['Capcom Fighting Jam (JAM1 Ver. A)'], + array['Arcade'], + '{"mame":["fghtjam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'capcom-sports-club', + 'Capcom Sports Club', + 'Capcom', + 1997, + array['Capcom Sports Club (Europe 971017)'], + array['Arcade'], + '{"mame":["csclub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'capcom-vs-snk-2-mark-of-the-millennium-2001-gdl-0008', + 'Capcom Vs. SNK 2: Mark Of The Millennium 2001 (GDL-0008)', + 'Capcom / SNK', + 2001, + array['Capcom Vs. SNK 2: Mark Of The Millennium 2001 (USA) (GDL-0008)'], + array['Fighting'], + '{"mame":["cvs2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'capcom-vs-snk-millennium-fight-2000', + 'Capcom Vs. SNK: Millennium Fight 2000', + 'Capcom / SNK', + 2000, + array['Capcom Vs. SNK: Millennium Fight 2000 (Rev C)'], + array['Fighting'], + '{"mame":["capsnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'capcom-vs-snk-millennium-fight-2000-pro-gdl-0004', + 'Capcom Vs. SNK: Millennium Fight 2000 Pro (GDL-0004)', + 'Capcom / SNK', + 2001, + array['Capcom Vs. SNK: Millennium Fight 2000 Pro (Japan) (GDL-0004)'], + array['Fighting'], + '{"mame":["cvsgd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'capcom-world', + 'Capcom World', + 'Capcom', + 1989, + array['Capcom World (Japan)'], + array['Arcade'], + '{"mame":["cworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'capitan-uncino', + 'Capitan Uncino', + 'Nazionale Elettronica', + 2000, + array['Capitan Uncino (Nazionale Elettronica, Ver 1.2)', 'Capitan Uncino (High Video, version 2)'], + array['Arcade'], + '{"mame":["capunc","cuncino"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp","misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'capitani-coraggiosi', + 'Capitani Coraggiosi', + 'Nazionale Elettronica', + 2001, + array['Capitani Coraggiosi (Ver 1.3)'], + array['Arcade'], + '{"mame":["capcor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'captain-america-and-the-avengers', + 'Captain America and The Avengers', + 'Data East Corporation', + 1991, + array['Captain America and The Avengers (Asia Rev 1.4)'], + array['Arcade'], + '{"mame":["captaven"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco32.cpp"]}'::jsonb + ), + ( + 'captain-commando', + 'Captain Commando', + 'Capcom', + 1991, + array['Captain Commando (World 911202)'], + array['Arcade'], + '{"mame":["captcomm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'captain-flag', + 'Captain Flag', + 'Jaleco', + 1993, + array['Captain Flag (Japan)'], + array['Arcade'], + '{"mame":["captflag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'captain-shark', + 'Captain Shark', + 'Astro Corp. / American Alpha', + 2006, + array['Captain Shark (Ver. CS.01.6, Apr 21 2006)'], + array['Arcade'], + '{"mame":["cptshark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'captain-silver', + 'Captain Silver', + 'Data East Corporation', + 1987, + array['Captain Silver (World)'], + array['Arcade'], + '{"mame":["csilver"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'captain-sky-hawk-playchoice-10', + 'Captain Sky Hawk (PlayChoice-10)', + 'Rare (Nintendo of America license)', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_cshwk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'captain-tomaday', + 'Captain Tomaday', + 'Visco', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["ctomaday"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'car-beena', + 'Car Beena', + 'Sega Toys / Alpine Electronics, Inc.', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["carbeena"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_beena.cpp"]}'::jsonb + ), + ( + 'car-hunt-deep-scan-france', + 'Car Hunt / Deep Scan (France)', + 'Sega', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["carhntds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'car-jamboree', + 'Car Jamboree', + 'Omori Electric Co., Ltd.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["carjmbre"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omori/carjmbre.cpp"]}'::jsonb + ), + ( + 'car-polo', + 'Car Polo', + 'Exidy', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["carpolo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/carpolo.cpp"]}'::jsonb + ), + ( + 'card-line', + 'Card Line', + 'Veltmeijer', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cardline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cardline.cpp"]}'::jsonb + ), + ( + 'caribbean-boule-m1-satellite-board', + 'Caribbean Boule (M1 Satellite board)', + 'Sega', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["carboule"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasm1.cpp"]}'::jsonb + ), + ( + 'carket-ball', + 'Carket Ball', + 'SemiCom', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["carket"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'carnaval-jugando-con-fuego', + 'Carnaval - Jugando con Fuego', + 'E-mu Systems', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["carnaval"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'carnevil-v1-0-3', + 'CarnEvil (v1.0.3)', + 'Midway Games', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["carnevil"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'carnival', + 'Carnival', + 'Astro Corp.', + 2009, + array['Carnival (Astro Corp., US.004.D)', 'Carnival (upright, AY8912 music)'], + array['Arcade'], + '{"mame":["carnivac","carnival"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp","sega/vicdual.cpp"]}'::jsonb + ), + ( + 'carnival-king-v1-00-11', + 'Carnival King (v1.00.11)', + 'Incredible Technologies', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["carnking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'carrera', + 'Carrera', + 'BS Electronics', + null, + array['Carrera (Version 6.7)'], + array['Arcade'], + '{"mame":["carrera"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/carrera.cpp"]}'::jsonb + ), + ( + 'carrier-air-wing', + 'Carrier Air Wing', + 'Capcom', + 1990, + array['Carrier Air Wing (World 901012)'], + array['Arcade'], + '{"mame":["cawing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'cart-fury-championship-racing', + 'CART Fury Championship Racing', + 'Midway Games', + 2000, + array['CART Fury Championship Racing (ver 1.00)'], + array['Racing'], + '{"mame":["cartfury"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'carta-magica', + 'Carta Magica', + '', + null, + array['Carta Magica (Ver 1.8)'], + array['Arcade'], + '{"mame":["cmagica"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'casanova', + 'Casanova', + 'Promat', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["casanova"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["promat/3x3puzzl.cpp"]}'::jsonb + ), + ( + 'cash-crop', + 'Cash Crop', + 'WMS', + 2000, + array['Cash Crop (Russian)'], + array['Arcade'], + '{"mame":["cashcrop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'cash-train-v1-10', + 'Cash Train (v1.10)', + 'Kupidon', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["cashtrn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cupidon.cpp"]}'::jsonb + ), + ( + 'casio-rom-pack-software-list-holder', + 'Casio ROM Pack Software List holder', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["casiorom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/casio_rompack.cpp"]}'::jsonb + ), + ( + 'casiotone-8000', + 'Casiotone 8000', + 'Casio', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ct8000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ct8000.cpp"]}'::jsonb + ), + ( + 'casiotone-fk-1', + 'Casiotone FK-1', + 'Casio', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ctfk1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ct8000.cpp"]}'::jsonb + ), + ( + 'casiotone-mb-1', + 'Casiotone MB-1', + 'Casio', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ctmb1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ct8000.cpp"]}'::jsonb + ), + ( + 'cast-away', + 'Cast Away', + 'Tranex Australia Pty Ltd.', + 1987, + array['Cast Away (dual 6809 GI Australasia PCB)'], + array['Arcade'], + '{"mame":["castawayt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gi6809.cpp"]}'::jsonb + ), + ( + 'castaway-atronic', + 'Castaway (Atronic)', + 'Atronic', + 2002, + array['Castaway (Russia) (Atronic) (set 1)'], + array['Arcade'], + '{"mame":["castaway"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'castle-of-dracula', + 'Castle Of Dracula', + 'Yun Sung (Escape license)', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["cdracula"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'castlevania-playchoice-10', + 'Castlevania (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_cvnia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'cat', + 'Cat', + 'Canon', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["cat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["canon/cat.cpp"]}'::jsonb + ), + ( + 'cat-and-mouse-type-02-program', + 'Cat and Mouse (type 02 program)', + 'Zaccaria', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["catnmous"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/laserbat.cpp"]}'::jsonb + ), + ( + 'catacomb', + 'Catacomb', + 'MTM Games', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["catacomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'catapult', + 'Catapult', + 'Epos Corporation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["catapult"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'catch', + 'Catch', + 'Atari', + 1977, + array['Catch (prototype)'], + array['Arcade'], + '{"mame":["catchp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/avalnche.cpp"]}'::jsonb + ), + ( + 'catherine-wheel', + 'Catherine Wheel', + 'Gamebar', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cwheel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cwheel.cpp"]}'::jsonb + ), + ( + 'cavelon', + 'Cavelon', + 'Jetsoft', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["cavelon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'caveman-ninja', + 'Caveman Ninja', + 'Data East Corporation', + 1991, + array['Caveman Ninja (World ver 4)'], + array['Arcade'], + '{"mame":["cninja"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cninja.cpp"]}'::jsonb + ), + ( + 'ccs-model-2810-cpu-card', + 'CCS Model 2810 CPU card', + 'California Computer Systems', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ccs2810"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ccs/ccs2810.cpp"]}'::jsonb + ), + ( + 'cd-i-mono-i-pal', + 'CD-i (Mono-I) (PAL)', + 'Philips', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["cdimono1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'cd-i-mono-ii-ntsc', + 'CD-i (Mono-II) (NTSC)', + 'Philips', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["cdimono2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'cd-i-490', + 'CD-i 490', + 'Philips', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["cdi490a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'cd-i-910-17p-mini-mmc-pal', + 'CD-i 910-17P Mini-MMC (PAL)', + 'Philips', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["cdi910"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'cd-rom-drive-updater-700a04', + 'CD-ROM Drive Updater (700A04)', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["cr589fwa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'cd-rom-drive-updater-2-0-700b04', + 'CD-ROM Drive Updater 2.0 (700B04)', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["cr589fw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'cd3000i', + 'CD3000i', + 'Akai', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["cd3000i"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/s3000.cpp"]}'::jsonb + ), + ( + 'cd3000xl', + 'CD3000XL', + 'Akai', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["cd3000xl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/s3000.cpp"]}'::jsonb + ), + ( + 'cdtv-pal', + 'CDTV (PAL)', + 'Commodore', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["cdtv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/amiga.cpp"]}'::jsonb + ), + ( + 'cdx', + 'CDX', + 'Sega', + 1994, + array['CDX (USA, NTSC)'], + array['Arcade'], + '{"mame":["cdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'celint-2000-superfono-santander-edition', + 'Celint 2000 (Superfono Santander edition)', + 'Olivetti', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["celint2kss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olivetti/celint2k.cpp"]}'::jsonb + ), + ( + 'cellage', + 'Cellage', + 'Yujin / Namco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["cellage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'celviano-ap-10', + 'Celviano AP-10', + 'Casio', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["ap10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ctk551.cpp"]}'::jsonb + ), + ( + 'centipede', + 'Centipede', + 'Atari', + 1980, + array['Centipede (revision 4)'], + array['Classic'], + '{"mame":["centiped"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/centiped.cpp"]}'::jsonb + ), + ( + 'centipede-millipede-missile-command', + 'Centipede / Millipede / Missile Command', + 'Cosmodog / Team Play (licensed from Infogrames via Midway Games West)', + 2001, + array['Centipede / Millipede / Missile Command (rev 1.03)'], + array['Classic'], + '{"mame":["cmmb103"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cmmb.cpp"]}'::jsonb + ), + ( + 'centipede-millipede-missile-command-let-s-go-bowling', + 'Centipede / Millipede / Missile Command / Let''s Go Bowling', + 'Cosmodog / Team Play (licensed from Infogrames via Midway Games West)', + 2002, + array['Centipede / Millipede / Missile Command / Let''s Go Bowling (rev 1.62)'], + array['Sports', 'Classic'], + '{"mame":["cmmb162"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cmmb.cpp"]}'::jsonb + ), + ( + 'cerberus', + 'Cerberus', + 'Cinematronics', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["cerberus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'ceres-1', + 'Ceres-1', + 'Eidgenössische Technische Hochschule Zürich', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["ceres1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ceres/ceres.cpp"]}'::jsonb + ), + ( + 'cfx-9850g', + 'CFX-9850G', + 'Casio', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["cfx9850"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/cfx9850.cpp"]}'::jsonb + ), + ( + 'cgc-7900', + 'CGC 7900', + 'Chromatics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["cgc7900"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chromatics/cgc7900.cpp"]}'::jsonb + ), + ( + 'chack-n-pop', + 'Chack''n Pop', + 'Taito Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["chaknpop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/chaknpop.cpp"]}'::jsonb + ), + ( + 'chain-reaction', + 'Chain Reaction', + 'Data East Corporation', + 1995, + array['Chain Reaction (World, Version 2.2, 1995.09.25)'], + array['Arcade'], + '{"mame":["chainrec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/simpl156.cpp"]}'::jsonb + ), + ( + 'chaku-melo-collection', + 'Chaku Melo Collection', + 'Capcom', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["chakumel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/chakumelo.cpp"]}'::jsonb + ), + ( + 'challenge', + 'Challenge', + 'Krypton / Timorite', + 1996, + array['Challenge (1996 version)'], + array['Arcade'], + '{"mame":["kchal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/legend.cpp"]}'::jsonb + ), + ( + 'challenge-gear', + 'Challenge Gear', + 'Benesse Corporation', + 2002, + array['Challenge Gear (Japan)'], + array['Arcade'], + '{"mame":["chalgear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["benesse/challenge_gear.cpp"]}'::jsonb + ), + ( + 'challenge-girl', + 'Challenge Girl', + 'bootleg', + null, + array['Challenge Girl (Falcon bootleg)'], + array['Arcade'], + '{"mame":["chalgirl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'challenge-golf-j-990326-v1-000', + 'Challenge Golf (J 990326 V1.000)', + 'Sega', + 1999, + '{}'::text[], + array['Sports'], + '{"mame":["chalgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'challenger', + 'Challenger', + 'Centuri', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["challeng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/killcom.cpp"]}'::jsonb + ), + ( + 'chameleon', + 'Chameleon', + 'Jaleco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["chameleo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/lasso.cpp"]}'::jsonb + ), + ( + 'chameleon-24', + 'Chameleon 24', + 'bootleg', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["cham24"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/cham24.cpp"]}'::jsonb + ), + ( + 'chameleon-rx-1', + 'Chameleon RX-1', + 'Digital Sunnil (Covielsa license)', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["chamrx1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/chamrx1.cpp"]}'::jsonb + ), + ( + 'champion-2711', + 'Champion 2711', + 'Unisonic', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["unichamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unisonic/unichamp.cpp"]}'::jsonb + ), + ( + 'champion-3001-regular', + 'Champion 3001 Regular', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ch3001r"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'champion-base-ball', + 'Champion Base Ball', + 'Alpha Denshi Co. (Sega license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["champbas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/champbas.cpp"]}'::jsonb + ), + ( + 'champion-base-ball-part-2', + 'Champion Base Ball Part-2', + 'Alpha Denshi Co. (Sega license)', + 1983, + array['Champion Base Ball Part-2 (set 1)'], + array['Arcade'], + '{"mame":["champbb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/champbas.cpp"]}'::jsonb + ), + ( + 'champion-boxing', + 'Champion Boxing', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["chboxing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000a.cpp"]}'::jsonb + ), + ( + 'champion-italian-pk', + 'Champion Italian PK', + 'bootleg (SGS)', + null, + array['Champion Italian PK (bootleg, blue board)'], + array['Arcade'], + '{"mame":["cpokerpk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspoker.cpp"]}'::jsonb + ), + ( + 'champion-pool-v1-0', + 'Champion Pool (v1.0)', + 'Nova Desitec', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["chmppool"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'champion-pro-wrestling', + 'Champion Pro Wrestling', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["chwrestl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000a.cpp"]}'::jsonb + ), + ( + 'champion-sensory-chess-challenger', + 'Champion Sensory Chess Challenger', + 'Fidelity Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["csc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/csc.cpp"]}'::jsonb + ), + ( + 'champion-skill-with-ability', + 'Champion Skill (with Ability)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["csk227it"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspoker.cpp"]}'::jsonb + ), + ( + 'champion-super-3-v0-35', + 'Champion Super 3 (V0.35)', + '', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["chsuper3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/chsuper.cpp"]}'::jsonb + ), + ( + 'champion-wrestler', + 'Champion Wrestler', + 'Taito Corporation Japan', + 1989, + array['Champion Wrestler (World)'], + array['Arcade'], + '{"mame":["champwr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'championship-bowling', + 'Championship Bowling', + 'Seta / Romstar Inc.', + 1989, + '{}'::text[], + array['Sports'], + '{"mame":["champbwl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/champbwl.cpp"]}'::jsonb + ), + ( + 'championship-sprint', + 'Championship Sprint', + 'Atari Games', + 1986, + array['Championship Sprint (rev 3)'], + array['Racing'], + '{"mame":["csprint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy2.cpp"]}'::jsonb + ), + ( + 'chanbara', + 'Chanbara', + 'Data East Corporation', + 1985, + array['Chanbara (Japan)'], + array['Arcade'], + '{"mame":["chanbara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/chanbara.cpp"]}'::jsonb + ), + ( + 'chanbara-kids', + 'Chanbara Kids', + 'Amuzy Corporation', + 2007, + array['Chanbara Kids (Japan)'], + array['Arcade'], + '{"mame":["cbkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'chance-kun', + 'Chance Kun', + 'Peni', + 1988, + array['Chance Kun (Japan)'], + array['Arcade'], + '{"mame":["chkun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/timeplt.cpp"]}'::jsonb + ), + ( + 'chance-thirty-two', + 'Chance Thirty Two', + 'PAL System Co, Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["chance32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/chance32.cpp"]}'::jsonb + ), + ( + 'change-air-blade', + 'Change Air Blade', + 'Sammy', + 1999, + array['Change Air Blade (Japan)'], + array['Arcade'], + '{"mame":["cairblad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'change-lanes', + 'Change Lanes', + 'Taito America Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["changela"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/changela.cpp"]}'::jsonb + ), + ( + 'changes', + 'Changes', + 'Orca', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["changes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'channel-f', + 'Channel F', + 'Fairchild', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["channelf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fairchild/channelf.cpp"]}'::jsonb + ), + ( + 'channel-f-ii', + 'Channel F II', + 'Fairchild', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["channlf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fairchild/channelf.cpp"]}'::jsonb + ), + ( + 'chao-ji-da-heng-2-v311cn', + 'Chao Ji Da Heng 2 (V311CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cjdh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'chaoji-bie-qi-v205cn', + 'Chaoji Bie Qi (V205CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cjbq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'chaoji-da-lianzhuang', + 'Chaoji Da Lianzhuang', + 'GMS', + 1999, + array['Chaoji Da Lianzhuang (Version 1.1)'], + array['Arcade'], + '{"mame":["cjdlz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'chaoji-da-manguan-ii', + 'Chaoji Da Manguan II', + 'IGS', + 1997, + array['Chaoji Da Manguan II (China, V765C)'], + array['Arcade'], + '{"mame":["sdmg2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'chaoji-daheng-6th', + 'Chaoji Daheng 6th', + 'IGS', + 2001, + array['Chaoji Daheng 6th (set 1)'], + array['Arcade'], + '{"mame":["cjdh6th"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-dou-dizhu-v219cn', + 'Chaoji Dou Dizhu (V219CN)', + 'IGS', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["cjddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-dou-dizhu-v219cn-chaoji-dou-dizhu-jianan-ban-v302cn', + 'Chaoji Dou Dizhu (V219CN) / Chaoji Dou Dizhu Jianan Ban (V302CN)', + 'bootleg (WDF)', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["cjddzs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-dou-dizhu-jiaqiang-ban-s300cn', + 'Chaoji Dou Dizhu Jiaqiang Ban (S300CN)', + 'IGS', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["cjddzp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-dou-dizhu-jiaqiang-ban-s300cn-unknown-second-set', + 'Chaoji Dou Dizhu Jiaqiang Ban (S300CN) / unknown second set', + 'bootleg (WDF)', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cjddzps"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-dou-dizhu-liang-fu-pai-v109cn', + 'Chaoji Dou Dizhu Liang Fu Pai (V109CN)', + 'IGS', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["cjddzlf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-fengdou', + 'Chaoji Fengdou', + 'TJF', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["crzclass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ddz.cpp"]}'::jsonb + ), + ( + 'chaoji-gan-dengyan-v110cn', + 'Chaoji Gan Dengyan (V110CN)', + 'IGS', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["cjgdy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'chaoji-jielong-v100cn', + 'Chaoji Jielong (V100CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cjjl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'chaoji-mingxing', + 'Chaoji Mingxing', + 'TJF', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cjmx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ddz.cpp"]}'::jsonb + ), + ( + 'chaoji-tuolaji-jiaqiang-ban-v206cn', + 'Chaoji Tuolaji Jiaqiang Ban (V206CN)', + 'IGS', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["cjtljp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chaoji-zhishi-da-fuweng-1', + 'Chaoji Zhishi Da Fuweng 1', + 'TimeTop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["6578cjz1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'chaoji-zhishi-da-fuweng-2', + 'Chaoji Zhishi Da Fuweng 2', + 'TimeTop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["6578cjz2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'chaos-2', + 'Chaos 2', + 'David Greaves', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["chaos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/chaos.cpp"]}'::jsonb + ), + ( + 'chaos-breaker-v2-02j', + 'Chaos Breaker (v2.02J)', + 'Taito Corporation', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["chaosbrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'chaos-field-gdl-0025', + 'Chaos Field (GDL-0025)', + 'Able', + 2004, + array['Chaos Field (Japan) (GDL-0025)'], + array['Arcade'], + '{"mame":["cfield"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'charlie-ninja', + 'Charlie Ninja', + 'Mitchell', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["charlien"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/simpl156.cpp"]}'::jsonb + ), + ( + 'chase-bombers', + 'Chase Bombers', + 'Taito Corporation Japan', + 1994, + array['Chase Bombers (World)'], + array['Arcade'], + '{"mame":["cbombers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/undrfire.cpp"]}'::jsonb + ), + ( + 'chase-h-q', + 'Chase H.Q.', + 'Taito Corporation Japan', + 1988, + array['Chase H.Q. (World)'], + array['Arcade'], + '{"mame":["chasehq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'chase-h-q-2-v2-0-6-jp', + 'Chase H.Q. 2 (v2.0.6.JP)', + 'Taito Corporation', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["chasehq2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'check-man', + 'Check Man', + 'Zilec-Zenitone', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["checkman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'checker-challenger-model-acr-4-levels', + 'Checker Challenger (model ACR, 4 levels)', + 'Fidelity Electronics', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["checkc4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/cc10.cpp"]}'::jsonb + ), + ( + 'checker-challenger-model-cr-2-levels', + 'Checker Challenger (model CR, 2 levels)', + 'Fidelity Electronics', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["checkc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/checkc2.cpp"]}'::jsonb + ), + ( + 'checkmate', + 'Checkmate', + 'Dave Nutting Associates / Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["checkmat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'cheeky-mouse', + 'Cheeky Mouse', + 'Universal', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["cheekyms"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cheekyms.cpp"]}'::jsonb + ), + ( + 'cheese-chase', + 'Cheese Chase', + 'Art & Magic', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["cheesech"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/artmagic.cpp"]}'::jsonb + ), + ( + 'chequered-flag', + 'Chequered Flag', + 'Konami', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["chqflag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/chqflag.cpp"]}'::jsonb + ), + ( + 'cherry-10', + 'Cherry 10', + 'bootleg', + null, + array['Cherry 10 (bootleg with PIC16F84)'], + array['Arcade'], + '{"mame":["chry10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-bonus-dyna-v1-01-20fev', + 'Cherry Bonus (Dyna v1.01 20fev)', + 'Dyna', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["cbonus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-bonus-2001-v1-1i', + 'Cherry Bonus 2001 (V1.1I)', + 'Dyna', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["cb2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'cherry-bonus-ii-v2-00-06-01', + 'Cherry Bonus II (V2.00 06/01)', + 'Dyna', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["cb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-bonus-iii', + 'Cherry Bonus III', + 'Dyna', + null, + array['Cherry Bonus III (ver.1.40, set 1)'], + array['Arcade'], + '{"mame":["ncb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-bonus-iv-v5-0', + 'Cherry Bonus IV (V5.0)', + 'Dyna', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["cb4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'cherry-bonus-v-five-v1-4', + 'Cherry Bonus V Five (V1.4)', + 'Dyna', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["cb5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'cherry-chance', + 'Cherry Chance', + 'Taito Corporation', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["cchance"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/cchance.cpp"]}'::jsonb + ), + ( + 'cherry-gold-i', + 'Cherry Gold I', + 'bootleg', + null, + array['Cherry Gold I (set 1)'], + array['Arcade'], + '{"mame":["chrygld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master', + 'Cherry Master', + 'Dyna', + 1992, + array['Cherry Master (ver.4, set 1)'], + array['Arcade'], + '{"mame":["cmv4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-91', + 'Cherry Master ''91', + 'Dyna', + 1991, + array['Cherry Master ''91 (ver.1.30)'], + array['Arcade'], + '{"mame":["cmast91"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-92-v1-2d', + 'Cherry Master ''92 (V1.2D)', + 'Dyna', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["cmast92"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-97', + 'Cherry Master ''97', + 'Dyna', + 1996, + array['Cherry Master ''97 (V1.7, set 1)'], + array['Arcade'], + '{"mame":["cmast97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-99-ql-1-v9b-00', + 'Cherry Master ''99 (QL-1 V9B.00)', + 'Dyna', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["cmast99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-ed-96-corsica-cm-v8-23', + 'Cherry Master (ED-96, Corsica CM v8.23)', + 'Corsica', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cmv823"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-ed-98-pick-a-party', + 'Cherry Master (ED-98, Pick-A-Party)', + 'Pick-A-Party Brazil', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cmpap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-master-i', + 'Cherry Master I', + 'Dyna', + 1991, + array['Cherry Master I (ver.1.01, set 1)'], + array['Arcade'], + '{"mame":["cmaster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cherry-wheel', + 'Cherry Wheel', + 'Assogiochi Assago', + null, + array['Cherry Wheel (Version 1.7)'], + array['Arcade'], + '{"mame":["chewheel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mil4000.cpp"]}'::jsonb + ), + ( + 'chess-2001', + 'Chess 2001', + 'Newcrest Technology / CXG Systems / Intelligent Software', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["ch2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/chess2001.cpp"]}'::jsonb + ), + ( + 'chess-challenge-ii', + 'Chess Challenge II', + 'IGS', + 2002, + array['Chess Challenge II (ver. 1445A)'], + array['Arcade'], + '{"mame":["chessc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'chess-challenger', + 'Chess Challenger', + 'Fidelity Electronics', + 1977, + array['Chess Challenger (upgraded version, 3 levels)'], + array['Arcade'], + '{"mame":["cc1","cc3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/cc1.cpp"]}'::jsonb + ), + ( + 'chess-challenger-10', + 'Chess Challenger "10"', + 'Fidelity Electronics', + 1978, + array['Chess Challenger "10" (model CCX, rev. B)'], + array['Arcade'], + '{"mame":["cc10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/cc10.cpp"]}'::jsonb + ), + ( + 'chess-challenger-7', + 'Chess Challenger "7"', + 'Fidelity Electronics', + 1980, + array['Chess Challenger "7" (set 1)'], + array['Arcade'], + '{"mame":["cc7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/cc7.cpp"]}'::jsonb + ), + ( + 'chess-challenger-model-ucc10-10-levels', + 'Chess Challenger (model UCC10, 10 levels)', + 'Fidelity Electronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["cc10c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/cc1.cpp"]}'::jsonb + ), + ( + 'chess-master-model-g-5003-501', + 'Chess-Master (model G-5003-501)', + 'VEB Mikroelektronik "Karl Marx" Erfurt', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["chessmst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/chessmst.cpp"]}'::jsonb + ), + ( + 'chess-master-diamond', + 'Chess-Master Diamond', + 'VEB Mikroelektronik "Karl Marx" Erfurt', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["chessmstdm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/chessmstdm.cpp"]}'::jsonb + ), + ( + 'chesssystem-r30-the-king-2-50', + 'ChessSystem R30 (The King 2.50)', + 'Tasc', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["tascr30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/tasc.cpp"]}'::jsonb + ), + ( + 'chesster-challenger-v1-3', + 'Chesster Challenger (v1.3)', + 'Fidelity Electronics International', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["chesster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/chesster.cpp"]}'::jsonb + ), + ( + 'cheyenne', + 'Cheyenne', + 'Exidy', + 1984, + array['Cheyenne (version 1.0)'], + array['Arcade'], + '{"mame":["cheyenne"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'chibi-maruko-chan-minna-de-sugoroku-asobi-no-maki', + 'Chibi Maruko-chan ~Minna de Sugoroku Asobi~ no Maki', + 'Capcom', + 2005, + array['Chibi Maruko-chan ~Minna de Sugoroku Asobi~ no Maki (Ver.1.00B, 2005/06/22)'], + array['Arcade'], + '{"mame":["mmaruchan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'chic-gum-video', + 'Chic Gum Video', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["chicgum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enraya.cpp"]}'::jsonb + ), + ( + 'chicken-atronic', + 'Chicken (Atronic)', + 'Atronic', + 2002, + array['Chicken (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["chicken"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'chicken-draw-2131-04-u5-1', + 'Chicken Draw (2131-04, U5-1)', + 'Merit', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["chkndraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'chicken-farm', + 'Chicken Farm', + 'LAI Games', + 1999, + array['Chicken Farm (Version 2.0)'], + array['Arcade'], + '{"mame":["cfarm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/lethalj.cpp"]}'::jsonb + ), + ( + 'chicken-shift-11-23-84', + 'Chicken Shift (11/23/84)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["cshift"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'chickendales-atronic', + 'Chickendales (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["chicdale"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'chihiro-change-region-gd-usa-611-0028a', + 'Chihiro Change Region GD USA (611-0028A)', + 'Sega', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["cregchg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'chihiro-firmware-update-for-compact-flash-box-4-01-gdx-0024a', + 'Chihiro Firmware Update For Compact Flash Box (4.01) (GDX-0024A)', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["ccfboxa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'chiller', + 'Chiller', + 'Exidy', + 1986, + array['Chiller (version 3.0)'], + array['Arcade'], + '{"mame":["chiller"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'chilli-con-cash', + 'Chilli Con Cash', + 'Novotech', + null, + array['Chilli Con Cash (set 1)'], + array['Arcade'], + '{"mame":["chillicc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'chimera-beast', + 'Chimera Beast', + 'Jaleco', + 1993, + array['Chimera Beast (Japan, prototype, set 1)'], + array['Arcade'], + '{"mame":["chimerab"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'china-gate', + 'China Gate', + 'Technos Japan (Taito / Romstar license)', + 1988, + array['China Gate (US)'], + array['Arcade'], + '{"mame":["chinagat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/chinagat.cpp"]}'::jsonb + ), + ( + 'china-town', + 'China Town', + '', + 1998, + array['China Town (Ver 1B, Dino4 HW)', 'China Town (Japan)'], + array['Arcade'], + '{"mame":["chinatow","chinatwn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp","dataeast/supbtime.cpp"]}'::jsonb + ), + ( + 'chinese-chess', + 'Chinese Chess', + 'Novag Industries', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["cnchess"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/cnchess.cpp"]}'::jsonb + ), + ( + 'chinese-hero', + 'Chinese Hero', + 'Taiyo System', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["chinhero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/shangkid.cpp"]}'::jsonb + ), + ( + 'chip-n-dale-rescue-rangers-playchoice-10', + 'Chip''n Dale: Rescue Rangers (PlayChoice-10)', + 'Capcom USA (Nintendo of America license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_rrngr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'choky-choky', + 'Choky! Choky!', + 'SemiCom', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["chokchok"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'choplifter-8751-315-5151', + 'Choplifter (8751 315-5151)', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["choplift"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'chopper-i', + 'Chopper I', + 'SNK', + 1988, + array['Chopper I (US Ver 2)'], + array['Arcade'], + '{"mame":["chopper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'choro-q-hyper-racing-5-j-981230-v1-000', + 'Choro Q Hyper Racing 5 (J 981230 V1.000)', + 'Sega / Takara', + 1998, + '{}'::text[], + array['Racing'], + '{"mame":["choroqhr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'chou-zetsurinjin-berabowman', + 'Chou Zetsurinjin Berabowman', + 'Namco', + 1988, + array['Chou Zetsurinjin Berabowman (Japan, Rev C)'], + array['Arcade'], + '{"mame":["berabohm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'choutetsu-brikin-ger-iron-clad', + 'Choutetsu Brikin''ger / Iron Clad', + 'Saurus', + 1996, + array['Choutetsu Brikin''ger / Iron Clad (prototype)'], + array['Arcade'], + '{"mame":["ironclad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'chuckecheese-s-match-game', + 'ChuckECheese''s Match Game', + 'Coastal Amusements', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["cecmatch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dcheese.cpp"]}'::jsonb + ), + ( + 'chuka-taisen-p0-028-a-pcb', + 'Chuka Taisen (P0-028-A PCB)', + 'Taito Corporation Japan', + 1988, + array['Chuka Taisen (World) (P0-028-A PCB)'], + array['Arcade'], + '{"mame":["chukatai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'chusenoh', + 'Chusenoh', + 'Konami', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["chusenoh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'chuugokuryuu-2001-dragon-world-2001', + 'Chuugokuryuu 2001 [Dragon World 2001]', + 'IGS', + 2001, + array['Chuugokuryuu 2001 [Dragon World 2001] (V100 02/21/01 16:05:16, Japan)'], + array['Arcade'], + '{"mame":["dw2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'ciclone', + 'Ciclone', + 'High Video', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["ciclone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'circus-acrobat-tv', + 'Circus / Acrobat TV', + 'Exidy / Taito', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["circus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/circus.cpp"]}'::jsonb + ), + ( + 'circus-charlie', + 'Circus Charlie', + 'Konami', + 1984, + array['Circus Charlie (level select, set 1)'], + array['Arcade'], + '{"mame":["circusc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/circusc.cpp"]}'::jsonb + ), + ( + 'cisco-heat', + 'Cisco Heat', + 'Jaleco', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["cischeat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'cisco-fisco-400', + 'Cisco/Fisco 400', + 'Taito', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["fisco400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 'city-bomber', + 'City Bomber', + 'Konami', + 1987, + array['City Bomber (World)'], + array['Arcade'], + '{"mame":["citybomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'city-connection', + 'City Connection', + 'Jaleco', + 1985, + array['City Connection (set 1)'], + array['Arcade'], + '{"mame":["citycon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/citycon.cpp"]}'::jsonb + ), + ( + 'city-love', + 'City Love', + 'Nichibutsu', + 1986, + array['City Love (Japan 860908)'], + array['Arcade'], + '{"mame":["citylove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'city-patrolman', + 'City Patrolman', + 'TimeTop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cpatrolm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'ckidzo', + 'Ckidzo', + 'Meadows', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["ckidzo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadwttl.cpp"]}'::jsonb + ), + ( + 'clash-road', + 'Clash-Road', + 'Woodplace Inc.', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["clshroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/clshroad.cpp"]}'::jsonb + ), + ( + 'classic-edition', + 'Classic Edition', + 'Amcoe', + 2004, + array['Classic Edition (Version 1.6E)'], + array['Classic'], + '{"mame":["classice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'classic-max-pocket-mx-10-12-in-1', + 'Classic Max Pocket Mx-10 - 12 in 1', + 'Jungle Soft', + 2007, + array['Classic Max Pocket Mx-10 - 12 in 1 (vertical)'], + array['Classic'], + '{"mame":["cmpmx10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'classic-max-pocket-pcmx11-12-in-1-colour-games-console-horizontal-france', + 'Classic Max Pocket PCMX11 - 12 in 1 Colour Games Console (horizontal, France)', + 'Jungle Soft (Premier Portfolio International license)', + 2007, + '{}'::text[], + array['Classic'], + '{"mame":["cmpmx11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'classic-pci-lp-entrada', + 'Classic/PCI LP "Entrada"', + 'Intel', + 1994, + array['Classic/PCI LP "Entrada" (Intel I420EX Aries chipset)'], + array['Classic'], + '{"mame":["entrada"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/i420ex.cpp"]}'::jsonb + ), + ( + 'clay-pigeon', + 'Clay Pigeon', + 'Exidy', + 1986, + array['Clay Pigeon (version 2.0)'], + array['Arcade'], + '{"mame":["claypign"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'clay-shoot', + 'Clay Shoot', + 'Allied Leisure', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["clayshoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/clayshoo.cpp"]}'::jsonb + ), + ( + 'claybuster', + 'Claybuster', + 'Model Racing', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["claybust"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'clean-sweep', + 'Clean Sweep', + 'Ramtek', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["cleanswp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/ramtek.cpp"]}'::jsonb + ), + ( + 'cleopatra-fortune', + 'Cleopatra Fortune', + 'Taito Corporation', + 1996, + array['Cleopatra Fortune (Ver 2.1J 1996/09/05)'], + array['Arcade'], + '{"mame":["cleopatr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'cleopatra-fortune-plus-gdl-0012', + 'Cleopatra Fortune Plus (GDL-0012)', + 'Altron / Taito', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["cleoftp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'cliff-hanger', + 'Cliff Hanger', + 'Stern Electronics', + 1983, + array['Cliff Hanger (set 1)'], + array['Arcade'], + '{"mame":["cliffhgr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/cliffhgr.cpp"]}'::jsonb + ), + ( + 'cloak-and-dagger', + 'Cloak & Dagger', + 'Atari', + 1983, + array['Cloak & Dagger (rev 5)'], + array['Arcade'], + '{"mame":["cloak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cloak.cpp"]}'::jsonb + ), + ( + 'cloud-9', + 'Cloud 9', + 'Atari', + 1983, + array['Cloud 9 (prototype)'], + array['Arcade'], + '{"mame":["cloud9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cloud9.cpp"]}'::jsonb + ), + ( + 'clown-atronic', + 'Clown (Atronic)', + 'Atronic', + 2002, + array['Clown (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["aclown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'clowns', + 'Clowns', + 'Midway', + 1978, + array['Clowns (rev. 2)'], + array['Arcade'], + '{"mame":["clowns"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'club-card', + 'Club Card', + 'Impera / Mega Tech', + null, + array['Club Card (ver. 1.1 English)'], + array['Arcade'], + '{"mame":["clubcard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'club-kart-for-cycraft-gds-0029a', + 'Club Kart for Cycraft (GDS-0029A)', + 'Sega', + 2003, + array['Club Kart for Cycraft (Rev A) (GDS-0029A)'], + array['Arcade'], + '{"mame":["clubkcyc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'club-kart-prize', + 'Club Kart Prize', + 'Sega', + 2003, + array['Club Kart Prize (Export, Japan, Rev A)'], + array['Arcade'], + '{"mame":["clubkprz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'club-kart-prize-version-b', + 'Club Kart Prize Version B', + 'Sega', + 2004, + array['Club Kart Prize Version B (Export, Japan)'], + array['Arcade'], + '{"mame":["clubkpzb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'club-kart-european-session', + 'Club Kart: European Session', + 'Sega', + 2003, + array['Club Kart: European Session (2003, Rev A)', 'Club Kart: European Session (Rev D)'], + array['Arcade'], + '{"mame":["clubk2k3","clubkrt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'club-ultraman-daichi-boeisen', + 'Club Ultraman - Daichi Boeisen', + 'Banpresto', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["dnjsenso"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/banprestomsz80.cpp"]}'::jsonb + ), + ( + 'cluster-buster', + 'Cluster Buster', + 'Data East Corporation', + 1983, + array['Cluster Buster (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cgraplop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'clutch-hitter-fd1094-317-0176', + 'Clutch Hitter (FD1094 317-0176)', + 'Sega', + 1991, + array['Clutch Hitter (US) (FD1094 317-0176)'], + array['Arcade'], + '{"mame":["cltchitr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'cmi-iix', + 'CMI IIx', + 'Fairlight', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["cmi2x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fairlight/cmi.cpp"]}'::jsonb + ), + ( + 'cobra-command', + 'Cobra Command', + 'Data East', + 1984, + array['Cobra Command (Data East LD, set 1)', 'Cobra-Command (World/US revision 5)'], + array['Arcade'], + '{"mame":["cobra","cobracom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_ld.cpp","dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'cobra-gunship', + 'Cobra Gunship', + 'Meadows', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["cgunship"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadwttl.cpp"]}'::jsonb + ), + ( + 'cobra-the-arcade', + 'Cobra: The Arcade', + 'Namco', + 2005, + array['Cobra: The Arcade (CBR1 Ver. B)'], + array['Arcade'], + '{"mame":["cobrata"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'coco-loco', + 'Coco Loco', + 'Petaco S.A.', + 1981, + array['Coco Loco (set 1)'], + array['Arcade'], + '{"mame":["cocoloco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cocoloco.cpp"]}'::jsonb + ), + ( + 'code-magik-super-7-stealth-game', + 'Code Magik / Super 7 (stealth game)', + 'Voyageur de L''Espace Inc.', + null, + array['Code Magik (Ver 5.5) / Super 7 (stealth game)'], + array['Arcade'], + '{"mame":["codemagik"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/lependu.cpp"]}'::jsonb + ), + ( + 'code-one-dispatch-ver-1-21', + 'Code One Dispatch Ver 1.21', + 'Konami', + 2000, + array['Code One Dispatch Ver 1.21 (ver UAD)'], + array['Arcade'], + '{"mame":["code1d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'coinmaster-keno-y2k-spanish-2000-12-14', + 'Coinmaster Keno (Y2K, Spanish, 2000-12-14)', + 'Coinmaster-Gaming, Ltd.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["cmkenosp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmvga.cpp"]}'::jsonb + ), + ( + 'coinmaster-roulette-p497-v75-y2k-spanish', + 'Coinmaster Roulette P497 V75 (Y2K, Spanish)', + 'Coinmaster-Gaming, Ltd.', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["cmrltv75"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmvga.cpp"]}'::jsonb + ), + ( + 'colony-7', + 'Colony 7', + 'Taito', + 1981, + array['Colony 7 (set 1)'], + array['Arcade'], + '{"mame":["colony7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'color-digital-diary-csf-5550', + 'Color Digital Diary (CSF-5550)', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["csf5550"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'color-match', + 'Color Match', + 'Nova Desitec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["clrmatch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novadesitec/novadesitec_fr002.cpp"]}'::jsonb + ), + ( + 'color-picky-talk-super-denshi-techou', + 'Color Picky Talk - Super Denshi Techou', + 'Casio', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["jd364"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'colorama-p521-english', + 'Colorama (P521, English)', + 'Coinmaster-Gaming, Ltd.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["colorama"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmvga.cpp"]}'::jsonb + ), + ( + 'colour-genie-eg2000', + 'Colour Genie EG2000', + 'EACA', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["cgenie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eaca/cgenie.cpp"]}'::jsonb + ), + ( + 'columbus', + 'Columbus', + 'Novotech', + null, + array['Columbus (set 1)'], + array['Arcade'], + '{"mame":["columbus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'columns', + 'Columns', + 'Sega', + 1990, + array['Columns (World)'], + array['Puzzle'], + '{"mame":["columns"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'columns-97-jet-961209-v1-000', + 'Columns ''97 (JET 961209 V1.000)', + 'Sega', + 1996, + '{}'::text[], + array['Puzzle'], + '{"mame":["colmns97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'columns-mega-tech', + 'Columns (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Puzzle'], + '{"mame":["mt_cols"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'columns-ii-the-voyage-through-time', + 'Columns II: The Voyage Through Time', + 'Sega', + 1990, + array['Columns II: The Voyage Through Time (World)'], + array['Puzzle'], + '{"mame":["columns2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'columns-iii-mega-play', + 'Columns III (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Puzzle'], + '{"mame":["mp_col3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'combat', + 'Combat', + 'Exidy', + 1985, + array['Combat (version 3.0)'], + array['Arcade'], + '{"mame":["combat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'combat-hawk', + 'Combat Hawk', + 'Sanritsu / Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["combh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/bankp.cpp"]}'::jsonb + ), + ( + 'combat-school-joystick', + 'Combat School (joystick)', + 'Konami', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["combatsc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/combatsc.cpp"]}'::jsonb + ), + ( + 'come-back-toto', + 'Come Back Toto', + 'SoftClub', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["toto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'come-on-baby', + 'Come On Baby', + 'ExPotato', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["comebaby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/comebaby.cpp"]}'::jsonb + ), + ( + 'command-war-super-special-battle-and-war-game', + 'Command War - Super Special Battle & War Game', + 'Taito Corporation', + 1992, + array['Command War - Super Special Battle & War Game (Ver 0.0J, prototype)'], + array['Arcade'], + '{"mame":["commandw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'commando', + 'Commando', + 'Capcom', + 1985, + array['Commando (World)'], + array['Arcade'], + '{"mame":["commando"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/commando.cpp"]}'::jsonb + ), + ( + 'commando-sega', + 'Commando (Sega)', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["commsega"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rallyx.cpp"]}'::jsonb + ), + ( + 'comotion', + 'CoMotion', + 'Gremlin', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["comotion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/blockade.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-200-in-1-jl2355', + 'Compact Cyber Arcade - 200 in 1 (JL2355)', + 'Lexibook', + 2013, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-250-in-1-jl2377', + 'Compact Cyber Arcade - 250 in 1 (JL2377)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["jl2377"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-250-in-1-jl2375', + 'Compact Cyber Arcade - 250-in-1 (JL2375)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmc250"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-barbie-jl2365bb', + 'Compact Cyber Arcade - Barbie (JL2365BB)', + 'Lexibook', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcyba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-batman-jl2367bat', + 'Compact Cyber Arcade - Batman (JL2367BAT)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcybt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-cars-jl2360dc-1-120-in-1', + 'Compact Cyber Arcade - Cars (JL2360DC-1, 120-in-1)', + 'Lexibook', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcyco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-cars-jl2365dc', + 'Compact Cyber Arcade - Cars (JL2365DC)', + 'Lexibook', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcycr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-disney-princess-120-in-1', + 'Compact Cyber Arcade - Disney Princess (120-in-1)', + 'Lexibook', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcydp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-disney-princess-jl2367dp-150-in-1', + 'Compact Cyber Arcade - Disney Princess (JL2367DP, 150-in-1)', + 'Lexibook', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcydpn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-finding-dory', + 'Compact Cyber Arcade - Finding Dory', + 'Lexibook', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcyfd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-frozen-jl2365fz', + 'Compact Cyber Arcade - Frozen (JL2365FZ)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcyfz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-lilo-and-stitch-jl2367d', + 'Compact Cyber Arcade - Lilo & Stitch (JL2367D)', + 'Lexibook', + 2021, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcyls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-paw-patrol-jl2367pa', + 'Compact Cyber Arcade - Paw Patrol (JL2367PA)', + 'Lexibook', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcypp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-pj-masks-jl2365pjm', + 'Compact Cyber Arcade - PJ Masks (JL2365PJM)', + 'Lexibook', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcypj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-spider-man-120-in-1', + 'Compact Cyber Arcade - Spider-Man (120-in-1)', + 'Lexibook', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcysp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-spider-man-jl2367sp-150-in-1', + 'Compact Cyber Arcade - Spider-Man (JL2367SP, 150-in-1)', + 'Lexibook', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcyspn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-star-wars-rebels-jl2365sw', + 'Compact Cyber Arcade - Star Wars Rebels (JL2365SW)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcmcysw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-cyber-arcade-tv-120-in-1-jl2370', + 'Compact Cyber Arcade TV - 120 in 1 (JL2370)', + 'Lexibook', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["lxccatv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'compact-vision-tv-boy', + 'Compact Vision TV Boy', + 'Gakken', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ctvboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ctvboy.cpp"]}'::jsonb + ), + ( + 'compass-1101', + 'Compass 1101', + 'GRiD Computers', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["grid1101"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gridcomp/gridcomp.cpp"]}'::jsonb + ), + ( + 'compass-ii-1121', + 'Compass II 1121', + 'GRiD Computers', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["grid1121"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gridcomp/gridcomp.cpp"]}'::jsonb + ), + ( + 'competition-golf-final-round', + 'Competition Golf Final Round', + 'Data East Corporation', + 1986, + array['Competition Golf Final Round (World?, revision 3)'], + array['Sports'], + '{"mame":["compgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/compgolf.cpp"]}'::jsonb + ), + ( + 'compis', + 'Compis', + 'Telenova', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["compis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["telenova/compis.cpp"]}'::jsonb + ), + ( + 'compju-ter', + 'CompJU+TEr', + 'Jugend+Technik', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["jtc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/jtc.cpp"]}'::jsonb + ), + ( + 'complex-x', + 'Complex X', + 'Taito America Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["complexx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'compuchess', + 'CompuChess', + 'DataCash Systems / Staid', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["cmpchess"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/compuchess.cpp"]}'::jsonb + ), + ( + 'compuchess-the-second-edition', + 'CompuChess: The Second Edition', + 'DataCash Systems / Staid', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["cmpchess2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/compuchess.cpp"]}'::jsonb + ), + ( + 'compucolor-ii', + 'Compucolor II', + 'Intelligent Systems Corporation', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["compclr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["isc/compucolor.cpp"]}'::jsonb + ), + ( + 'computachess-ii', + 'Computachess II', + 'White and Allcock / CXG Systems / Intelligent Software', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["cpchess2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/computachess2.cpp"]}'::jsonb + ), + ( + 'computer-chess-conic-model-7011', + 'Computer Chess (Conic, model 7011)', + 'Conic', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["cncchess"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/compuchess.cpp"]}'::jsonb + ), + ( + 'computer-chess-conic-model-7012', + 'Computer Chess (Conic, model 7012)', + 'Conic', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["cncchess2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conic_cchess2.cpp"]}'::jsonb + ), + ( + 'computer-chess-conic-model-7013', + 'Computer Chess (Conic, model 7013)', + 'Conic', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["cncchess3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conic_cchess3.cpp"]}'::jsonb + ), + ( + 'computer-mah-jong-yakuman', + 'Computer Mah-jong Yakuman', + 'Nintendo', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["compmahj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/compmahj.cpp"]}'::jsonb + ), + ( + 'computer-othello', + 'Computer Othello', + 'Nintendo', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["cothello"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/cothello.cpp"]}'::jsonb + ), + ( + 'comquest-plus-german', + 'ComQuest Plus (German)', + 'Data Concepts', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["comquest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["teamconcepts/comquest.cpp"]}'::jsonb + ), + ( + 'comx-35-pal', + 'COMX 35 (PAL)', + 'Comx World Operations Ltd', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["comx35p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["comx/comx35.cpp"]}'::jsonb + ), + ( + 'concept', + 'Concept', + 'Corvus Systems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["concept"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["concept/concept.cpp"]}'::jsonb + ), + ( + 'conchess', + 'Conchess', + 'Consumenta Computer / Waltham Electronics', + 1982, + array['Conchess (standard, set 1)'], + array['Arcade'], + '{"mame":["conc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conchess.cpp"]}'::jsonb + ), + ( + 'conchess-plymate-amsterdam', + 'Conchess Plymate Amsterdam', + 'Systemhuset / Princhess AB', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["concams"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conchess.cpp"]}'::jsonb + ), + ( + 'conchess-plymate-glasgow-plus', + 'Conchess Plymate Glasgow Plus', + 'Systemhuset / Princhess AB', + 1984, + array['Conchess Plymate Glasgow Plus (set 1)'], + array['Arcade'], + '{"mame":["concglap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conchess.cpp"]}'::jsonb + ), + ( + 'conchess-plymate-victoria', + 'Conchess Plymate Victoria', + 'Systemhuset / Princhess AB', + 1990, + array['Conchess Plymate Victoria (prototype)'], + array['Arcade'], + '{"mame":["concvicp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conchess.cpp"]}'::jsonb + ), + ( + 'conchess-princhess-glasgow', + 'Conchess Princhess Glasgow', + 'Systemhuset / Princhess AB', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["concgla"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/conchess.cpp"]}'::jsonb + ), + ( + 'confidential-mission-gds-0001', + 'Confidential Mission (GDS-0001)', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["confmiss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'congo-bongo', + 'Congo Bongo', + 'Sega', + 1983, + array['Congo Bongo (Rev C, 2 board stack)'], + array['Arcade'], + '{"mame":["congo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/zaxxon.cpp"]}'::jsonb + ), + ( + 'conqueror', + 'Conqueror', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["conquer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'conquest', + 'Conquest', + 'Williams / Vid Kidz', + 1982, + array['Conquest (prototype)'], + array['Arcade'], + '{"mame":["conquest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'console-colour-disney-s-planes-jl2800pl', + 'Console Colour - Disney''s Planes (JL2800PL)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxccplan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'console-colour-minnie-mouse-jl2800mn', + 'Console Colour - Minnie Mouse (JL2800MN)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxccminn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'constellation', + 'Constellation', + 'Novag Industries / Intelligent Heuristic Programming', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["const"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/const.cpp"]}'::jsonb + ), + ( + 'constellation-expert', + 'Constellation Expert', + 'Novag Industries / Intelligent Heuristic Programming', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["cexpert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/cexpert.cpp"]}'::jsonb + ), + ( + 'constellation-forte', + 'Constellation Forte', + 'Novag Industries / Intelligent Heuristic Programming', + 1986, + array['Constellation Forte (version A)'], + array['Arcade'], + '{"mame":["cfortea"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/cforte.cpp"]}'::jsonb + ), + ( + 'constellation-junior', + 'Constellation Junior', + 'Novag Industries / Intelligent Heuristic Programming', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["constjr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/constjr.cpp"]}'::jsonb + ), + ( + 'continental-circus', + 'Continental Circus', + 'Taito Corporation Japan', + 1987, + array['Continental Circus (World)'], + array['Arcade'], + '{"mame":["contcirc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'contra', + 'Contra', + 'Konami', + 1987, + array['Contra (US / Asia, set 1)', 'Contra (Conny bootleg of Mega Drive version)'], + array['Shooter', 'Platformer'], + '{"mame":["contra","contrambc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/contra.cpp","sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'contra-playchoice-10', + 'Contra (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1988, + '{}'::text[], + array['Shooter', 'Platformer'], + '{"mame":["pc_cntra"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'contra-3-the-alien-wars-nintendo-super-system', + 'Contra 3: The Alien Wars (Nintendo Super System)', + 'Konami', + 1992, + '{}'::text[], + array['Shooter', 'Platformer'], + '{"mame":["nss_con3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'cookie-and-bibi', + 'Cookie & Bibi', + 'SemiCom', + 1995, + array['Cookie & Bibi (set 1)'], + array['Arcade'], + '{"mame":["cookbib"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'cookie-and-bibi-2', + 'Cookie & Bibi 2', + 'SemiCom', + 1996, + array['Cookie & Bibi 2 (English, set 1)'], + array['Arcade'], + '{"mame":["cookbib2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'cookie-and-bibi-3', + 'Cookie & Bibi 3', + 'SemiCom', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["cookbib3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'cool-104', + 'Cool 104', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["cool104"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab88.cpp"]}'::jsonb + ), + ( + 'cool-minigame-collection', + 'Cool Minigame Collection', + 'SemiCom', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["coolmini"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'cool-pool', + 'Cool Pool', + 'Catalina', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["coolpool"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coolpool.cpp"]}'::jsonb + ), + ( + 'cool-riders', + 'Cool Riders', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["coolridr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/coolridr.cpp"]}'::jsonb + ), + ( + 'coolboy-rs-18-280-in-1', + 'Coolboy RS-18 (280 in 1)', + 'CoolBoy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_cb280"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'coolboy-rs-8-168-in-1', + 'CoolBoy RS-8 168 in 1', + 'CoolBoy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cbrs8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'cop-01', + 'Cop 01', + 'Nichibutsu', + 1985, + array['Cop 01 (set 1)'], + array['Arcade'], + '{"mame":["cop01"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cop01.cpp"]}'::jsonb + ), + ( + 'cops', + 'Cops', + 'Atari Games', + 1994, + array['Cops (USA)'], + array['Arcade'], + '{"mame":["cops"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cops.cpp"]}'::jsonb + ), + ( + 'cops-n-robbers', + 'Cops''n Robbers', + 'Atari', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["copsnrob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/copsnrob.cpp"]}'::jsonb + ), + ( + 'cosmac-microkit', + 'COSMAC Microkit', + 'RCA', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["microkit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rca/microkit.cpp"]}'::jsonb + ), + ( + 'cosmac-vip-vp-711', + 'Cosmac VIP (VP-711)', + 'RCA', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["vip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rca/vip.cpp"]}'::jsonb + ), + ( + 'cosmic-alien', + 'Cosmic Alien', + 'Universal', + 1979, + array['Cosmic Alien (version II, set 1)'], + array['Arcade'], + '{"mame":["cosmica"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmic.cpp"]}'::jsonb + ), + ( + 'cosmic-avenger', + 'Cosmic Avenger', + 'Universal', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["cavenger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/ladybug.cpp"]}'::jsonb + ), + ( + 'cosmic-chasm', + 'Cosmic Chasm', + 'Cinematronics / GCE', + 1983, + array['Cosmic Chasm (set 1)'], + array['Arcade'], + '{"mame":["cchasm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cchasm.cpp"]}'::jsonb + ), + ( + 'cosmic-cop', + 'Cosmic Cop', + 'Irem', + 1991, + array['Cosmic Cop (World)'], + array['Arcade'], + '{"mame":["cosmccop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'cosmic-guerilla', + 'Cosmic Guerilla', + 'Universal', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["cosmicg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmicg.cpp"]}'::jsonb + ), + ( + 'cosmic-smash', + 'Cosmic Smash', + 'Sega', + 2000, + array['Cosmic Smash (Rev A)'], + array['Arcade'], + '{"mame":["csmash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'cosmo', + 'Cosmo', + 'TDS & MINTS', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["cosmo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'cosmo-gang-the-puzzle', + 'Cosmo Gang the Puzzle', + 'Namco', + 1992, + array['Cosmo Gang the Puzzle (US)'], + array['Puzzle'], + '{"mame":["cgangpzl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'cosmo-gang-the-video', + 'Cosmo Gang the Video', + 'Namco', + 1991, + array['Cosmo Gang the Video (US)'], + array['Arcade'], + '{"mame":["cosmogng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'cosmo-police-galivan-12-26-1985', + 'Cosmo Police Galivan (12/26/1985)', + 'Nichibutsu', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["galivan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/galivan.cpp"]}'::jsonb + ), + ( + 'cosmos', + 'Cosmos', + 'Century Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["cosmos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'cosplay-tengoku-7-super-kogal-ranking', + 'Cosplay Tengoku 7 - Super Kogal Ranking', + 'Nichibutsu/eic', + 1999, + array['Cosplay Tengoku 7 - Super Kogal Ranking (Japan)'], + array['Arcade'], + '{"mame":["csplayh7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'cotton-fd1094-317-0181a', + 'Cotton (FD1094 317-0181a)', + 'Success / Sega', + 1991, + array['Cotton (set 4, World) (FD1094 317-0181a)'], + array['Arcade'], + '{"mame":["cotton"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'cotton-2-juet-970902-v1-000', + 'Cotton 2 (JUET 970902 V1.000)', + 'Success', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["cotton2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'cotton-boomerang-juet-980709-v1-000', + 'Cotton Boomerang (JUET 980709 V1.000)', + 'Success', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["cottonbm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'counter-run-ns6201-a-1988-3', + 'Counter Run (NS6201-A 1988.3)', + 'Nihon System (Sega license)', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["countrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freekick.cpp"]}'::jsonb + ), + ( + 'counter-steer', + 'Counter Steer', + 'Data East Corporation', + 1985, + array['Counter Steer (Japan)'], + array['Arcade'], + '{"mame":["cntsteer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cntsteer.cpp"]}'::jsonb + ), + ( + 'country-club', + 'Country Club', + 'SNK', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["countryc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'country-club-classic-v1-10-03-apr-1997', + 'Country Club Classic (v1.10 03-apr-1997)', + 'Creative Electronics And Software', + 1997, + '{}'::text[], + array['Classic'], + '{"mame":["ccclass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/cesclass.cpp"]}'::jsonb + ), + ( + 'country-girl', + 'Country Girl', + 'Royal Denshi', + 1984, + array['Country Girl (Japan set 1)'], + array['Arcade'], + '{"mame":["cntrygrl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/jangou.cpp"]}'::jsonb + ), + ( + 'cow-tipping-shake-cattle-and-roll', + 'Cow Tipping - Shake Cattle & Roll', + 'Game Refuge / Team Play', + 2004, + array['Cow Tipping - Shake Cattle & Roll (set 1)'], + array['Arcade'], + '{"mame":["cowtipp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cowtipping.cpp"]}'::jsonb + ), + ( + 'cps-2000', + 'CPS-2000', + 'Casio', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["cps2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/cps2000.cpp"]}'::jsonb + ), + ( + 'cps1-multi-game', + 'CPS1 Multi Game', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cps1mult"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'cps3-multi-game-bootleg-for-hd6417095-type-sh2-v4', + 'CPS3 Multi-game bootleg for HD6417095 type SH2 (V4)', + 'bootleg', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["cps3boot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'crack-down', + 'Crack Down', + 'Sega', + 1989, + array['Crack Down (World, Floppy Based, FD1094 317-0058-04c)'], + array['Arcade'], + '{"mame":["crkdown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'crack-down-mega-tech', + 'Crack Down (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_crack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'crackin-dj', + 'Crackin'' DJ', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["crackndj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'crackin-dj-part-2', + 'Crackin'' DJ Part 2', + 'Sega', + 2001, + array['Crackin'' DJ Part 2 (Japan)'], + array['Arcade'], + '{"mame":["crakndj2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'crackshot', + 'Crackshot', + 'Exidy', + 1985, + array['Crackshot (version 2.0)'], + array['Arcade'], + '{"mame":["cracksht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'craft', + 'Craft', + 'Linus Åkesson', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["craft"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/lft_craft.cpp"]}'::jsonb + ), + ( + 'crash', + 'Crash', + 'Exidy', + 1979, + array['Crash (set 1)'], + array['Arcade'], + '{"mame":["crash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/circus.cpp"]}'::jsonb + ), + ( + 'crash-n-score-stock-car', + 'Crash ''n Score/Stock Car', + 'Atari', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["crashnsc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'crater-raider', + 'Crater Raider', + 'Bally Midway', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["crater"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'crayon-shinchan-orato-asobo', + 'Crayon Shinchan Orato Asobo', + 'Taito Corporation', + 1993, + array['Crayon Shinchan Orato Asobo (Japan)'], + array['Arcade'], + '{"mame":["qcrayon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'crazy-balloon', + 'Crazy Balloon', + 'Taito Corporation', + 1980, + array['Crazy Balloon (set 1)'], + array['Arcade'], + '{"mame":["crbaloon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/crbaloon.cpp"]}'::jsonb + ), + ( + 'crazy-balls-nat', + 'Crazy Balls (NAT)', + 'Electronic Games Systems / NAT', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["crazybal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crazybal.cpp"]}'::jsonb + ), + ( + 'crazy-bell-v1-2d', + 'Crazy Bell (V1.2D)', + 'Dyna', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["crzybell"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'crazy-bonus-2002', + 'Crazy Bonus 2002', + 'bootleg (Crazy Co.)', + 1997, + array['Crazy Bonus 2002 (Ver. 1, Sang-Ho HW, set 1)', 'Crazy Bonus 2002 (Ver. 1, dual game)'], + array['Arcade'], + '{"mame":["crazybon","crazybonb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'crazy-bugs', + 'Crazy Bugs', + 'IGS', + 2009, + array['Crazy Bugs (V204US)'], + array['Arcade'], + '{"mame":["crzybugs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'crazy-bugs-ii', + 'Crazy Bugs II', + 'IGS', + null, + array['Crazy Bugs II (V102US)'], + array['Arcade'], + '{"mame":["crzybug2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'crazy-circus', + 'Crazy Circus', + 'Astro Corp.', + 2007, + array['Crazy Circus (Ver. US.01.7)'], + array['Arcade'], + '{"mame":["crzcircus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'crazy-climber', + 'Crazy Climber', + 'Nichibutsu', + 1980, + array['Crazy Climber (US set 1)'], + array['Arcade'], + '{"mame":["cclimber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'crazy-climber-2', + 'Crazy Climber 2', + 'Nichibutsu', + 1988, + array['Crazy Climber 2 (Japan)'], + array['Arcade'], + '{"mame":["cclimbr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/armedf.cpp"]}'::jsonb + ), + ( + 'crazy-cross', + 'Crazy Cross', + 'Konami', + 1994, + array['Crazy Cross (ver EAA)'], + array['Arcade'], + '{"mame":["crzcross"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'crazy-dou-di-zhu', + 'Crazy Dou Di Zhu', + 'Sealy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["crzyddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_m16c.cpp"]}'::jsonb + ), + ( + 'crazy-fight', + 'Crazy Fight', + 'Subsino', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["crazyfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'crazy-fruits-blue-atronic', + 'Crazy Fruits Blue (Atronic)', + 'Atronic', + 2002, + array['Crazy Fruits Blue (Russia) (Atronic) (set 1)'], + array['Arcade'], + '{"mame":["cfblue"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'crazy-fruits-green-atronic', + 'Crazy Fruits Green (Atronic)', + 'Atronic', + 2002, + array['Crazy Fruits Green (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["cfgreen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'crazy-kong', + 'Crazy Kong', + 'Kyoei / Falcon', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["ckong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'crazy-kong-part-ii', + 'Crazy Kong Part II', + 'Falcon', + 1981, + array['Crazy Kong Part II (set 1)'], + array['Arcade'], + '{"mame":["ckongpt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'crazy-monkey', + 'Crazy Monkey', + 'Igrosoft', + 2003, + array['Crazy Monkey (100311 World)'], + array['Arcade'], + '{"mame":["czmon_13"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'crazy-monkey-2', + 'Crazy Monkey 2', + 'Igrosoft', + 2010, + array['Crazy Monkey 2 (100310 World)'], + array['Arcade'], + '{"mame":["crzmon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'crazy-rally', + 'Crazy Rally', + 'Tecfri', + 1985, + array['Crazy Rally (set 1)'], + array['Arcade'], + '{"mame":["crzrally"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/holeland.cpp"]}'::jsonb + ), + ( + 'crazy-taxi', + 'Crazy Taxi', + 'Sega', + 1999, + '{}'::text[], + array['Racing'], + '{"mame":["crzytaxi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'crazy-taxi-high-roller-gdx-0002b', + 'Crazy Taxi High Roller (GDX-0002B)', + 'Sega / Hitmaker', + 2003, + array['Crazy Taxi High Roller (Rev B) (GDX-0002B)'], + array['Racing'], + '{"mame":["crtaxihr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'crazy-war', + 'Crazy War', + 'Eolith', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["crazywar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/vegaeo.cpp"]}'::jsonb + ), + ( + 'crazzy-clownz', + 'Crazzy Clownz', + 'LAI Games', + 1999, + array['Crazzy Clownz (Version 1.0)'], + array['Arcade'], + '{"mame":["cclownz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/lethalj.cpp"]}'::jsonb + ), + ( + 'creatures-of-the-sea', + 'Creatures of the Sea', + 'ECM', + 2005, + array['Creatures of the Sea (20050328 USA 6.3)'], + array['Arcade'], + '{"mame":["cots"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'crime-city', + 'Crime City', + 'Taito Corporation Japan', + 1989, + array['Crime City (World)'], + array['Arcade'], + '{"mame":["crimec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'crime-fighters', + 'Crime Fighters', + 'Konami', + 1989, + array['Crime Fighters (World 2 players)'], + array['Arcade'], + '{"mame":["crimfght"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/crimfght.cpp"]}'::jsonb + ), + ( + 'crime-patrol-v1-51', + 'Crime Patrol (v1.51)', + 'American Laser Games', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["crimepat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'crime-patrol-2-drug-wars-v1-3', + 'Crime Patrol 2: Drug Wars (v1.3)', + 'American Laser Games', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["crimep2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'crisis-zone', + 'Crisis Zone', + 'Namco', + 1999, + array['Crisis Zone (World, CSZO4 Ver. B)'], + array['Arcade'], + '{"mame":["crszone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'critter-crusher-ea-951204-v1-000', + 'Critter Crusher (EA 951204 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["critcrsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'croaky-karaoke-16-in-1', + 'Croaky Karaoke 16-in-1', + '', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["croaky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'croquis', + 'Croquis', + 'Deniam', + 1996, + array['Croquis (Korea)'], + array['Arcade'], + '{"mame":["croquis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/deniam.cpp"]}'::jsonb + ), + ( + 'cross-pang', + 'Cross Pang', + 'F2 System', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["crospang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/crospang.cpp"]}'::jsonb + ), + ( + 'cross-puzzle', + 'Cross Puzzle', + '', + null, + '{}'::text[], + array['Puzzle'], + '{"mame":["crospuzl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crospuzl.cpp"]}'::jsonb + ), + ( + 'crossbow', + 'Crossbow', + 'Exidy', + 1983, + array['Crossbow (version 2.0)'], + array['Arcade'], + '{"mame":["crossbow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'crossed-swords-alm-002-alh-002', + 'Crossed Swords (ALM-002 ~ ALH-002)', + 'Alpha Denshi Co.', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["crsword"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'crossed-swords-2', + 'Crossed Swords 2', + 'bootleg (Razoola)', + 1996, + array['Crossed Swords 2 (bootleg of CD version)'], + array['Arcade'], + '{"mame":["crswd2bl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'croupier-playmark-roulette-v-20-05', + 'Croupier (Playmark Roulette v.20.05)', + 'Playmark', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["croupier"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'crowns-golf-834-5419-04', + 'Crowns Golf (834-5419-04)', + 'Nasco Japan', + 1984, + '{}'::text[], + array['Sports'], + '{"mame":["crgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nasco/crgolf.cpp"]}'::jsonb + ), + ( + 'crowns-golf-in-hawaii', + 'Crowns Golf in Hawaii', + 'Nasco Japan', + 1985, + '{}'::text[], + array['Sports'], + '{"mame":["crgolfhi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nasco/crgolf.cpp"]}'::jsonb + ), + ( + 'crude-buster', + 'Crude Buster', + 'Data East Corporation', + 1990, + array['Crude Buster (World FX version)'], + array['Arcade'], + '{"mame":["cbuster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cbuster.cpp"]}'::jsonb + ), + ( + 'cruis-n-exotica', + 'Cruis''n Exotica', + 'Midway', + 1999, + array['Cruis''n Exotica (version 2.4)'], + array['Racing'], + '{"mame":["crusnexo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midzeus.cpp"]}'::jsonb + ), + ( + 'cruis-n-usa-v4-5', + 'Cruis''n USA (v4.5)', + 'Midway', + 1994, + '{}'::text[], + array['Racing'], + '{"mame":["crusnusa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midvunit.cpp"]}'::jsonb + ), + ( + 'cruis-n-world-v2-5', + 'Cruis''n World (v2.5)', + 'Midway', + 1996, + '{}'::text[], + array['Racing'], + '{"mame":["crusnwld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midvunit.cpp"]}'::jsonb + ), + ( + 'cruisin-5-cruise-back', + 'Cruisin 5: Cruise Back', + 'Abyss', + 2023, + '{}'::text[], + array['Arcade'], + '{"mame":["cruisin5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/arkanoid.cpp"]}'::jsonb + ), + ( + 'crush-roller', + 'Crush Roller', + 'Alpha Denshi Co. / Kural Samno Electric, Ltd.', + 1981, + array['Crush Roller (set 1)'], + array['Arcade'], + '{"mame":["crush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'crusher-makochan', + 'Crusher Makochan', + 'Takumi', + 1999, + array['Crusher Makochan (Japan)'], + array['Arcade'], + '{"mame":["crusherm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'crypt-killer-gq420-uaa', + 'Crypt Killer (GQ420 UAA)', + 'Konami', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["cryptklr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigq.cpp"]}'::jsonb + ), + ( + 'crystal-castles', + 'Crystal Castles', + 'Atari', + 1983, + array['Crystal Castles (version 4)'], + array['Arcade'], + '{"mame":["ccastles"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/ccastles.cpp"]}'::jsonb + ), + ( + 'crystal-colours-cmc-hardware', + 'Crystal Colours (CMC hardware)', + 'J.C.D. srl', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["crystal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'crystal-gal', + 'Crystal Gal', + 'Nichibutsu', + 1986, + array['Crystal Gal (Japan 860512)'], + array['Arcade'], + '{"mame":["crystalg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'crystal-gal-2', + 'Crystal Gal 2', + 'Nichibutsu', + 1986, + array['Crystal Gal 2 (Japan 860620)'], + array['Arcade'], + '{"mame":["crystal2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'crystals-colours', + 'Crystals Colours', + 'JCD', + 1998, + array['Crystals Colours (Ver 1.02)'], + array['Arcade'], + '{"mame":["crystalc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/snookr10.cpp"]}'::jsonb + ), + ( + 'ctk-2100', + 'CTK-2100', + 'Casio', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["ctk2100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ctk2000.cpp"]}'::jsonb + ), + ( + 'ctk-530', + 'CTK-530', + 'Casio', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["ctk530"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ctk551.cpp"]}'::jsonb + ), + ( + 'ctk-551', + 'CTK-551', + 'Casio', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["ctk551"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ctk551.cpp"]}'::jsonb + ), + ( + 'ctk-601', + 'CTK-601', + 'Casio', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["ctk601"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ctk551.cpp"]}'::jsonb + ), + ( + 'cuatro-en-linea', + 'Cuatro en Linea', + 'Compumatic / CIC Play', + 1991, + array['Cuatro en Linea (rev. A-07)'], + array['Arcade'], + '{"mame":["4enlinea"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enlinea.cpp"]}'::jsonb + ), + ( + 'cube-quest-01-04-84', + 'Cube Quest (01/04/84)', + 'Simutrek', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["cubeqst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cubeqst.cpp"]}'::jsonb + ), + ( + 'cubx', + 'CUBX', + 'ASUS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["asuscubx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ez2d.cpp"]}'::jsonb + ), + ( + 'cuby-bop', + 'Cuby Bop', + 'Hot-B Co., Ltd.', + null, + array['Cuby Bop (location test)'], + array['Arcade'], + '{"mame":["cubybop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'cue-brick', + 'Cue Brick', + 'Konami', + 1989, + array['Cue Brick (World, version D)'], + array['Arcade'], + '{"mame":["cuebrick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt.cpp"]}'::jsonb + ), + ( + 'cuore-1', + 'Cuore 1', + 'C.M.C.', + 1996, + array['Cuore 1 (Italian, set 1)'], + array['Arcade'], + '{"mame":["cuoreuno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'curve-ball', + 'Curve Ball', + 'Mylstar', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["curvebal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'cut-the-rope', + 'Cut The Rope', + 'ICE', + 2016, + '{}'::text[], + array['Arcade'], + '{"mame":["cutrope"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/cutrope.cpp"]}'::jsonb + ), + ( + 'cute-fighter', + 'Cute Fighter', + 'SemiCom', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["cutefght"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dreamwld.cpp"]}'::jsonb + ), + ( + 'cutie-q', + 'Cutie Q', + 'Namco', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["cutieq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'cuty-line', + 'Cuty Line', + 'Dyna', + 1991, + array['Cuty Line (LC-88, ver.1.01)'], + array['Arcade'], + '{"mame":["cutyline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cuty-line-limited', + 'Cuty Line Limited', + 'Dyna / TAB Austria', + 1991, + array['Cuty Line Limited (ver.1.30)'], + array['Arcade'], + '{"mame":["cll"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'cybattler', + 'Cybattler', + 'Jaleco', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["cybattlr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'cyber-arcade-pocket-disney-princess-jl1895dp', + 'Cyber Arcade Pocket - Disney Princess (JL1895DP)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcypkdp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'cyber-arcade-pocket-frozen-jl1895fz', + 'Cyber Arcade Pocket - Frozen (JL1895FZ)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcypkfz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'cyber-arcade-pocket-paw-patrol-jl1895pa', + 'Cyber Arcade Pocket - Paw Patrol (JL1895PA)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcypkpp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'cyber-arcade-pocket-spider-man-jl1895sp-2', + 'Cyber Arcade Pocket - Spider-Man (JL1895SP-2)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcypksp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'cyber-arcade-pocket-jl1895', + 'Cyber Arcade Pocket (JL1895)', + 'Lexibook', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lxcap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'cyber-commando', + 'Cyber Commando', + 'Namco', + 1994, + array['Cyber Commando (Japan, CY1)'], + array['Arcade'], + '{"mame":["cybrcomm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'cyber-console-center-200-in-1-jl2050', + 'Cyber Console Center 200-in-1 (JL2050)', + 'LexiBook / JungleTac / NiceCode', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jl2050"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'cyber-cycles', + 'Cyber Cycles', + 'Namco', + 1995, + array['Cyber Cycles (World, CB2 Ver.C)'], + array['Arcade'], + '{"mame":["cybrcycc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'cyber-police-eswat-fd1094-317-0130', + 'Cyber Police ESWAT (FD1094 317-0130)', + 'Sega', + 1989, + array['Cyber Police ESWAT (set 4, World) (FD1094 317-0130)'], + array['Arcade'], + '{"mame":["eswat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'cyber-police-eswat-enhanced-special-weapons-and-tactics-mega-tech', + 'Cyber Police ESWAT: Enhanced Special Weapons and Tactics (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_eswat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'cyber-sled', + 'Cyber Sled', + 'Namco', + 1993, + array['Cyber Sled (CY2, World)'], + array['Arcade'], + '{"mame":["cybsled"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21_c67.cpp"]}'::jsonb + ), + ( + 'cyber-tank-v1-4', + 'Cyber Tank (v1.4)', + 'Coreland', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["cybertnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cybertnk.cpp"]}'::jsonb + ), + ( + 'cyber-troopers-virtual-on-twin-export', + 'Cyber Troopers Virtual-On - Twin (Export)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["von"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'cyber-troopers-virtual-on-4-force', + 'Cyber Troopers Virtual-On 4: Force', + 'Sega / Hitmaker', + 2001, + array['Cyber Troopers Virtual-On 4: Force (Rev E)'], + array['Arcade'], + '{"mame":["von4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'cyber-troopers-virtual-on-oratorio-tangram', + 'Cyber Troopers Virtual-On: Oratorio Tangram', + 'Sega', + 1998, + array['Cyber Troopers Virtual-On: Oratorio Tangram (Revision B)'], + array['Arcade'], + '{"mame":["von2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'cyber-troopers-virtual-on-oratorio-tangram-m-s-b-s-ver-5-66-2000-edition', + 'Cyber Troopers Virtual-On: Oratorio Tangram M.S.B.S. ver 5.66 2000 Edition', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["vonot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'cyber-lip-ngm-010', + 'Cyber-Lip (NGM-010)', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["cyberlip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'cyberball', + 'Cyberball', + 'Atari Games', + 1988, + array['Cyberball (rev 4)'], + array['Arcade'], + '{"mame":["cyberbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cyberbal.cpp"]}'::jsonb + ), + ( + 'cyberbots-fullmetal-madness', + 'Cyberbots: Fullmetal Madness', + 'Capcom', + 1995, + array['Cyberbots: Fullmetal Madness (Europe 950424)'], + array['Arcade'], + '{"mame":["cybots"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'cyberstorm', + 'Cyberstorm', + 'Atari Games', + 1993, + array['Cyberstorm (prototype)'], + array['Arcade'], + '{"mame":["cybstorm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cybstorm.cpp"]}'::jsonb + ), + ( + 'cybiko-classic-v1', + 'Cybiko Classic (V1)', + 'Cybiko Inc', + 2000, + '{}'::text[], + array['Classic'], + '{"mame":["cybikov1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cybiko/cybiko.cpp"]}'::jsonb + ), + ( + 'cycle-maabou', + 'Cycle Maabou', + 'Taito Corporation', + 1984, + array['Cycle Maabou (Japan)'], + array['Arcade'], + '{"mame":["cyclemb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/cyclemb.cpp"]}'::jsonb + ), + ( + 'cycle-shooting', + 'Cycle Shooting', + 'Taito', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["cyclshtg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/nycaptor.cpp"]}'::jsonb + ), + ( + 'cycle-warriors', + 'Cycle Warriors', + 'Tatsumi', + 1991, + array['Cycle Warriors (rev C)'], + array['Arcade'], + '{"mame":["cyclwarr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/cyclwarr.cpp"]}'::jsonb + ), + ( + 'cyvern-the-dragon-weapons', + 'Cyvern - The Dragon Weapons', + 'Kaneko', + 1998, + array['Cyvern - The Dragon Weapons (US)'], + array['Arcade'], + '{"mame":["cyvern"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'cz-1', + 'CZ-1', + 'Casio', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["cz1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/cz1.cpp"]}'::jsonb + ), + ( + 'cz-101', + 'CZ-101', + 'Casio', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["cz101"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/cz101.cpp"]}'::jsonb + ), + ( + 'cz-230s', + 'CZ-230S', + 'Casio', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["cz230s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/cz230s.cpp"]}'::jsonb + ), + ( + 'czernyj-korabl', + 'Czernyj Korabl', + 'bootleg', + null, + array['Czernyj Korabl (Arcade bootleg of ZX Spectrum ''Blackbeard'')'], + array['Arcade'], + '{"mame":["black"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/photon2.cpp"]}'::jsonb + ), + ( + 'd-cat16-mega-drive-handheld', + 'D-CAT16 (Mega Drive handheld)', + 'Firecore', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dcat16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_firecore.cpp"]}'::jsonb + ), + ( + 'd-con', + 'D-Con', + 'Success', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["dcon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/dcon.cpp"]}'::jsonb + ), + ( + 'd-day', + 'D-Day', + 'Jaleco', + 1984, + array['D-Day (Jaleco, set 1)'], + array['Arcade'], + '{"mame":["ddayjlc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/dday.cpp"]}'::jsonb + ), + ( + 'd-day-olympia', + 'D-Day (Olympia)', + 'Olympia', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["dday"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympia/dday.cpp"]}'::jsonb + ), + ( + 'd-d-crew-fd1094-317-0190', + 'D. D. Crew (FD1094 317-0190)', + 'Sega', + 1991, + array['D. D. Crew (World, 3 Players) (FD1094 317-0190)'], + array['Arcade'], + '{"mame":["ddcrew"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'd9-500-in-1-handheld-game-console', + 'D9 500 in 1 Handheld Game Console', + '', + 2021, + '{}'::text[], + array['Arcade'], + '{"mame":["d9_500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'da-bai-sha', + 'Da Bai Sha', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dbsha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'da-bai-sha-h-b', + 'Da Bai Sha (H.B.)', + 'H.B.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dbshahb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/bmcpokr.cpp"]}'::jsonb + ), + ( + 'da-fu-weng-iii-v130li', + 'Da Fu Weng III (V130LI)', + 'IGS', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["dafuwng3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'da-huangguan', + 'Da Huangguan', + 'IGS', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["dahuangg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'dacholer', + 'Dacholer', + 'Nichibutsu', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dacholer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/dacholer.cpp"]}'::jsonb + ), + ( + 'dahua-xiyou-v201cn', + 'Dahua Xiyou (V201CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dahuaxy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'dai-3-wakusei', + 'Dai 3 Wakusei', + 'Sun Electronics', + 1979, + array['Dai 3 Wakusei (Japan)'], + array['Arcade'], + '{"mame":["dai3wksi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/dai3wksi.cpp"]}'::jsonb + ), + ( + 'dai-personal-computer', + 'DAI Personal Computer', + 'Data Applications International', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["dai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dai/dai.cpp"]}'::jsonb + ), + ( + 'dai-dai-kakumei', + 'Dai-Dai-Kakumei', + 'SystemBit', + 2004, + array['Dai-Dai-Kakumei (Japan)'], + array['Arcade'], + '{"mame":["dai2kaku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/realbrk.cpp"]}'::jsonb + ), + ( + 'daifugo', + 'Daifugo', + 'Seta Kikaku / Sega (Esco Trading Co license)', + 1983, + array['Daifugo (Japan)'], + array['Arcade'], + '{"mame":["daifugo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/speedatk.cpp"]}'::jsonb + ), + ( + 'daikaiju-no-gyakushu', + 'Daikaiju no Gyakushu', + 'Taito', + 1986, + array['Daikaiju no Gyakushu (rev 1)'], + array['Arcade'], + '{"mame":["daikaiju"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/lsasquad.cpp"]}'::jsonb + ), + ( + 'daioh', + 'Daioh', + 'Athena', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["daioh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'daisu-kiss', + 'Daisu-Kiss', + 'Konami', + 1996, + array['Daisu-Kiss (ver JAA)'], + array['Arcade'], + '{"mame":["daiskiss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'daisyarin', + 'Daisyarin', + 'Best System', + 1989, + array['Daisyarin (Japan)'], + array['Arcade'], + '{"mame":["daisyari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'daitoride', + 'Daitoride', + 'Metro', + 1995, + array['Daitoride (Japan)'], + array['Arcade'], + '{"mame":["daitorid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'dakkochan-house-mc-8123b-317-5014', + 'DakkoChan House (MC-8123B, 317-5014)', + 'White Board', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["dakkochn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'dam-dam-boy-on-dedicated-pcb', + 'Dam Dam Boy (on dedicated PCB)', + 'Konami', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["ddboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'dambusters', + 'Dambusters', + 'South West Research', + 1981, + array['Dambusters (US, set 1)'], + array['Arcade'], + '{"mame":["dambustr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/dambustr.cpp"]}'::jsonb + ), + ( + 'dame-sensory-challenger', + 'Dame Sensory Challenger', + 'Fidelity Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["damesc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/dames.cpp"]}'::jsonb + ), + ( + 'dan-ku-ga', + 'Dan-Ku-Ga', + 'Taito Corporation', + 1994, + array['Dan-Ku-Ga (Ver 0.0J 1994/12/13, prototype)'], + array['Arcade'], + '{"mame":["dankuga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'dance-2000-hot-2000-jin-bao-tv-dancing-carpet-sy-2000-04', + 'Dance 2000 / Hot 2000 (Jin Bao TV Dancing Carpet, SY-2000-04)', + 'Shenzhen Soyin Electric Appliance Ind. Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dnce2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'dance-86-4-funky-radio-station-e01-j-a-a-2005040400', + 'DANCE 86.4 FUNKY RADIO STATION (E01:J:A:A:2005040400)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["dance864"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-2nd-mix', + 'Dance Dance Revolution 2nd Mix', + 'Konami', + 1999, + array['Dance Dance Revolution 2nd Mix (GN895 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddr2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-3rd-mix-ver-korea2', + 'Dance Dance Revolution 3rd Mix - Ver.Korea2', + 'Konami', + 2000, + array['Dance Dance Revolution 3rd Mix - Ver.Korea2 (GN887 VER. KBA)'], + array['Rhythm'], + '{"mame":["ddr3mk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-3rd-mix-plus', + 'Dance Dance Revolution 3rd Mix Plus', + 'Konami', + 2000, + array['Dance Dance Revolution 3rd Mix Plus (G*A22 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddr3mp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-4th-mix', + 'Dance Dance Revolution 4th Mix', + 'Konami', + 2000, + array['Dance Dance Revolution 4th Mix (G*A33 VER. AAA)'], + array['Rhythm'], + '{"mame":["ddr4m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-4th-mix-plus', + 'Dance Dance Revolution 4th Mix Plus', + 'Konami', + 2000, + array['Dance Dance Revolution 4th Mix Plus (G*A34 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddr4mp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-4th-mix-plus-solo', + 'Dance Dance Revolution 4th Mix Plus Solo', + 'Konami', + 2000, + array['Dance Dance Revolution 4th Mix Plus Solo (G*A34 VER. JBA)'], + array['Rhythm'], + '{"mame":["ddr4mps"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-4th-mix-solo', + 'Dance Dance Revolution 4th Mix Solo', + 'Konami', + 2000, + array['Dance Dance Revolution 4th Mix Solo (G*A33 VER. ABA)'], + array['Rhythm'], + '{"mame":["ddr4ms"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-5th-mix', + 'Dance Dance Revolution 5th Mix', + 'Konami', + 2001, + array['Dance Dance Revolution 5th Mix (G*A27 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddr5m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-disney-mix', + 'Dance Dance Revolution Disney Mix', + 'Majesco (licensed from Konami, Disney)', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrdismx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-extreme', + 'Dance Dance Revolution Extreme', + 'Konami', + 2002, + array['Dance Dance Revolution Extreme (G*C36 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddrextrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-karaoke-mix', + 'Dance Dance Revolution Karaoke Mix', + 'Konami', + 1999, + array['Dance Dance Revolution Karaoke Mix (GQ921 VER. JBB)'], + array['Rhythm'], + '{"mame":["ddrkara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-karaoke-mix-2', + 'Dance Dance Revolution Karaoke Mix 2', + 'Konami', + 2000, + array['Dance Dance Revolution Karaoke Mix 2 (GQ947 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddrkara2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-kids-gqan4-jaa', + 'Dance Dance Revolution Kids (GQAN4 JAA)', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigs.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-solo-2000', + 'Dance Dance Revolution Solo 2000', + 'Konami', + 1999, + array['Dance Dance Revolution Solo 2000 (GC905 VER. AAA)'], + array['Rhythm'], + '{"mame":["ddrs2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-solo-bass-mix', + 'Dance Dance Revolution Solo Bass Mix', + 'Konami', + 1999, + array['Dance Dance Revolution Solo Bass Mix (GQ894 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddrsbm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-strawberry-shortcake', + 'Dance Dance Revolution Strawberry Shortcake', + 'Majesco (licensed from Konami)', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrstraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-supernova-fdh-a-a-a-2006071300', + 'Dance Dance Revolution SuperNOVA (FDH:A:A:A:2006071300)', + 'Konami', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrsna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-supernova-fdh-j-a-a-2006090600', + 'Dance Dance Revolution SuperNOVA (FDH:J:A:A:2006090600)', + 'Konami', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrsnj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-supernova-fdh-u-a-a-2006072400', + 'Dance Dance Revolution SuperNOVA (FDH:U:A:A:2006072400)', + 'Konami', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrsnu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-supernova-2-gdj-a-a-a-2007100800', + 'Dance Dance Revolution SuperNOVA 2 (GDJ:A:A:A:2007100800)', + 'Konami', + 2007, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrsn2a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-supernova-2-gdj-j-a-a-2007100800', + 'Dance Dance Revolution SuperNOVA 2 (GDJ:J:A:A:2007100800)', + 'Konami', + 2007, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrsn2j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-supernova-2-gdj-u-a-a-2007100800', + 'Dance Dance Revolution SuperNOVA 2 (GDJ:U:A:A:2007100800)', + 'Konami', + 2007, + '{}'::text[], + array['Rhythm'], + '{"mame":["ddrsn2u"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'dance-dance-revolution-usa', + 'Dance Dance Revolution USA', + 'Konami', + 2000, + array['Dance Dance Revolution USA (G*A44 VER. UAA)'], + array['Rhythm'], + '{"mame":["ddrusa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-freaks', + 'Dance Freaks', + 'Konami', + 2000, + array['Dance Freaks (G*874 VER. KAA)'], + array['Arcade'], + '{"mame":["dncfrks"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-maniax-2nd-mix', + 'Dance Maniax 2nd Mix', + 'Konami', + 2000, + array['Dance Maniax 2nd Mix (G*A39 VER. JAA)'], + array['Arcade'], + '{"mame":["dmx2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dance-maniax-2nd-mix-append-j-paradise', + 'Dance Maniax 2nd Mix Append J-Paradise', + 'Konami', + 2001, + array['Dance Maniax 2nd Mix Append J-Paradise (G*A38 VER. JAA)'], + array['Arcade'], + '{"mame":["dmx2majp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'danchi-de-hanafuda-j-990607-v1-400', + 'Danchi de Hanafuda (J 990607 V1.400)', + 'Altron (Tecmo license)', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["danchih"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'dancing-expert', + 'Dancing Expert', + 'Daidaixing', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dancexpt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'dancing-eyes', + 'Dancing Eyes', + 'Namco', + 1996, + array['Dancing Eyes (World, DC2/VER.B)'], + array['Arcade'], + '{"mame":["danceyes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'dancing-fever-gold-j-000821-v2-001', + 'Dancing Fever Gold (J 000821 V2.001)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["dfeverg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'dancing-spirit-atronic', + 'Dancing Spirit (Atronic)', + 'Atronic', + 2002, + array['Dancing Spirit (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["dncsprt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'dancing-stage-internet-ranking-ver', + 'Dancing Stage - Internet Ranking Ver', + 'Konami', + 1999, + array['Dancing Stage - Internet Ranking Ver (GC845 VER. EBA)'], + array['Arcade'], + '{"mame":["dstage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dancing-stage-euro-mix', + 'Dancing Stage Euro Mix', + 'Konami', + 2000, + array['Dancing Stage Euro Mix (G*936 VER. EAA)'], + array['Arcade'], + '{"mame":["dsem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dancing-stage-euro-mix-2', + 'Dancing Stage Euro Mix 2', + 'Konami', + 2002, + array['Dancing Stage Euro Mix 2 (G*C23 VER. EAA)'], + array['Arcade'], + '{"mame":["dsem2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dancing-stage-featuring-disney-s-rave-gca37jaa', + 'Dancing Stage Featuring Disney''s Rave (GCA37JAA)', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["dsfdr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dancing-stage-featuring-dreams-come-true', + 'Dancing Stage featuring Dreams Come True', + 'Konami', + 1999, + array['Dancing Stage featuring Dreams Come True (GC910 VER. JCA)'], + array['Arcade'], + '{"mame":["dsfdct"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dancing-stage-featuring-true-kiss-destination', + 'Dancing Stage featuring TRUE KiSS DESTiNATiON', + 'Konami', + 1999, + array['Dancing Stage featuring TRUE KiSS DESTiNATiON (G*884 VER. JAA)'], + array['Arcade'], + '{"mame":["dsftkd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dancing-stage-supernova-fdh-e-a-a-2006072500', + 'Dancing Stage SuperNOVA (FDH:E:A:A:2006072500)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["dstagesn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'danger-express', + 'Danger Express', + 'Atari Games', + 1992, + array['Danger Express (prototype)'], + array['Arcade'], + '{"mame":["dangerex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarig42.cpp"]}'::jsonb + ), + ( + 'danger-zone', + 'Danger Zone', + 'Cinematronics', + 1986, + array['Danger Zone (rev 2)'], + array['Arcade'], + '{"mame":["dangerz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'dangerous-curves', + 'Dangerous Curves', + 'Taito', + 1995, + array['Dangerous Curves (Ver 2.9 O)'], + array['Arcade'], + '{"mame":["dangcurv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitojc.cpp"]}'::jsonb + ), + ( + 'dangerous-dungeons', + 'Dangerous Dungeons', + 'The Game Room', + 1992, + array['Dangerous Dungeons (set 1)'], + array['Arcade'], + '{"mame":["ddungeon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'dangerous-seed', + 'Dangerous Seed', + 'Namco', + 1989, + array['Dangerous Seed (Japan)'], + array['Arcade'], + '{"mame":["dangseed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'danny-sullivan-s-indy-heat', + 'Danny Sullivan''s Indy Heat', + 'Leland Corporation', + 1991, + array['Danny Sullivan''s Indy Heat (rev 1)'], + array['Arcade'], + '{"mame":["indyheat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'danz-kara-bs-888', + 'DanZ Kara (BS-888)', + 'Game Star', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["danzkara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'daphor-32', + 'Daphor 32', + 'Dasit S.p.A.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["daphor32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/daphor32.cpp"]}'::jsonb + ), + ( + 'darius', + 'Darius', + 'Taito Corporation Japan', + 1986, + array['Darius (World, rev 2)'], + array['Shooter'], + '{"mame":["darius"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/darius.cpp"]}'::jsonb + ), + ( + 'darius-gaiden-silver-hawk', + 'Darius Gaiden - Silver Hawk', + 'Taito Corporation Japan', + 1994, + array['Darius Gaiden - Silver Hawk (Ver 2.5O 1994/09/19)'], + array['Shooter'], + '{"mame":["dariusg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'darius-gaiden-silver-hawk-extra-version', + 'Darius Gaiden - Silver Hawk Extra Version', + 'Taito Corporation', + 1994, + array['Darius Gaiden - Silver Hawk Extra Version (Ver 2.7J 1995/03/06) (Official Hack)'], + array['Shooter'], + '{"mame":["dariusgx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'darius-ii-triple-screen', + 'Darius II (triple screen)', + 'Taito Corporation', + 1989, + array['Darius II (triple screen) (Japan, rev 1)'], + array['Shooter'], + '{"mame":["darius2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/ninjaw.cpp"]}'::jsonb + ), + ( + 'dark-edge', + 'Dark Edge', + 'Sega', + 1992, + array['Dark Edge (World)'], + array['Arcade'], + '{"mame":["darkedge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'dark-horse-legend', + 'Dark Horse Legend', + 'Konami', + 1998, + array['Dark Horse Legend (GX706 VER. JAA)'], + array['Arcade'], + '{"mame":["darkhleg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dark-planet', + 'Dark Planet', + 'Stern Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["darkplnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scobra.cpp"]}'::jsonb + ), + ( + 'dark-seal', + 'Dark Seal', + 'Data East Corporation', + 1990, + array['Dark Seal (World revision 3)'], + array['Arcade'], + '{"mame":["darkseal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/darkseal.cpp"]}'::jsonb + ), + ( + 'dark-seal-8-liner', + 'Dark Seal (8-liner)', + 'bootleg (Vegas)', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["drkseal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/carrera.cpp"]}'::jsonb + ), + ( + 'dark-tower', + 'Dark Tower', + 'The Game Room', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["darktowr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'dark-warrior', + 'Dark Warrior', + 'Century Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["darkwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'darkstalkers-the-night-warriors', + 'Darkstalkers: The Night Warriors', + 'Capcom', + 1994, + array['Darkstalkers: The Night Warriors (Europe 940705)'], + array['Fighting'], + '{"mame":["dstlk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'darwin-4078', + 'Darwin 4078', + 'Data East Corporation', + 1986, + array['Darwin 4078 (Japan)'], + array['Arcade'], + '{"mame":["darwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/brkthru.cpp"]}'::jsonb + ), + ( + 'dash', + 'Dash!', + '', + 1998, + array['Dash! (A37, ver 1998/10/22)'], + array['Arcade'], + '{"mame":["dash_a37"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'datamax-8000', + 'Datamax 8000', + 'Datamax', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["dmax8000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/dmax8000.cpp"]}'::jsonb + ), + ( + 'datum', + 'Datum', + 'Gammatron', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["datum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/datum.cpp"]}'::jsonb + ), + ( + 'david-crane-s-amazing-tennis-nintendo-super-system', + 'David Crane''s Amazing Tennis (Nintendo Super System)', + 'Absolute Entertainment Inc.', + 1992, + '{}'::text[], + array['Sports'], + '{"mame":["nss_aten"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'daytona-usa', + 'Daytona USA', + 'Sega', + 1994, + array['Daytona USA (Revision A)'], + array['Racing'], + '{"mame":["daytona"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'daytona-usa-2-battle-on-the-edge', + 'Daytona USA 2: Battle on the Edge', + 'Sega', + 1998, + array['Daytona USA 2: Battle on the Edge (Revision A)'], + array['Racing'], + '{"mame":["daytona2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'daytona-usa-2-power-edition', + 'Daytona USA 2: Power Edition', + 'Sega', + 1998, + '{}'::text[], + array['Racing'], + '{"mame":["dayto2pe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'dazzler', + 'Dazzler', + 'Century Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["dazzler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'db32016', + 'DB32016', + 'National Semiconductor', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["db32016"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["natsemi/ns32kdb.cpp"]}'::jsonb + ), + ( + 'dct11-em', + 'DCT11-EM', + 'Digital Equipment Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dct11em"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/dct11em.cpp"]}'::jsonb + ), + ( + 'dd-9-digital-percussion', + 'DD-9 Digital Percussion', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["dd9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr150.cpp"]}'::jsonb + ), + ( + 'ddrmax-dance-dance-revolution-6th-mix', + 'DDRMAX - Dance Dance Revolution 6th Mix', + 'Konami', + 2001, + array['DDRMAX - Dance Dance Revolution 6th Mix (G*B19 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddrmax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'ddrmax2-dance-dance-revolution-7th-mix', + 'DDRMAX2 - Dance Dance Revolution 7th Mix', + 'Konami', + 2002, + array['DDRMAX2 - Dance Dance Revolution 7th Mix (G*B20 VER. JAA)'], + array['Rhythm'], + '{"mame":["ddrmax2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'dead-angle', + 'Dead Angle', + 'Seibu Kaihatsu', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["deadang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/deadang.cpp"]}'::jsonb + ), + ( + 'dead-connection', + 'Dead Connection', + 'Taito Corporation Japan', + 1992, + array['Dead Connection (World)'], + array['Arcade'], + '{"mame":["deadconx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'dead-eye', + 'Dead Eye', + 'Meadows Games, Inc.', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["deadeye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadows.cpp"]}'::jsonb + ), + ( + 'dead-eye-gv054-uaa01', + 'Dead Eye (GV054 UAA01)', + 'Konami', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["kdeadeye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'dead-or-alive', + 'Dead or Alive', + 'Tecmo', + 1996, + array['Dead or Alive (Model 2B, Revision C)'], + array['Arcade'], + '{"mame":["doa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'dead-or-alive-2-millennium', + 'Dead or Alive 2 Millennium', + 'Tecmo', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["doa2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'death-crimson-ox', + 'Death Crimson OX', + 'Ecole Software', + 2000, + array['Death Crimson OX (USA)'], + array['Arcade'], + '{"mame":["deathcox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'death-race', + 'Death Race', + 'Exidy', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["deathrac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidyttl.cpp"]}'::jsonb + ), + ( + 'deathsmiles', + 'Deathsmiles', + 'Cave (AMI license)', + 2007, + array['Deathsmiles (Japan, 2007/10/09 MASTER VER)'], + array['Arcade'], + '{"mame":["deathsml"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'deathsmiles-ii-makai-no-merry-christmas', + 'Deathsmiles II: Makai no Merry Christmas', + 'Cave', + 2009, + array['Deathsmiles II: Makai no Merry Christmas (2009/10/14 MASTER VER 4.00)'], + array['Arcade'], + '{"mame":["deathsm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cavepc.cpp"]}'::jsonb + ), + ( + 'deathsmiles-megablack-label', + 'Deathsmiles MegaBlack Label', + 'Cave (AMI license)', + 2008, + array['Deathsmiles MegaBlack Label (Japan, 2008/10/06 MEGABLACK LABEL VER)'], + array['Arcade'], + '{"mame":["dsmbl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'dec-2000-model-300-axp', + 'DEC 2000 Model 300 AXP', + 'Digital Equipment Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["d2k300axp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/jensen.cpp"]}'::jsonb + ), + ( + 'dec-2000-model-500-axp', + 'DEC 2000 Model 500 AXP', + 'Digital Equipment Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["d2k500axp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/jensen.cpp"]}'::jsonb + ), + ( + 'decathlete-juet-960709-v1-001', + 'Decathlete (JUET 960709 V1.001)', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["decathlt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'decision-mate-v', + 'Decision Mate V', + 'NCR', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dmv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ncr/dmv.cpp"]}'::jsonb + ), + ( + 'decmate-ii-pc278', + 'DECmate II (PC278)', + 'Digital Equipment Corporation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["decmate2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/decmate2.cpp"]}'::jsonb + ), + ( + 'decmate-iii-pc238', + 'DECmate III (PC238)', + 'Digital Equipment Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["decmate3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/decmate2.cpp"]}'::jsonb + ), + ( + 'deco-cassette-system', + 'DECO Cassette System', + 'Data East Corporation', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["decocass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'deco-cassette-system-rom-multigame-darksoft-v17', + 'DECO Cassette System ROM Multigame (Darksoft, v17)', + 'bootleg (Darksoft)', + 2022, + '{}'::text[], + array['Arcade'], + '{"mame":["decodark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'deco-cassette-system-rom-multigame-david-widel', + 'DECO Cassette System ROM Multigame (David Widel)', + 'bootleg (David Widel)', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["decomult"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'decpc-axp-150', + 'DECpc AXP 150', + 'Digital Equipment Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["dpcaxp150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/jensen.cpp"]}'::jsonb + ), + ( + 'decstation-2100', + 'DECstation 2100', + 'Digital Equipment Corporation', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["ds2100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/kn01.cpp"]}'::jsonb + ), + ( + 'decstation-3100', + 'DECstation 3100', + 'Digital Equipment Corporation', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["ds3100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/kn01.cpp"]}'::jsonb + ), + ( + 'decstation-5000-133', + 'DECstation 5000/133', + 'Digital Equipment Corporation', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ds5k133"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/kn02.cpp"]}'::jsonb + ), + ( + 'dectalk-dtc-01', + 'DECtalk DTC-01', + 'Digital Equipment Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dectalk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/dectalk.cpp"]}'::jsonb + ), + ( + 'dectalk-dtc-03', + 'DECtalk DTC-03', + 'Digital Equipment Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["dtc03"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/dtc03.cpp"]}'::jsonb + ), + ( + 'decwriter-iii-la120', + 'DECwriter III (LA120)', + 'Digital Equipment Corporation', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["la120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/decwritr.cpp"]}'::jsonb + ), + ( + 'deeco-sealtouch-st3220', + 'Deeco SealTouch ST3220', + 'Lucas', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["deecoseal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/deecoseal.cpp"]}'::jsonb + ), + ( + 'deer-hunting-usa-v4-3', + 'Deer Hunting USA V4.3', + 'Sammy USA Corporation', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["deerhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'defend-the-terra-attack-on-the-red-ufo', + 'Defend the Terra Attack on the Red UFO', + 'Artic', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["redufo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'defender-red-label', + 'Defender (Red label)', + 'Williams', + 1980, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["defender"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'defender-m2500p-120-in-1', + 'Defender M2500P 120-in-1', + 'Defender / JungleTac', + 2009, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["cybar120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'dellfern-v18-77-s-99-s-and-suits-1-credit', + 'Dellfern V18 (77''s, 99''s & Suits, 1 Credit)', + 'Dellfern Ltd.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["ddellf97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'delta-command-arcadia', + 'Delta Command (Arcadia)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_dlta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'deluxe-5', + 'Deluxe 5', + 'ESD', + 2000, + array['Deluxe 5 (ver. 0107, 07/01/2000, set 1)'], + array['Arcade'], + '{"mame":["deluxe5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'demolish-fist', + 'Demolish Fist', + 'Polygon Magic / Dimps', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["demofist"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'demolition-derby', + 'Demolition Derby', + 'Bally Midway', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["demoderb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'demolition-derby-chicago-coin', + 'Demolition Derby (Chicago Coin)', + 'Chicago Coin', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["dmodrbcc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/chicago.cpp"]}'::jsonb + ), + ( + 'demon', + 'Demon', + 'Rock-Ola', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["demon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'demon-front-moyu-zhanxian-68k-label-v105-rom-m105xx-08-05-02-arm-label-v105-rom-08-05-02-s', + 'Demon Front / Moyu Zhanxian (68k label V105, ROM M105XX 08/05/02) (ARM label V105, ROM 08/05/02 S105XX)', + 'IGS', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["dmnfrnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'demon-s-world-horror-story', + 'Demon''s World / Horror Story', + 'Toaplan', + 1990, + array['Demon''s World (World) / Horror Story (Japan) (set 1)'], + array['Arcade'], + '{"mame":["demonwld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/toaplan1.cpp"]}'::jsonb + ), + ( + 'demoneye-x', + 'Demoneye-X', + 'Irem', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["demoneye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/redalert.cpp"]}'::jsonb + ), + ( + 'demons-and-dragons', + 'Demons & Dragons', + 'Dave Nutting Associates / Bally Midway', + 1982, + array['Demons & Dragons (prototype)'], + array['Arcade'], + '{"mame":["demndrgn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'dengen-tenshi-taisen-janshi-shangri-la', + 'Dengen Tenshi Taisen Janshi Shangri-la', + 'Marvelous Ent.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["shangril"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'denjin-makai', + 'Denjin Makai', + 'Winkysoft (Banpresto license)', + 1994, + array['Denjin Makai (set 1)'], + array['Arcade'], + '{"mame":["denjinmk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/legionna.cpp"]}'::jsonb + ), + ( + 'densha-de-go-3-tsukin-hen', + 'Densha de GO 3! Tsukin-hen', + 'Taito', + 2000, + array['Densha de GO 3! Tsukin-hen (VER.2.03J)'], + array['Arcade'], + '{"mame":["dendego3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'densha-de-go', + 'Densha de GO!', + 'Taito', + 1996, + array['Densha de GO! (Ver 2.3 J)'], + array['Arcade'], + '{"mame":["dendego"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitojc.cpp"]}'::jsonb + ), + ( + 'densha-de-go-2-kousoku-hen', + 'Densha de GO! 2 Kousoku-hen', + 'Taito', + 1998, + array['Densha de GO! 2 Kousoku-hen (Ver 2.5 J)'], + array['Arcade'], + '{"mame":["dendego2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitojc.cpp"]}'::jsonb + ), + ( + 'denver-game-console-gmp-240c-150-in-1', + 'Denver Game Console GMP-240C 150-in-1', + 'Denver', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["denv150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'depthcharge', + 'Depthcharge', + 'Gremlin', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["depthch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'derby-derby', + 'Derby Derby', + 'SNK', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["drderby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/drderby.cpp"]}'::jsonb + ), + ( + 'derby-owners-club', + 'Derby Owners Club', + 'Sega', + 1999, + array['Derby Owners Club (Japan, Rev B)'], + array['Arcade'], + '{"mame":["derbyoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'derby-owners-club-2000-ver-2', + 'Derby Owners Club 2000 Ver.2', + 'Sega', + 2000, + array['Derby Owners Club 2000 Ver.2 (Japan, Rev A)'], + array['Arcade'], + '{"mame":["derbyo2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'derby-owners-club-ii-ver-2-1', + 'Derby Owners Club II Ver.2.1', + 'Sega', + 2001, + array['Derby Owners Club II Ver.2.1 (Japan, Rev B)'], + array['Arcade'], + '{"mame":["derbyoc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'derby-owners-club-world-edition-ex', + 'Derby Owners Club World Edition EX', + 'Sega', + 2005, + array['Derby Owners Club World Edition EX (Rev D)'], + array['Arcade'], + '{"mame":["derbyocw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'deroon-derodero', + 'Deroon DeroDero', + 'Tecmo', + 1995, + array['Deroon DeroDero (earlier, set 1)'], + array['Arcade'], + '{"mame":["deroon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmosys.cpp"]}'::jsonb + ), + ( + 'desert-breaker-fd1094-317-0196', + 'Desert Breaker (FD1094 317-0196)', + 'Sega', + 1992, + array['Desert Breaker (World) (FD1094 317-0196)'], + array['Arcade'], + '{"mame":["desertbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'desert-dan', + 'Desert Dan', + 'Kawakusu (Video Optics license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["desertdn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'desert-gun', + 'Desert Gun', + 'Dave Nutting Associates / Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["desertgu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'desert-patrol', + 'Desert Patrol', + 'Project Support Engineering', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["dpatrol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pse.cpp"]}'::jsonb + ), + ( + 'desert-tank', + 'Desert Tank', + 'Sega / Martin Marietta', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["desert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'desert-war-wangan-sensou', + 'Desert War / Wangan Sensou', + 'Jaleco', + 1995, + array['Desert War / Wangan Sensou (ver 1.0)'], + array['Arcade'], + '{"mame":["desertwr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'design-master-denshi-mangajuku', + 'Design Master Denshi Mangajuku', + 'Bandai', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["bdesignm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bandai/design_master.cpp"]}'::jsonb + ), + ( + 'designer-2100-display', + 'Designer 2100 Display', + 'Fidelity International', + 1988, + array['Designer 2100 Display (set 1)'], + array['Arcade'], + '{"mame":["fdes2100d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/desdis.cpp"]}'::jsonb + ), + ( + 'designer-mach-iii-master-2265', + 'Designer Mach III Master 2265', + 'Fidelity Electronics International', + 1989, + array['Designer Mach III Master 2265 (set 1)'], + array['Arcade'], + '{"mame":["fdes2265"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/desdis.cpp"]}'::jsonb + ), + ( + 'destiny-the-fortuneteller', + 'Destiny - The Fortuneteller', + 'Data East Corporation', + 1983, + array['Destiny - The Fortuneteller (USA)'], + array['Arcade'], + '{"mame":["destiny"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deshoros.cpp"]}'::jsonb + ), + ( + 'destiny-prodigy', + 'Destiny Prodigy', + 'Applied Concepts', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["prodigy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["appliedconcepts/prodigy.cpp"]}'::jsonb + ), + ( + 'destroyer', + 'Destroyer', + 'Atari', + 1977, + array['Destroyer (Atari, version O2)', 'Destroyer (Cidelsa, set 1)'], + array['Arcade'], + '{"mame":["destroyr","destryer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/destroyr.cpp","efo/cidelsa.cpp"]}'::jsonb + ), + ( + 'destruction-derby', + 'Destruction Derby', + 'Exidy', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["destdrby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidyttl.cpp"]}'::jsonb + ), + ( + 'deuces-wild-2-american-heritage', + 'Deuces Wild 2 - American Heritage', + '', + 1997, + array['Deuces Wild 2 - American Heritage (Ver. 2.02F)'], + array['Arcade'], + '{"mame":["deucesw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'devastators', + 'Devastators', + 'Konami', + 1988, + array['Devastators (ver. Z)'], + array['Arcade'], + '{"mame":["devstors"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mainevt.cpp"]}'::jsonb + ), + ( + 'devil-fish-mars-hardware', + 'Devil Fish (Mars hardware)', + 'Artic', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["devilfsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'devil-island', + 'Devil Island', + 'Amcoe', + 2006, + array['Devil Island (Version 1.4R CGA)'], + array['Arcade'], + '{"mame":["dvisland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'devil-world', + 'Devil World', + 'Konami', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["devilw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twin16.cpp"]}'::jsonb + ), + ( + 'devil-zone', + 'Devil Zone', + 'Universal', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["devzone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmic.cpp"]}'::jsonb + ), + ( + 'dg-20-digital-guitar', + 'DG-20 Digital Guitar', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["dg20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/dg20.cpp"]}'::jsonb + ), + ( + 'dg680-with-dgos-z80-1-4', + 'DG680 with DGOS-Z80 1.4', + 'David Griffiths', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["dg680"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/dg680.cpp"]}'::jsonb + ), + ( + 'dharma-doujou', + 'Dharma Doujou', + 'Metro', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["dharma"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'diablo-68000', + 'Diablo 68000', + 'Novag Industries / Intelligent Heuristic Programming', + 1991, + array['Diablo 68000 (set 1)'], + array['Arcade'], + '{"mame":["diablo68"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/diablo.cpp"]}'::jsonb + ), + ( + 'dialogue-80', + 'Dialogue 80', + 'Ampex', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["dialog80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ampex/ampex.cpp"]}'::jsonb + ), + ( + 'diamond', + 'Diamond', + 'Novag Industries / Intelligent Heuristic Programming', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["diamond"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/diamond.cpp"]}'::jsonb + ), + ( + 'diamond-derby-win-bet-newer', + 'Diamond Derby (Win bet, newer)', + 'Electrocoin', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["dmndrby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/dmndrby.cpp"]}'::jsonb + ), + ( + 'diamond-ii', + 'Diamond II', + 'Novag Industries / Intelligent Heuristic Programming', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["diamond2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/diamond.cpp"]}'::jsonb + ), + ( + 'diamond-run', + 'Diamond Run', + 'KH Video', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["diamrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/gng.cpp"]}'::jsonb + ), + ( + 'diamond-trio', + 'Diamond Trio', + 'Novotech', + null, + array['Diamond Trio (set 1)'], + array['Arcade'], + '{"mame":["ditrio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'dice-the-dice-game', + 'Dice - The Dice Game!', + 'bootleg (Tuning)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["dicegame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m90.cpp"]}'::jsonb + ), + ( + 'die-hard-arcade-uet-960515-v1-000', + 'Die Hard Arcade (UET 960515 V1.000)', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["diehard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'diet-family', + 'Diet Family', + 'SemiCom', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["dtfamily"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'diet-go-go', + 'Diet Go Go', + 'Data East Corporation', + 1992, + array['Diet Go Go (Europe v1.1 1992.09.26, set 1)'], + array['Arcade'], + '{"mame":["dietgo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dietgo.cpp"]}'::jsonb + ), + ( + 'dig-dug', + 'Dig Dug', + 'Namco', + 1982, + array['Dig Dug (rev 2)'], + array['Classic'], + '{"mame":["digdug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/galaga.cpp"]}'::jsonb + ), + ( + 'dig-dug-ii', + 'Dig Dug II', + 'Namco', + 1985, + array['Dig Dug II (New Ver.)'], + array['Classic'], + '{"mame":["digdug2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'digger', + 'Digger', + 'Sega', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["digger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'digger-cvs', + 'Digger (CVS)', + 'Century Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["diggerc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'digger-man', + 'Digger Man', + 'Kyle Hodgetts', + 2000, + array['Digger Man (prototype)'], + array['Arcade'], + '{"mame":["diggerma"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'digital-ez-lg', + 'Digital ez LG', + 'LG', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["digezlg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'diier-d-10-168-in-1-phone-case', + 'Diier-D-10 168-in-1 phone case', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["168pcase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'dimahoo', + 'Dimahoo', + 'Eighting / Raizing (Capcom license)', + 2000, + array['Dimahoo (Europe 000121)'], + array['Arcade'], + '{"mame":["dimahoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'dimension-68000', + 'Dimension 68000', + 'Micro Craft', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dim68k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microcraft/dim68k.cpp"]}'::jsonb + ), + ( + 'dingji-dou-dizhu', + 'Dingji Dou Dizhu', + 'Sealy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["djddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_z80.cpp"]}'::jsonb + ), + ( + 'dingo', + 'Dingo', + 'Ashby Computers and Graphics Ltd. (Jaleco license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dingo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'dino-dino', + 'Dino Dino', + 'Astro Corp.', + 2005, + array['Dino Dino (Ver. A1.1, 01/13/2005)'], + array['Arcade'], + '{"mame":["dinodino"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'dino-family', + 'Dino Family', + 'Subsino', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["dinofmly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'dino-rex', + 'Dino Rex', + 'Taito Corporation Japan', + 1992, + array['Dino Rex (World)'], + array['Arcade'], + '{"mame":["dinorex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'dinoking-battle', + 'Dinoking Battle', + 'Taito Corporation', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["dkbattle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/dinoking.cpp"]}'::jsonb + ), + ( + 'dinoking-kids', + 'Dinoking Kids', + 'Taito Corporation', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["dkkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/dinoking.cpp"]}'::jsonb + ), + ( + 'dinosaur-king', + 'Dinosaur King', + 'Sega', + 2005, + array['Dinosaur King (USA)'], + array['Arcade'], + '{"mame":["dinoking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'dinosaur-king-d-team-vs-the-alpha-fortress-mda-c0047', + 'Dinosaur King - D-Team VS. the Alpha Fortress (MDA-C0047)', + 'Sega', + 2008, + array['Dinosaur King - D-Team VS. the Alpha Fortress (Export, Ver 2.500) (MDA-C0047)'], + array['Arcade'], + '{"mame":["dinoki25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'dinosaur-king-operation-dinosaur-rescue-mda-c0021', + 'Dinosaur King - Operation: Dinosaur Rescue (MDA-C0021)', + 'Sega', + 2006, + array['Dinosaur King - Operation: Dinosaur Rescue (USA, Export) (MDA-C0021)'], + array['Arcade'], + '{"mame":["dinokior"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'dirt-dash', + 'Dirt Dash', + 'Namco', + 1995, + array['Dirt Dash (World, DT2 Ver.C)'], + array['Arcade'], + '{"mame":["dirtdash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'dirt-devils', + 'Dirt Devils', + 'Sega', + 1998, + array['Dirt Devils (Export, Revision A)'], + array['Arcade'], + '{"mame":["dirtdvls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'dirt-fox', + 'Dirt Fox', + 'Namco', + 1989, + array['Dirt Fox (Japan)'], + array['Arcade'], + '{"mame":["dirtfoxj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'dirty-pigskin-football', + 'Dirty Pigskin Football', + 'Sammy', + 2006, + '{}'::text[], + array['Sports'], + '{"mame":["dirtypig"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'disco-boy', + 'Disco Boy', + 'Soft Art Co.', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["discoboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/discoboy.cpp"]}'::jsonb + ), + ( + 'disco-no-1', + 'Disco No.1', + 'Data East Corporation', + 1982, + array['Disco No.1 (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cdiscon1","disco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp","dataeast/btime.cpp"]}'::jsonb + ), + ( + 'discs-of-tron-upright-10-4-83', + 'Discs of Tron (Upright, 10/4/83)', + 'Bally Midway', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dotron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'disney-characters-tegaki-electronic-note', + 'Disney Characters - Tegaki Electronic Note', + 'Tsukuda Original', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pickydis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'diver-boy', + 'Diver Boy', + 'Gamart (Electronic Devices Italy license)', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["diverboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/diverboy.cpp"]}'::jsonb + ), + ( + 'dj-boy', + 'DJ Boy', + 'Kaneko', + 1989, + array['DJ Boy (World)'], + array['Arcade'], + '{"mame":["djboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/djboy.cpp"]}'::jsonb + ), + ( + 'dm3270-control-unit-display-station', + 'DM3270 Control Unit Display Station', + 'Beehive International', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["dm3270"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["beehive/microb.cpp"]}'::jsonb + ), + ( + 'dms-5000', + 'DMS-5000', + 'Digital Microsystems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["dms5000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dms/dms5000.cpp"]}'::jsonb + ), + ( + 'dms-86', + 'DMS-86', + 'Digital Microsystems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["dms86"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dms/dms86.cpp"]}'::jsonb + ), + ( + 'dmx', + 'DMX', + 'Oberheim', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["obdmx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["oberheim/dmx.cpp"]}'::jsonb + ), + ( + 'do-run-run', + 'Do! Run Run', + 'Universal', + 1984, + array['Do! Run Run (set 1)'], + array['Arcade'], + '{"mame":["dorunrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/docastle.cpp"]}'::jsonb + ), + ( + 'dobou-chan', + 'Dobou-Chan', + 'Konami', + 1996, + array['Dobou-Chan (ver JAA)'], + array['Arcade'], + '{"mame":["dobouchn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'docchi-fighter', + 'Docchi Fighter', + 'Amuzy Corporation', + 2007, + array['Docchi Fighter (Japan, ver 1.02)'], + array['Arcade'], + '{"mame":["docchift"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'dock-man', + 'Dock Man', + 'Taito Corporation', + 1982, + array['Dock Man (set 1)'], + array['Arcade'], + '{"mame":["dockman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'dodge-city-9131-02-u9-2t', + 'Dodge City (9131-02, U9-2T)', + 'Merit', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["dodgecty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'dodge-man', + 'Dodge Man', + 'Omori Electric Co., Ltd.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dodgeman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omori/battlex.cpp"]}'::jsonb + ), + ( + 'dodgem', + 'Dodgem', + 'Zaccaria', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["dodgem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/zac1b1120.cpp"]}'::jsonb + ), + ( + 'dodonpachi', + 'DoDonPachi', + 'Cave (Atlus license)', + 1997, + array['DoDonPachi (World, 1997 2/ 5 Master Ver.)'], + array['Arcade'], + '{"mame":["ddonpach"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'dodonpachi-dai-fukkatsu-black-label', + 'DoDonPachi Dai-Fukkatsu Black Label', + 'Cave', + 2010, + array['DoDonPachi Dai-Fukkatsu Black Label (Japan, 2010/1/18 BLACK LABEL)'], + array['Arcade'], + '{"mame":["dfkbl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'dodonpachi-dai-fukkatsu-ver-1-5', + 'DoDonPachi Dai-Fukkatsu Ver 1.5', + 'Cave (AMI license)', + 2008, + array['DoDonPachi Dai-Fukkatsu Ver 1.5 (Japan, 2008/06/23 MASTER VER 1.5)'], + array['Arcade'], + '{"mame":["ddpdfk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'dodonpachi-dai-ou-jou-tamashii', + 'DoDonPachi Dai-Ou-Jou Tamashii', + 'IGS / Cave (Tong Li Animation license)', + 2010, + array['DoDonPachi Dai-Ou-Jou Tamashii (V201, China)'], + array['Arcade'], + '{"mame":["ddpdojt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm2.cpp"]}'::jsonb + ), + ( + 'dodonpachi-ii-bee-storm', + 'DoDonPachi II - Bee Storm', + 'IGS', + 2001, + array['DoDonPachi II - Bee Storm (World, ver. 102)'], + array['Arcade'], + '{"mame":["ddp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'dodonpachi-iii', + 'DoDonPachi III', + 'Cave (AMI license)', + 2002, + array['DoDonPachi III (World, 2002.05.15 Master Ver)'], + array['Arcade'], + '{"mame":["ddp3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'dog-fight-thunderbolt', + 'Dog Fight (Thunderbolt)', + 'Orca / Thunderbolt', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dogfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/zodiack.cpp"]}'::jsonb + ), + ( + 'dog-patch', + 'Dog Patch', + 'Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["dogpatch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'dogstation-deluxe', + 'dogstation Deluxe', + 'Konami', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["dogstdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython.cpp"]}'::jsonb + ), + ( + 'dogyuun', + 'Dogyuun', + 'Toaplan', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["dogyuun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/dogyuun.cpp"]}'::jsonb + ), + ( + 'dojokko-tsukami', + 'Dojokko Tsukami', + 'Amuzy Corporation', + 2005, + array['Dojokko Tsukami (Japan, ver 1.02)'], + array['Arcade'], + '{"mame":["dojokkot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'dokaben', + 'Dokaben', + 'Capcom', + 1989, + array['Dokaben (Japan)'], + array['Arcade'], + '{"mame":["dokaben"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'dokaben-2', + 'Dokaben 2', + 'Capcom', + 1989, + array['Dokaben 2 (Japan)'], + array['Arcade'], + '{"mame":["dokaben2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'doki-doki-idol-star-seeker-gdl-0005', + 'Doki Doki Idol Star Seeker (GDL-0005)', + 'G.Rev', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["starseek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'doki-doki-penguin-land', + 'Doki Doki Penguin Land', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["dokidoki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000a.cpp"]}'::jsonb + ), + ( + 'doki-doki-flower', + 'Doki Doki! Flower', + 'Namco', + 2003, + array['Doki Doki! Flower (DFL1, Ver. A)'], + array['Arcade'], + '{"mame":["ddflower"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos6.cpp"]}'::jsonb + ), + ( + 'dokidoki-kingyo-sukui', + 'Dokidoki Kingyo Sukui', + 'Sammy', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["kingyosu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'doko-demo-issho-toro-s-fishing', + 'Doko Demo Issho: Toro''s Fishing', + 'Sony / Capcom', + 2006, + array['Doko Demo Issho: Toro''s Fishing (Ver.1.00, 2006/06/07)'], + array['Arcade'], + '{"mame":["dokodemo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'dolmen', + 'Dolmen', + 'Afega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["dolmen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'dolphin-blue', + 'Dolphin Blue', + 'Sammy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["dolphin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'dolphin-s-pearl', + 'Dolphin''s Pearl', + 'Novotech', + null, + array['Dolphin''s Pearl (set 1)'], + array['Arcade'], + '{"mame":["dolphinp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'domino-block', + 'Domino Block', + 'Wonwoo Systems', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["dominob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dominob.cpp"]}'::jsonb + ), + ( + 'domino-man', + 'Domino Man', + 'Bally Midway', + 1982, + array['Domino Man (set 1)'], + array['Arcade'], + '{"mame":["domino"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'dominos', + 'Dominos', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["dominos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/sprint2.cpp"]}'::jsonb + ), + ( + 'dommy', + 'Dommy', + 'Technos Japan', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dommy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'don-den-lover-vol-1-shiro-kuro-tsukeyo', + 'Don Den Lover Vol. 1 - Shiro Kuro Tsukeyo!', + 'Dynax', + 1995, + array['Don Den Lover Vol. 1 - Shiro Kuro Tsukeyo! (Japan)'], + array['Arcade'], + '{"mame":["ddenlovj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'don-doko-don', + 'Don Doko Don', + 'Taito Corporation Japan', + 1989, + array['Don Doko Don (World, rev 1)'], + array['Arcade'], + '{"mame":["dondokod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'dona-barata', + 'Dona Barata', + 'Eletro Matic Equipamentos Eletromecânicos', + 2002, + array['Dona Barata (early prototype)'], + array['Arcade'], + '{"mame":["barata"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["matic/barata.cpp"]}'::jsonb + ), + ( + 'dongfang-shenlong', + 'Dongfang Shenlong', + 'BMC', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["bmcpokr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/bmcpokr.cpp"]}'::jsonb + ), + ( + 'donggul-donggul-haerong', + 'Donggul Donggul Haerong', + 'Danbi', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["donghaer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'dongshizhang', + 'Dongshizhang', + 'Subsino', + 2005, + array['Dongshizhang (China, Ver. 212)'], + array['Arcade'], + '{"mame":["dongshiz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'donkey-kong', + 'Donkey Kong', + 'Nintendo of America', + 1981, + array['Donkey Kong (US set 1)'], + array['Platformer', 'Classic'], + '{"mame":["dkong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'donkey-kong-donkey-kong-jr-mario-bros', + 'Donkey Kong / Donkey Kong Jr / Mario Bros', + 'Namco / Nintendo / Cosmodog', + 2003, + '{}'::text[], + array['Platformer', 'Classic'], + '{"mame":["dkmb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/dkmb.cpp"]}'::jsonb + ), + ( + 'donkey-kong-3', + 'Donkey Kong 3', + 'Nintendo of America', + 1983, + array['Donkey Kong 3 (US)'], + array['Platformer', 'Classic'], + '{"mame":["dkong3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'donkey-kong-banana-kingdom-host', + 'Donkey Kong Banana Kingdom (host)', + 'Capcom', + 2007, + '{}'::text[], + array['Platformer', 'Classic'], + '{"mame":["dkbanana"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'donkey-kong-jungle-fever', + 'Donkey Kong Jungle Fever', + 'Nintendo / Capcom', + 2005, + array['Donkey Kong Jungle Fever (Ver.1.000, 2005/08/03)'], + array['Platformer', 'Classic'], + '{"mame":["dkjfever"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'donkey-kong-junior', + 'Donkey Kong Junior', + 'Nintendo of America', + 1982, + array['Donkey Kong Junior (US set F-2)'], + array['Platformer', 'Classic'], + '{"mame":["dkongjr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'donpachi', + 'DonPachi', + 'Cave (Atlus license)', + 1995, + array['DonPachi (US)'], + array['Arcade'], + '{"mame":["donpachi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'doodle-jump-arcade-v1-16', + 'Doodle Jump Arcade (v1.16)', + 'ICE / Raw Thrills (Lima Sky license)', + 2013, + '{}'::text[], + array['Arcade'], + '{"mame":["doodljmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/rawthrillspc.cpp"]}'::jsonb + ), + ( + 'dora-chan', + 'Dora-chan', + 'Alpha Denshi Co. / Craul Denshi', + 1980, + array['Dora-chan (Japan)'], + array['Arcade'], + '{"mame":["dorachan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dorachan.cpp"]}'::jsonb + ), + ( + 'doraemon-no-dokodemo-door', + 'Doraemon no Dokodemo Door', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["dddoor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'dorodon', + 'Dorodon', + 'UPL (Falcon license?)', + 1982, + array['Dorodon (set 1)'], + array['Arcade'], + '{"mame":["dorodon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/ladybug.cpp"]}'::jsonb + ), + ( + 'dottori-kun', + 'Dottori Kun', + 'Sega', + 1990, + array['Dottori Kun (new version)'], + array['Arcade'], + '{"mame":["dotrikun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dotrikun.cpp"]}'::jsonb + ), + ( + 'dou-dizhu', + 'Dou Dizhu', + 'IGS?', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ddz.cpp"]}'::jsonb + ), + ( + 'dou-dizhu-ii', + 'Dou Dizhu II', + 'Sealy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ddz2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_z80.cpp"]}'::jsonb + ), + ( + 'double-8-line', + 'Double 8 Line', + 'AMT Co. Ltd.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["double8l"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/cabaret.cpp"]}'::jsonb + ), + ( + 'double-axle', + 'Double Axle', + 'Taito America Corporation', + 1991, + array['Double Axle (US, Rev 1, set 1)'], + array['Arcade'], + '{"mame":["dblaxle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'double-challenge', + 'Double Challenge', + 'Amcoe', + 2003, + array['Double Challenge (Version 1.5R, set 1)'], + array['Arcade'], + '{"mame":["dblchal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'double-cheese', + 'Double Cheese', + 'HAR Management', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["dcheese"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dcheese.cpp"]}'::jsonb + ), + ( + 'double-crown-v1-0-3', + 'Double Crown (v1.0.3)', + 'Cadence Technology', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["dblcrown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/dblcrown.cpp"]}'::jsonb + ), + ( + 'double-dance-mania-techno-light-edition', + 'Double Dance Mania - Techno Light Edition', + 'Senario', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["dbdancem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'double-dealer', + 'Double Dealer', + 'NMK', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["ddealer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/ddealer.cpp"]}'::jsonb + ), + ( + 'double-dragon', + 'Double Dragon', + 'Technos Japan (Taito license)', + 1987, + array['Double Dragon (World set 1)'], + array['Beat em up'], + '{"mame":["ddragon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'double-dragon-neo-geo', + 'Double Dragon (Neo-Geo)', + 'Technos Japan', + 1995, + '{}'::text[], + array['Beat em up'], + '{"mame":["doubledr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'double-dragon-playchoice-10', + 'Double Dragon (PlayChoice-10)', + 'Technos Japan', + 1988, + '{}'::text[], + array['Beat em up'], + '{"mame":["pc_ddrgn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'double-dragon-3-the-rosetta-stone', + 'Double Dragon 3: The Rosetta Stone', + 'East Technology / Technos Japan', + 1990, + array['Double Dragon 3: The Rosetta Stone (US)'], + array['Beat em up'], + '{"mame":["ddragon3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon3.cpp"]}'::jsonb + ), + ( + 'double-dragon-ii-the-revenge', + 'Double Dragon II: The Revenge', + 'Technos Japan', + 1988, + array['Double Dragon II: The Revenge (World)'], + array['Beat em up'], + '{"mame":["ddragon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'double-dribble', + 'Double Dribble', + 'Konami', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["ddribble"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ddribble.cpp"]}'::jsonb + ), + ( + 'double-dribble-playchoice-10', + 'Double Dribble (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_dbldr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'double-play', + 'Double Play', + 'Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["dplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'double-players-mini-joystick-80-in-1-mj8500-abl-tv-game', + 'Double Players Mini Joystick 80-in-1 (MJ8500, ABL TV Game)', + 'Advance Bright Ltd', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["ablmini"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'double-point', + 'Double Point', + 'Min Corp.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["dblpoint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gumbo.cpp"]}'::jsonb + ), + ( + 'double-wings', + 'Double Wings', + 'Mitchell', + 1993, + array['Double Wings (set 1)'], + array['Arcade'], + '{"mame":["dblewing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dblewing.cpp"]}'::jsonb + ), + ( + 'downhill-bikers', + 'Downhill Bikers', + 'Namco', + 1997, + array['Downhill Bikers (World, DH2 Ver. A)'], + array['Arcade'], + '{"mame":["downhill"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'downtown-mokugeki', + 'DownTown / Mokugeki', + 'Seta', + 1989, + array['DownTown / Mokugeki (set 1)'], + array['Arcade'], + '{"mame":["downtown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'dpb-7000', + 'DPB-7000', + 'Quantel', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["dpb7000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["quantel/dpb7000.cpp"]}'::jsonb + ), + ( + 'dr-mario-playchoice-10', + 'Dr. Mario (PlayChoice-10)', + 'Nintendo', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_drmro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'dr-micro', + 'Dr. Micro', + 'Sanritsu', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["drmicro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/drmicro.cpp"]}'::jsonb + ), + ( + 'dr-tomy', + 'Dr. Tomy', + 'Playmark', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["drtomy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/drtomy.cpp"]}'::jsonb + ), + ( + 'dr-toppel-s-adventure', + 'Dr. Toppel''s Adventure', + 'Kaneko / Taito Corporation Japan', + 1987, + array['Dr. Toppel''s Adventure (World)'], + array['Arcade'], + '{"mame":["drtoppel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'draco', + 'Draco', + 'Cidelsa', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["draco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cidelsa.cpp"]}'::jsonb + ), + ( + 'dracula-s-castle-magnet-system', + 'Dracula''s Castle (Magnet System)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_drac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'drag-race', + 'Drag Race', + 'Atari (Kee Games)', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["dragrace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/dragrace.cpp"]}'::jsonb + ), + ( + 'dragon-ball-z', + 'Dragon Ball Z', + 'Banpresto', + 1993, + array['Dragon Ball Z (rev B)'], + array['Arcade'], + '{"mame":["dbz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/dbz.cpp"]}'::jsonb + ), + ( + 'dragon-ball-z-2-super-battle', + 'Dragon Ball Z 2 - Super Battle', + 'Banpresto', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["dbz2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/dbz.cpp"]}'::jsonb + ), + ( + 'dragon-ball-z-v-r-v-s', + 'Dragon Ball Z: V.R. V.S.', + 'Sega / Banpresto', + 1994, + array['Dragon Ball Z: V.R. V.S. (Japan, Rev A)'], + array['Arcade'], + '{"mame":["dbzvrvs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'dragon-blaze', + 'Dragon Blaze', + 'Psikyo', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["dragnblz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'dragon-bowl', + 'Dragon Bowl', + 'Nics', + 1992, + array['Dragon Bowl (set 1, encrypted program)'], + array['Arcade'], + '{"mame":["drgnbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/gaiden.cpp"]}'::jsonb + ), + ( + 'dragon-breed', + 'Dragon Breed', + 'Irem', + 1989, + array['Dragon Breed (World, M81 hardware)'], + array['Arcade'], + '{"mame":["dbreed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'dragon-buster', + 'Dragon Buster', + 'Namco', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["drgnbstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/skykid.cpp"]}'::jsonb + ), + ( + 'dragon-chronicles', + 'Dragon Chronicles', + 'Namco', + 2002, + array['Dragon Chronicles (DC001 Ver. A)'], + array['Arcade'], + '{"mame":["dragchrn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'dragon-dance-v1-02j', + 'Dragon Dance (V1.02J)', + 'Success', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["drgdance"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/skopro.cpp"]}'::jsonb + ), + ( + 'dragon-gun', + 'Dragon Gun', + 'Data East Corporation', + 1993, + array['Dragon Gun (US)'], + array['Arcade'], + '{"mame":["dragngun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco32.cpp"]}'::jsonb + ), + ( + 'dragon-master', + 'Dragon Master', + 'Unico', + 1994, + array['Dragon Master (set 1)'], + array['Arcade'], + '{"mame":["drgnmst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/drgnmst.cpp"]}'::jsonb + ), + ( + 'dragon-punch', + 'Dragon Punch', + 'Dynax', + 1989, + array['Dragon Punch (Japan, ver. 1.30)'], + array['Arcade'], + '{"mame":["drgpunch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'dragon-saber', + 'Dragon Saber', + 'Namco', + 1990, + array['Dragon Saber (World, DO2)'], + array['Arcade'], + '{"mame":["dsaber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'dragon-slayer', + 'Dragon Slayer', + 'Astro Corp.', + 2005, + array['Dragon Slayer (Russia, v15.B, 2005/08/10)'], + array['Arcade'], + '{"mame":["dslayrr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'dragon-sphere', + 'Dragon Sphere', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dragsphr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'dragon-spirit', + 'Dragon Spirit )', + 'Namco', + 1987, + array['Dragon Spirit (new version (DS3))'], + array['Arcade'], + '{"mame":["dspirit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'dragon-treasure-gds-0030b', + 'Dragon Treasure (GDS-0030B)', + 'Sega', + 2003, + array['Dragon Treasure (Rev B) (GDS-0030B)'], + array['Arcade'], + '{"mame":["dragntr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'dragon-treasure-2-gds-0037a', + 'Dragon Treasure 2 (GDS-0037A)', + 'Sega', + 2004, + array['Dragon Treasure 2 (Rev A) (GDS-0037A)'], + array['Arcade'], + '{"mame":["dragntr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'dragon-treasure-3-gds-0041a', + 'Dragon Treasure 3 (GDS-0041A)', + 'Sega', + 2005, + array['Dragon Treasure 3 (Rev A) (GDS-0041A)'], + array['Arcade'], + '{"mame":["dragntr3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'dragon-unit-castle-of-dragon', + 'Dragon Unit / Castle of Dragon', + 'Athena / Seta', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["drgnunit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'dragon-world', + 'Dragon World', + 'IGS', + 1997, + array['Dragon World (World, V040O)'], + array['Arcade'], + '{"mame":["drgnwrld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs011.cpp"]}'::jsonb + ), + ( + 'dragon-world-3-zhongguo-long-3-dungfong-zi-zyu-3-chuugokuryuu-3-special', + 'Dragon World 3 / Zhongguo Long 3 / Dungfong Zi Zyu 3 / Chuugokuryuu 3 Special', + 'IGS', + 1998, + array['Dragon World 3 / Zhongguo Long 3 / Dungfong Zi Zyu 3 / Chuugokuryuu 3 Special (ver. 106)'], + array['Arcade'], + '{"mame":["drgw3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'dragon-world-3-ex-zhongguo-long-3-ex-dungfong-zi-zyu-3-ex-chuugokuryuu-3-ex', + 'Dragon World 3 EX / Zhongguo Long 3 EX / Dungfong Zi Zyu 3 EX / Chuugokuryuu 3 EX', + 'IGS', + 2000, + array['Dragon World 3 EX / Zhongguo Long 3 EX / Dungfong Zi Zyu 3 EX / Chuugokuryuu 3 EX (ver. 100)'], + array['Arcade'], + '{"mame":["dwex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'dragon-world-ii', + 'Dragon World II', + 'IGS', + 1997, + array['Dragon World II (ver. 110X, Export)'], + array['Arcade'], + '{"mame":["drgw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'dragon-s-heaven-development-board', + 'Dragon''s Heaven (development board)', + 'Face', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["dragonsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'dragon-s-lair', + 'Dragon''s Lair', + 'Cinematronics', + 1983, + array['Dragon''s Lair (US Rev. F2)'], + array['Arcade'], + '{"mame":["dlair"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/dlair.cpp"]}'::jsonb + ), + ( + 'dragon-s-lair-2-time-warp', + 'Dragon''s Lair 2: Time Warp', + 'Leland Corporation', + 1991, + array['Dragon''s Lair 2: Time Warp (US v3.19)'], + array['Arcade'], + '{"mame":["dlair2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/dlair2.cpp"]}'::jsonb + ), + ( + 'dragonfly', + 'Dragonfly', + 'Konami', + null, + array['Dragonfly (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["dragnfly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'dragoon-might', + 'Dragoon Might', + 'Konami', + 1995, + array['Dragoon Might (ver AAB)'], + array['Arcade'], + '{"mame":["dragoona"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'drakton', + 'Drakton', + 'Epos Corporation', + 1984, + array['Drakton (DK conversion)'], + array['Arcade'], + '{"mame":["drakton"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'dream-6800', + 'Dream 6800', + 'Michael Bauer', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["d6800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/d6800.cpp"]}'::jsonb + ), + ( + 'dream-9-v1-52', + 'Dream 9 (v1.52)', + 'Excellent System', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["dream9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/es8906.cpp"]}'::jsonb + ), + ( + 'dream-9-final-v2-24', + 'Dream 9 Final (v2.24)', + 'Excellent System', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["d9final"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/d9final.cpp"]}'::jsonb + ), + ( + 'dream-9-flower', + 'Dream 9 Flower', + 'Cadence Technology', + 1998, + array['Dream 9 Flower (v1.00c, set 1)'], + array['Arcade'], + '{"mame":["d9flower"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/es9501.cpp"]}'::jsonb + ), + ( + 'dream-ball', + 'Dream Ball', + 'NDK / Data East', + 1993, + array['Dream Ball (Japan V2.4)'], + array['Arcade'], + '{"mame":["dreambal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dreambal.cpp"]}'::jsonb + ), + ( + 'dream-chance', + 'Dream Chance', + 'Paradise', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["dreamcha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ps_m3.cpp"]}'::jsonb + ), + ( + 'dream-crown', + 'Dream Crown', + 'Nippon Data Kiki', + 1994, + array['Dream Crown (set 1)'], + array['Arcade'], + '{"mame":["dcrown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'dream-hunting', + 'Dream Hunting', + 'Game Box Entertainment', + 2002, + array['Dream Hunting (US)'], + array['Arcade'], + '{"mame":["dhunting"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/unianapc.cpp"]}'::jsonb + ), + ( + 'dream-maker-atronic', + 'Dream Maker (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["drmmake"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'dream-shopper', + 'Dream Shopper', + 'Sanritsu', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["dremshpr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'dream-soccer-94', + 'Dream Soccer ''94', + 'Irem (Data East Corporation license)', + 1994, + array['Dream Soccer ''94 (World, M107 hardware)'], + array['Sports'], + '{"mame":["dsoccr94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m107.cpp"]}'::jsonb + ), + ( + 'dream-world', + 'Dream World', + 'SemiCom', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["dreamwld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dreamwld.cpp"]}'::jsonb + ), + ( + 'dreamcast', + 'Dreamcast', + 'Sega', + 1998, + array['Dreamcast (Japan, NTSC)'], + array['Arcade'], + '{"mame":["dcjp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dccons.cpp"]}'::jsonb + ), + ( + 'dreamcast-arcade-stick-checker-v2-00', + 'Dreamcast Arcade Stick Checker (v2.00)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["dcacchk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dcchk.cpp"]}'::jsonb + ), + ( + 'dreamgear-101-in-1', + 'dreamGEAR 101 in 1', + 'dreamGEAR', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_dg101"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'dreamgear-75-in-1', + 'dreamGEAR 75-in-1', + 'dreamGEAR', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_dgear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'dreamgear-wireless-motion-control-with-130-games-dgun-2500', + 'dreamGEAR Wireless Motion Control with 130 games (DGUN-2500)', + 'dreamGEAR', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dgun2500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'drews-revenge', + 'Drews Revenge', + 'Drews Inc.', + 1986, + array['Drews Revenge (v.2.89, set 1)'], + array['Arcade'], + '{"mame":["drhl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'dribbling', + 'Dribbling', + 'Model Racing', + 1983, + array['Dribbling (set 1)'], + array['Arcade'], + '{"mame":["dribling"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["modelracing/dribling.cpp"]}'::jsonb + ), + ( + 'drift-out', + 'Drift Out', + 'Visco', + 1991, + array['Drift Out (Europe)'], + array['Arcade'], + '{"mame":["driftout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'drift-out-94-the-hard-order', + 'Drift Out ''94 - The Hard Order', + 'Visco', + 1994, + array['Drift Out ''94 - The Hard Order (Japan)'], + array['Arcade'], + '{"mame":["drifto94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'driver-s-edge-v1-6', + 'Driver''s Edge (v1.6)', + 'Strata / Incredible Technologies', + 1994, + '{}'::text[], + array['Racing'], + '{"mame":["drivedge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'driver-s-eyes', + 'Driver''s Eyes', + 'Namco', + 1992, + array['Driver''s Eyes (Japan) (1992/01/10, Main Ver 2.1, Sub Ver 1.1)'], + array['Racing'], + '{"mame":["driveyes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21_de.cpp"]}'::jsonb + ), + ( + 'driving-force', + 'Driving Force', + 'Shinkai Inc. (Magic Electronics Inc. license)', + 1984, + array['Driving Force (Pac-Man conversion)'], + array['Arcade'], + '{"mame":["drivfrcp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'driving-simulator', + 'Driving Simulator', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["sgdrvsim"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'drum-station', + 'Drum Station', + 'Novation', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["drumsta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novation/drumsta.cpp"]}'::jsonb + ), + ( + 'drummania-v-e02-a-a-a-2005050200', + 'DrumMania V (E02:A:A:A:2005050200)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["drmnva"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'drummania-v-e02-j-a-a-2005050200', + 'DrumMania V (E02:J:A:A:2005050200)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["drmnvj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'drummania-v2-f02-a-a-a-2006011201', + 'DrumMania V2 (F02:A:A:A:2006011201)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["drmnv2a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'drummania-v2-f02-j-a-a-2006011201', + 'DrumMania V2 (F02:J:A:A:2006011201)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["drmnv2j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'drummania-v3-f32-a-a-a-2006101800', + 'DrumMania V3 (F32:A:A:A:2006101800)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["drmnv3a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'drummania-v3-f32-j-a-a-2006101800', + 'DrumMania V3 (F32:J:A:A:2006101800)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["drmnv3j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'ds', + 'DS', + 'Nintendo', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["nds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nds.cpp"]}'::jsonb + ), + ( + 'ds-2000-ksr', + 'DS 2000 KSR', + 'HAL Communications Corp', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["ds2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ds2000.cpp"]}'::jsonb + ), + ( + 'ds-telejan', + 'DS Telejan', + 'Data East Corporation', + 1981, + array['DS Telejan (DECO Cassette) (Japan)'], + array['Arcade'], + '{"mame":["cdsteljn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'ds-5000-driving-simulator', + 'DS-5000 Driving Simulator', + 'Namco / Mitsubishi', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["ds5000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/ds5000.cpp"]}'::jsonb + ), + ( + 'ds-6000-driving-simulator', + 'DS-6000 Driving Simulator', + 'Namco / Mitsubishi', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ds6000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/ds6000.cpp"]}'::jsonb + ), + ( + 'ds-8-digital-synthesizer', + 'DS-8 Digital Synthesizer', + 'Korg', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["ds8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgds8.cpp"]}'::jsonb + ), + ( + 'dss-1-digital-sampling-synthesizer', + 'DSS-1 Digital Sampling Synthesizer', + 'Korg', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["dss1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgdss1.cpp"]}'::jsonb + ), + ( + 'dt7', + 'DT7', + 'Toaplan', + 1993, + array['DT7 (prototype)'], + array['Arcade'], + '{"mame":["dt7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/dt7.cpp"]}'::jsonb + ), + ( + 'dual-games', + 'Dual Games', + 'Labtronix Technologies', + 1995, + array['Dual Games (prototype)'], + array['Arcade'], + '{"mame":["dualgame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'duck-hunt-playchoice-10', + 'Duck Hunt (PlayChoice-10)', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_duckh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'duet-16', + 'Duet-16', + 'Panafacom (Panasonic/Fujitsu)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["duet16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["matsushita/duet16.cpp"]}'::jsonb + ), + ( + 'dungeons-and-dragons-shadow-over-mystara', + 'Dungeons & Dragons: Shadow over Mystara', + 'Capcom', + 1996, + array['Dungeons & Dragons: Shadow over Mystara (Europe 960619)'], + array['Beat em up'], + '{"mame":["ddsom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'dungeons-and-dragons-tower-of-doom', + 'Dungeons & Dragons: Tower of Doom', + 'Capcom', + 1993, + array['Dungeons & Dragons: Tower of Doom (Europe 940412)'], + array['Beat em up'], + '{"mame":["ddtod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'dunk-mania', + 'Dunk Mania', + 'Namco', + 1995, + array['Dunk Mania (World, DM2/VER.C)'], + array['Arcade'], + '{"mame":["dunkmnia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'dunk-shot', + 'Dunk Shot', + 'Sega', + 1987, + array['Dunk Shot (Rev C, FD1089A 317-0022)'], + array['Arcade'], + '{"mame":["dunkshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'dvd-select', + 'DVD Select', + 'Nichibutsu', + 2000, + array['DVD Select (Japan)'], + array['Arcade'], + '{"mame":["nichisel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'dvp-1-digital-voice-processor', + 'DVP-1 Digital Voice Processor', + 'Korg', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["dvp1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgdvp1.cpp"]}'::jsonb + ), + ( + 'dvtech-nimbus-176-in-1', + 'DVTech Nimbus 176 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dvnimbus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'dw-8000-programmable-digital-waveform-synthesizer', + 'DW-8000 Programmable Digital Waveform Synthesizer', + 'Korg', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["dw8000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgdw8k.cpp"]}'::jsonb + ), + ( + 'dx100-digital-programmable-algorithm-synthesizer', + 'DX100 Digital Programmable Algorithm Synthesizer', + 'Yamaha', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["dx100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymdx100.cpp"]}'::jsonb + ), + ( + 'dx11-digital-programmable-algorithm-synthesizer', + 'DX11 Digital Programmable Algorithm Synthesizer', + 'Yamaha', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["dx11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymdx11.cpp"]}'::jsonb + ), + ( + 'dx7-digital-programmable-algorithm-synthesizer', + 'DX7 Digital Programmable Algorithm Synthesizer', + 'Yamaha', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dx7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymdx7.cpp"]}'::jsonb + ), + ( + 'dx9-digital-programmable-algorithm-synthesizer', + 'DX9 Digital Programmable Algorithm Synthesizer', + 'Yamaha', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["dx9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymdx9.cpp"]}'::jsonb + ), + ( + 'dyger', + 'Dyger', + 'Philko', + 1989, + array['Dyger (Korea set 1)'], + array['Arcade'], + '{"mame":["dyger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/sidearms.cpp"]}'::jsonb + ), + ( + 'dyna-gear', + 'Dyna Gear', + 'Sammy', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["dynagear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'dynablaster-bomber-man', + 'Dynablaster / Bomber Man', + 'Irem (licensed from Hudson Soft)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["dynablst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m90.cpp"]}'::jsonb + ), + ( + 'dynamic-chance-type-3-0-part-1-2', + 'Dynamic Chance (Type-3.0 Part 1-2)', + '', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["dynchance"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'dynamic-country-club', + 'Dynamic Country Club', + 'Sega', + 1991, + array['Dynamic Country Club (World, ROM Based)'], + array['Arcade'], + '{"mame":["dcclub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'dynamic-dice', + 'Dynamic Dice', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dynadice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dynadice.cpp"]}'::jsonb + ), + ( + 'dynamic-shoot-kyousou', + 'Dynamic Shoot Kyousou', + 'Jaleco', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["dynashot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/homerun.cpp"]}'::jsonb + ), + ( + 'dynamic-ski', + 'Dynamic Ski', + 'Taiyo System (Nichibutsu license)', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dynamski"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/shangkid.cpp"]}'::jsonb + ), + ( + 'dynamite-baseball', + 'Dynamite Baseball', + 'Sega', + 1996, + '{}'::text[], + array['Sports'], + '{"mame":["dynabb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'dynamite-baseball-99', + 'Dynamite Baseball ''99', + 'Sega', + 1999, + array['Dynamite Baseball ''99 (Japan, Rev B)'], + array['Sports'], + '{"mame":["dybb99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'dynamite-baseball-97', + 'Dynamite Baseball 97', + 'Sega', + 1997, + array['Dynamite Baseball 97 (Revision A)'], + array['Sports'], + '{"mame":["dynabb97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'dynamite-baseball-naomi', + 'Dynamite Baseball NAOMI', + 'Sega', + 1998, + array['Dynamite Baseball NAOMI (Japan)'], + array['Sports'], + '{"mame":["dybbnao"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'dynamite-bomber', + 'Dynamite Bomber', + 'Limenko', + 2000, + array['Dynamite Bomber (Korea, Rev 1.5)'], + array['Arcade'], + '{"mame":["dynabomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/limenko.cpp"]}'::jsonb + ), + ( + 'dynamite-cop-export-model-2a', + 'Dynamite Cop (Export, Model 2A)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["dynamcop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'dynamite-duke', + 'Dynamite Duke', + 'Seibu Kaihatsu', + 1989, + array['Dynamite Duke (Europe, 03SEP89)'], + array['Arcade'], + '{"mame":["dynduke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/dynduke.cpp"]}'::jsonb + ), + ( + 'dynamite-dux-fd1094-317-0096', + 'Dynamite Dux (FD1094 317-0096)', + 'Sega', + 1988, + array['Dynamite Dux (set 3, World) (FD1094 317-0096)'], + array['Arcade'], + '{"mame":["ddux"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'dynamite-league', + 'Dynamite League', + 'Taito America Corporation', + 1990, + array['Dynamite League (US)'], + array['Arcade'], + '{"mame":["dleague"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_h.cpp"]}'::jsonb + ), + ( + 'dynasty-1992-v5-1g', + 'Dynasty (1992, V5.1G)', + 'Dyna', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["dynastye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'dynasty-wars', + 'Dynasty Wars', + 'Capcom', + 1989, + array['Dynasty Wars (USA, B-Board 89624B-?)'], + array['Arcade'], + '{"mame":["dynwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'e-jong-high-school', + 'E Jong High School', + 'Seibu Kaihatsu', + 1996, + array['E Jong High School (Japan)'], + array['Arcade'], + '{"mame":["ejanhs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'e-jan-sakurasou', + 'E-Jan Sakurasou', + 'Seibu Kaihatsu', + 1999, + array['E-Jan Sakurasou (Japan, SYS386F V2.0)'], + array['Arcade'], + '{"mame":["ejsakura"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'e-d-f-earth-defense-force', + 'E.D.F.: Earth Defense Force', + 'Jaleco', + 1991, + array['E.D.F.: Earth Defense Force (set 1)'], + array['Arcade'], + '{"mame":["edf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'ea-car-computer', + 'EA Car Computer', + 'Electronics Australia', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["eacc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/eacc.cpp"]}'::jsonb + ), + ( + 'eagle-shot-golf', + 'Eagle Shot Golf', + 'Sammy', + 1994, + array['Eagle Shot Golf (US)'], + array['Sports'], + '{"mame":["eaglshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'ec-65', + 'EC-65', + 'Elektor', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ec65"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektor/ec65.cpp"]}'::jsonb + ), + ( + 'ec-7915-ec-7950', + 'EC-7915 (EC-7950)', + 'Mera-Elzab', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ec7915"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mera/ec7915.cpp"]}'::jsonb + ), + ( + 'eco-fighters', + 'Eco Fighters', + 'Capcom', + 1993, + array['Eco Fighters (World 931203)'], + array['Arcade'], + '{"mame":["ecofghtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'eeekk', + 'Eeekk!', + 'Epos Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["eeekk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'egg-hunt', + 'Egg Hunt', + 'Invi Image', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["egghunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/egghunt.cpp"]}'::jsonb + ), + ( + 'egg-venture-release-10', + 'Egg Venture (Release 10)', + 'ICE / The Game Room', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["eggventr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/lethalj.cpp"]}'::jsonb + ), + ( + 'eggor', + 'Eggor', + 'Telko', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["eggor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'eggs-playing-chicken', + 'Eggs Playing Chicken', + 'The Game Room', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["eggsplc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/calchase.cpp"]}'::jsonb + ), + ( + 'ehrgeiz', + 'Ehrgeiz', + 'Square / Namco', + 1998, + array['Ehrgeiz (World, EG2/VER.A)'], + array['Arcade'], + '{"mame":["ehrgeiz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'eibise', + 'Eibise', + 'Taito', + 1990, + array['Eibise (Japan)'], + array['Arcade'], + '{"mame":["eibise"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_o.cpp"]}'::jsonb + ), + ( + 'eight-ball-action', + 'Eight Ball Action', + 'Seatongrove UK, Ltd. (Magic Electronics USA license)', + 1984, + array['Eight Ball Action (DK conversion)'], + array['Arcade'], + '{"mame":["8ballact"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'eight-forces', + 'Eight Forces', + 'Tecmo', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["eightfrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'eight-man-ngm-025-ngh-025', + 'Eight Man (NGM-025 ~ NGH-025)', + 'SNK / Pallas', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["eightman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'einstein-256', + 'Einstein 256', + 'Tatung', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["einst256"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatung/einstein.cpp"]}'::jsonb + ), + ( + 'einstein-tc-01', + 'Einstein TC-01', + 'Tatung', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["einstein"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatung/einstein.cpp"]}'::jsonb + ), + ( + 'ejihon-tantei-jimusho-j-950613-v1-000', + 'Ejihon Tantei Jimusho (J 950613 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["ejihon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'el-dorado-v5-1dr', + 'El Dorado (V5.1DR)', + 'Dyna', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["eldoradd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'el-fin-del-tiempo', + 'El Fin Del Tiempo', + 'Niemer', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["efdt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/efdt.cpp"]}'::jsonb + ), + ( + 'el-grande-5-card-draw-new', + 'El Grande - 5 Card Draw (New)', + 'Tuni Electro Service', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["elgrande"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/calomega.cpp"]}'::jsonb + ), + ( + 'eldorado-4-2', + 'Eldorado (4.2)', + 'Shangai Games', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["eldoralg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'eldorado-chess-challenger', + 'Eldorado Chess Challenger', + 'Fidelity Electronics International / CXG Systems', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["feldo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/eldorado.cpp"]}'::jsonb + ), + ( + 'electronic-chess-tryom', + 'Electronic Chess (Tryom)', + 'Tryom', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["tchess"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tryom/chess.cpp"]}'::jsonb + ), + ( + 'electronic-milton', + 'Electronic Milton', + 'Milton Bradley', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["milton"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["miltonbradley/milton6805.cpp"]}'::jsonb + ), + ( + 'electronic-tool-pi-et1', + 'Electronic Tool PI-ET1', + 'NEC', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["piet1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/piet1.cpp"]}'::jsonb + ), + ( + 'electronic-voice-alert-24-function', + 'Electronic Voice Alert (24-function)', + 'Chrysler', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["eva24"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/eva.cpp"]}'::jsonb + ), + ( + 'elegance-chess-challenger-model-6085', + 'Elegance Chess Challenger (model 6085)', + 'Fidelity International', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["feleg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/elegance.cpp"]}'::jsonb + ), + ( + 'elektor-sc-mp', + 'Elektor SC/MP', + 'Elektor', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["elekscmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektor/elekscmp.cpp"]}'::jsonb + ), + ( + 'elephant-family-italian-new', + 'Elephant Family (Italian, new)', + 'C.M.C.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["elephfam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'elevator-action', + 'Elevator Action', + 'Taito Corporation', + 1983, + array['Elevator Action (BA3, 4 PCB version, 1.1)'], + array['Arcade'], + '{"mame":["elevator"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'elevator-action-returns', + 'Elevator Action Returns', + 'Taito Corporation Japan', + 1994, + array['Elevator Action Returns (Ver 2.2O 1995/02/20)'], + array['Arcade'], + '{"mame":["elvactr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'eleven-beat', + 'Eleven Beat', + 'Hudson', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["11beat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'elf-ii', + 'Elf II', + 'Netronics', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["elf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["netronics/elf.cpp"]}'::jsonb + ), + ( + 'elfin', + 'Elfin', + 'dgPIX Entertainment Inc.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["elfin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'eliminator', + 'Eliminator', + 'Gremlin', + 1981, + array['Eliminator (2 Players, set 1)'], + array['Arcade'], + '{"mame":["elim2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80v.cpp"]}'::jsonb + ), + ( + 'elite-a-s-challenger-original-program', + 'Elite A/S Challenger (original program)', + 'Fidelity Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["feas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/elite.cpp"]}'::jsonb + ), + ( + 'elite-avant-garde-model-6081', + 'Elite Avant Garde (model 6081)', + 'Fidelity International', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["feag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/elite.cpp"]}'::jsonb + ), + ( + 'elite-avant-garde-2265', + 'Elite Avant Garde 2265', + 'Fidelity International', + 1989, + array['Elite Avant Garde 2265 (model 6114-2/3/4, set 1)'], + array['Arcade'], + '{"mame":["feagv4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/eag68k.cpp"]}'::jsonb + ), + ( + 'elite-champion-challenger', + 'Elite Champion Challenger', + 'Fidelity Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["csce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/csc.cpp"]}'::jsonb + ), + ( + 'elite-premiere', + 'Elite Premiere', + 'Fidelity Electronics International', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["premiere"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/eag68k.cpp"]}'::jsonb + ), + ( + 'elvis', + 'Elvis?', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["elvis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'emax-ii-16-bit-digital-sound-system', + 'Emax II 16-Bit Digital Sound System', + 'E-mu Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["emax2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emax.cpp"]}'::jsonb + ), + ( + 'embargo', + 'Embargo', + 'Cinematronics', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["embargo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/embargo.cpp"]}'::jsonb + ), + ( + 'emerald-classic-plus', + 'Emerald Classic Plus', + 'Novag Industries / Intelligent Heuristic Programming', + 1997, + '{}'::text[], + array['Classic'], + '{"mame":["emerclp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/emerclp.cpp"]}'::jsonb + ), + ( + 'emeraldia', + 'Emeraldia', + 'Namco', + 1993, + array['Emeraldia (World)'], + array['Arcade'], + '{"mame":["emeralda"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'emergency-call-ambulance-export', + 'Emergency Call Ambulance (Export)', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["eca"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'empire-city-1931', + 'Empire City: 1931', + 'Seibu Kaihatsu', + 1986, + array['Empire City: 1931 (bootleg?)'], + array['Arcade'], + '{"mame":["empcity"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/stfight.cpp"]}'::jsonb + ), + ( + 'emulator-ii', + 'Emulator II', + 'E-mu Systems', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["emu2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu2.cpp"]}'::jsonb + ), + ( + 'emulator-three-digital-sound-production-system', + 'Emulator Three Digital Sound Production System', + 'E-mu Systems', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["emu3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu3.cpp"]}'::jsonb + ), + ( + 'enchanted-lamp', + 'Enchanted Lamp', + 'Konami', + null, + array['Enchanted Lamp (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["enchlamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'endless-riches', + 'Endless Riches', + 'E.N.Tiger', + 1999, + array['Endless Riches (Ver 1.21)'], + array['Arcade'], + '{"mame":["endrichs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'endura-ts-28', + 'Endura TS-28', + 'Falco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ts28"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["falco/falcots28.cpp"]}'::jsonb + ), + ( + 'enduro-racer', + 'Enduro Racer', + 'Sega', + 1986, + array['Enduro Racer (Rev A, YM2151, FD1089B 317-0013A)'], + array['Arcade'], + '{"mame":["enduror"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segahang.cpp"]}'::jsonb + ), + ( + 'enforce', + 'Enforce', + 'Taito Corporation Japan', + 1988, + array['Enforce (World)'], + array['Arcade'], + '{"mame":["enforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'enigma-ii', + 'Enigma II', + 'Zilec Electronics (Game Plan license)', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["enigma2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/enigma2.cpp"]}'::jsonb + ), + ( + 'enma-daio', + 'Enma Daio', + 'Toaplan / Taito', + 1993, + array['Enma Daio (Japan)'], + array['Arcade'], + '{"mame":["enmadaio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/enmadaio.cpp"]}'::jsonb + ), + ( + 'enterprise-250', + 'Enterprise 250', + 'Sun Microsystems', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["e250"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/e250.cpp"]}'::jsonb + ), + ( + 'enterprise-sixty-four', + 'Enterprise Sixty Four', + 'Intelligent Software / Enterprise Computers', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ep64"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["enterprise/ep64.cpp"]}'::jsonb + ), + ( + 'eps', + 'EPS', + 'Ensoniq', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["eps"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq5505.cpp"]}'::jsonb + ), + ( + 'epson-hx-20', + 'Epson HX-20', + 'Epson', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ehx20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["epson/hx20.cpp"]}'::jsonb + ), + ( + 'equites', + 'Equites', + 'Alpha Denshi Co.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["equites"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/equites.cpp"]}'::jsonb + ), + ( + 'ergo-201-special-9233', + 'ERGO 201 (Special #9233)', + 'Micro-Term / Kurzweil Computer Products', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ergo201"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microterm/ergo201.cpp"]}'::jsonb + ), + ( + 'ericsson-pc', + 'Ericsson PC', + 'Ericsson Information System', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["epc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ericsson/eispc.cpp"]}'::jsonb + ), + ( + 'es-210', + 'ES-210', + 'Walther', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["wales210"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nakajima/nakajies.cpp"]}'::jsonb + ), + ( + 'escape-from-the-planet-of-the-robot-monsters', + 'Escape from the Planet of the Robot Monsters', + 'Atari Games', + 1989, + array['Escape from the Planet of the Robot Monsters (set 1)'], + array['Arcade'], + '{"mame":["eprom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/eprom.cpp"]}'::jsonb + ), + ( + 'escape-kids', + 'Escape Kids', + 'Konami', + 1991, + array['Escape Kids (Asia, 4 Players)'], + array['Arcade'], + '{"mame":["esckids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/vendetta.cpp"]}'::jsonb + ), + ( + 'esh-s-aurunmilla', + 'Esh''s Aurunmilla', + 'Funai/Gakken', + 1983, + array['Esh''s Aurunmilla (set 1)'], + array['Arcade'], + '{"mame":["esh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esh.cpp"]}'::jsonb + ), + ( + 'esp-ra-de', + 'ESP Ra.De.', + 'Cave (Atlus license)', + 1998, + array['ESP Ra.De. (World, 1998 4/22 International Ver.)'], + array['Arcade'], + '{"mame":["esprade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'espgaluda', + 'Espgaluda', + 'Cave (AMI license)', + 2003, + array['Espgaluda (2003/10/15 Master Ver)'], + array['Arcade'], + '{"mame":["espgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'espgaluda-ii', + 'Espgaluda II', + 'Cave (AMI license)', + 2005, + array['Espgaluda II (Japan, 2005/11/14.MASTER VER.)'], + array['Arcade'], + '{"mame":["espgal2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'espial', + 'Espial', + 'Orca / Thunderbolt', + 1983, + array['Espial (Europe)'], + array['Arcade'], + '{"mame":["espial"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/espial.cpp"]}'::jsonb + ), + ( + 'esq-1-digital-wave-synthesizer', + 'ESQ-1 Digital Wave Synthesizer', + 'Ensoniq', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["esq1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq1.cpp"]}'::jsonb + ), + ( + 'eti-660-learners-microcomputer', + 'ETI-660 Learners'' Microcomputer', + 'Electronics Today International', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["eti660"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/eti660.cpp"]}'::jsonb + ), + ( + 'euro-champ-92', + 'Euro Champ ''92', + 'Taito Corporation Japan', + 1992, + array['Euro Champ ''92 (World)'], + array['Arcade'], + '{"mame":["euroch92"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'euro-double-star-record', + 'Euro Double Star Record', + '', + null, + array['Euro Double Star Record (ver.1.2)'], + array['Arcade'], + '{"mame":["eurodsr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'euro-jolly-x5', + 'Euro Jolly X5', + 'Solar Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ejollyx5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl3.cpp"]}'::jsonb + ), + ( + 'euro-jolly-x9', + 'Euro Jolly X9', + 'Solar Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ejollyx9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl3.cpp"]}'::jsonb + ), + ( + 'euro-pass', + 'Euro Pass', + '', + null, + array['Euro Pass (Ver 1.1)'], + array['Arcade'], + '{"mame":["europass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'europa-2002', + 'Europa 2002', + 'Nazionale Elettronica', + 2001, + array['Europa 2002 (Ver 2.0, set 1)'], + array['Arcade'], + '{"mame":["euro2k2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'europlay-2001', + 'EuroPlay 2001', + 'Sleic / Petaco', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["europl01"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/startouch.cpp"]}'::jsonb + ), + ( + 'evil-night', + 'Evil Night', + 'Konami', + 1998, + array['Evil Night (ver UBA)'], + array['Arcade'], + '{"mame":["evilngt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamim2.cpp"]}'::jsonb + ), + ( + 'evil-stone', + 'Evil Stone', + 'Spacy Industrial, Ltd.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["evilston"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'evolution-soccer', + 'Evolution Soccer', + 'Evoga / BrezzaSoft', + 2001, + '{}'::text[], + array['Sports'], + '{"mame":["evosocc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'ews4800-310', + 'EWS4800/310', + 'NEC', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ews4800_310"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/ews4800.cpp"]}'::jsonb + ), + ( + 'excalibur-64', + 'Excalibur 64', + 'BGR Computers', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["excali64"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/excali64.cpp"]}'::jsonb + ), + ( + 'excel-68000', + 'Excel 68000', + 'Fidelity International', + 1987, + array['Excel 68000 (set 1)'], + array['Arcade'], + '{"mame":["fex68k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/eag68k.cpp"]}'::jsonb + ), + ( + 'excelsior', + 'Excelsior', + 'Playmark', + 1996, + array['Excelsior (set 1)'], + array['Arcade'], + '{"mame":["excelsr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/playmark.cpp"]}'::jsonb + ), + ( + 'excite-league-fd1094-317-0079', + 'Excite League (FD1094 317-0079)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["exctleag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'excite-sports-wireless-interactive-tv-game-48-in-1-ntsc', + 'Excite Sports Wireless Interactive TV Game - 48-in-1 (NTSC)', + 'Excite', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["exsprt48"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'excitebike-playchoice-10', + 'Excitebike (PlayChoice-10)', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_ebike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'exciting-animal-land-jr', + 'Exciting Animal Land Jr.', + 'Nakanihon / East Technology (Taito license)', + 1993, + array['Exciting Animal Land Jr. (USA, Canada, Mexico)'], + array['Arcade'], + '{"mame":["animaljr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'exciting-black-jack', + 'Exciting Black Jack', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["excitbj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky74.cpp"]}'::jsonb + ), + ( + 'exciting-soccer', + 'Exciting Soccer', + 'Alpha Denshi Co.', + 1983, + '{}'::text[], + array['Sports'], + '{"mame":["exctsccr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/champbas.cpp"]}'::jsonb + ), + ( + 'exciting-soccer-ii', + 'Exciting Soccer II', + 'Alpha Denshi Co.', + 1984, + '{}'::text[], + array['Sports'], + '{"mame":["exctscc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/champbas.cpp"]}'::jsonb + ), + ( + 'executive', + 'Executive', + 'Osborne', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["osbexec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["osborne/osbexec.cpp"]}'::jsonb + ), + ( + 'exed-exes', + 'Exed Exes', + 'Capcom', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["exedexes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/exedexes.cpp"]}'::jsonb + ), + ( + 'exerion', + 'Exerion', + 'Jaleco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["exerion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/exerion.cpp"]}'::jsonb + ), + ( + 'exorterm-155', + 'EXORterm 155', + 'Motorola', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["exorterm155"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/exorterm.cpp"]}'::jsonb + ), + ( + 'explorer', + 'Explorer', + 'Data East Corporation', + 1982, + array['Explorer (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cexplore"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'explorer-85', + 'Explorer/85', + 'Netronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["exp85"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["netronics/exp85.cpp"]}'::jsonb + ), + ( + 'explosive-breaker', + 'Explosive Breaker', + 'Kaneko', + 1992, + array['Explosive Breaker (World)'], + array['Arcade'], + '{"mame":["explbrkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'express-card-top-card', + 'Express Card / Top Card', + 'Subsino (American Alpha license)', + 1998, + array['Express Card / Top Card (Ver. 1.5)'], + array['Arcade'], + '{"mame":["expcard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'express-raider', + 'Express Raider', + 'Data East Corporation', + 1986, + array['Express Raider (World, Rev 4)'], + array['Arcade'], + '{"mame":["exprraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/exprraid.cpp"]}'::jsonb + ), + ( + 'extermination', + 'Extermination', + 'Taito Corporation Japan', + 1987, + array['Extermination (World)'], + array['Arcade'], + '{"mame":["extrmatn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'exterminator', + 'Exterminator', + 'Premier Technology', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["exterm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/exterm.cpp"]}'::jsonb + ), + ( + 'extra-bases', + 'Extra Bases', + 'Dave Nutting Associates / Midway', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ebases"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'extra-draw-v100ve', + 'Extra Draw (V100VE)', + 'IGS', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["extradrw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'extra-inning-ball-park-ii', + 'Extra Inning / Ball Park II', + 'Midway / Taito', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["einning"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'extreme-downhill-v1-5', + 'Extreme Downhill (v1.5)', + 'Sammy Industries Japan', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["extdwnhl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'extreme-hunting', + 'Extreme Hunting', + 'Sammy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["xtrmhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'extreme-hunting-2', + 'Extreme Hunting 2', + 'Sega', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["xtrmhnt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'exvania', + 'Exvania', + 'Namco', + 1992, + array['Exvania (World)'], + array['Arcade'], + '{"mame":["exvania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'exzisus', + 'Exzisus', + 'Taito Corporation', + 1987, + array['Exzisus (Japan, dedicated)'], + array['Arcade'], + '{"mame":["exzisus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/exzisus.cpp"]}'::jsonb + ), + ( + 'exzisus-ex-1-0-magnet-system', + 'Exzisus (EX 1.0, Magnet System)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_exzi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'eyes', + 'Eyes', + 'Techstar (Rock-Ola license)', + 1982, + array['Eyes (US, set 1)'], + array['Arcade'], + '{"mame":["eyes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'ez-touch', + 'EZ Touch', + 'IGS', + null, + array['EZ Touch (v116 China)'], + array['Arcade'], + '{"mame":["eztouch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspc.cpp"]}'::jsonb + ), + ( + 'ez2dancer-2nd-move', + 'Ez2dancer 2nd Move', + 'Amuse World', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ez2d2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ez2d.cpp"]}'::jsonb + ), + ( + 'f-1-dream', + 'F-1 Dream', + 'Capcom (Romstar license)', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["f1dream"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/tigeroad.cpp"]}'::jsonb + ), + ( + 'f-1-grand-prix', + 'F-1 Grand Prix', + 'Video System Co.', + 1991, + array['F-1 Grand Prix (set 1)'], + array['Arcade'], + '{"mame":["f1gp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/f1gp.cpp"]}'::jsonb + ), + ( + 'f-1-grand-prix-part-ii', + 'F-1 Grand Prix Part II', + 'Video System Co.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["f1gp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/f1gp.cpp"]}'::jsonb + ), + ( + 'f-1-grand-prix-star-ii', + 'F-1 Grand Prix Star II', + 'Jaleco', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["f1gpstr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'f-1-super-battle', + 'F-1 Super Battle', + 'Jaleco', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["f1superb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'f-15-strike-eagle', + 'F-15 Strike Eagle', + 'Microprose Games Inc.', + 1991, + array['F-15 Strike Eagle (rev. 2.2 02/25/91, 29K ver. 3.1f)'], + array['Arcade'], + '{"mame":["f15se"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/micro3d.cpp"]}'::jsonb + ), + ( + 'f-zero-nintendo-super-system', + 'F-Zero (Nintendo Super System)', + 'Nintendo', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_fzer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'f-zero-ax-gdt-0004e', + 'F-Zero AX (GDT-0004E)', + 'Sega / Amusement Vision / Nintendo', + 2003, + array['F-Zero AX (Rev E) (GDT-0004E)'], + array['Arcade'], + '{"mame":["fzeroax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'f-zero-ax-monster-ride', + 'F-Zero AX Monster Ride', + 'Sega / Amusement Vision / Nintendo', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["fzeroaxm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'f1-exhaust-note', + 'F1 Exhaust Note', + 'Sega', + 1991, + array['F1 Exhaust Note (World, Rev A)'], + array['Arcade'], + '{"mame":["f1en"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'f1-super-lap', + 'F1 Super Lap', + 'Sega', + 1993, + array['F1 Super Lap (World)'], + array['Arcade'], + '{"mame":["f1lap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'f387x-pep-system', + 'F387X PEP System', + 'Fairchild Instrument & Camera Corporation', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["f387x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fairchild/f387x.cpp"]}'::jsonb + ), + ( + 'f5-handheld-game-console-620-in-1', + 'F5 Handheld Game Console (620-in-1)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["f5_620"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'face-off', + 'Face Off', + 'Namco', + 1988, + array['Face Off (Japan 2 Players)'], + array['Arcade'], + '{"mame":["faceoff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'fail-gate', + 'Fail Gate', + 'Success (Seibu Kaihatsu license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["failgate"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/airraid.cpp"]}'::jsonb + ), + ( + 'falco-5220e', + 'Falco 5220e', + 'Falco Data Products', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["falco5220e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["falco/falco500.cpp"]}'::jsonb + ), + ( + 'falcon030', + 'Falcon030', + 'Atari', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["falcon30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarist.cpp"]}'::jsonb + ), + ( + 'falcons-wild-wild-card-1991-tvg', + 'Falcons Wild - Wild Card 1991 (TVG)', + 'TVG', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["falcnwld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'famicombox', + 'FamicomBox', + 'Nintendo', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["famibox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/famibox.cpp"]}'::jsonb + ), + ( + 'family-bowl', + 'Family Bowl', + 'Namco', + 1997, + array['Family Bowl (Japan, FB1/VER.A V1.00)'], + array['Arcade'], + '{"mame":["fambowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'family-pocket-638-in-1', + 'Family Pocket 638 in 1', + '', + 2017, + '{}'::text[], + array['Arcade'], + '{"mame":["fapocket"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'fancy-world-earth-of-crisis', + 'Fancy World - Earth of Crisis', + 'Unico', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["fncywld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'fantasia', + 'Fantasia', + 'Comad & New Japan System', + 1994, + array['Fantasia (940429 PCB, set 1)'], + array['Arcade'], + '{"mame":["fantasia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'fantasia-ii-explicit', + 'Fantasia II (Explicit)', + 'Comad', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["fantsia2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'fantastic', + 'Fantastic', + 'Taito do Brasil', + null, + array['Fantastic (Galaga conversion on Galaxian hardware)'], + array['Arcade'], + '{"mame":["fantastc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'fantastic-journey', + 'Fantastic Journey', + 'Konami', + 1994, + array['Fantastic Journey (ver EAA)'], + array['Arcade'], + '{"mame":["fantjour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'fantasy', + 'Fantasy', + 'SNK (Rock-Ola license)', + 1981, + array['Fantasy (US)'], + array['Arcade'], + '{"mame":["fantasyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk6502.cpp"]}'::jsonb + ), + ( + 'fantasy-land', + 'Fantasy Land', + 'Electronic Devices Italy', + null, + array['Fantasy Land (set 1)'], + array['Arcade'], + '{"mame":["fantland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/fantland.cpp"]}'::jsonb + ), + ( + 'fantasy-story', + 'Fantasy Story', + 'Z Soft', + 2002, + array['Fantasy Story (set 1)'], + array['Arcade'], + '{"mame":["fantstry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'fantasy-zone', + 'Fantasy Zone', + 'Sega', + 1986, + array['Fantasy Zone (Rev A, unprotected)'], + array['Arcade'], + '{"mame":["fantzone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'fantasy-zone-j-990202-v1-000', + 'Fantasy Zone (J 990202 V1.000)', + 'Sega', + 1999, + array['Fantasy Zone (medal game, REV.A) (J 990202 V1.000)'], + array['Arcade'], + '{"mame":["fanzonem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'fantasy-zone-mega-tech-sms-based', + 'Fantasy Zone (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_fz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'fantasy-zone-ii-the-tears-of-opa-opa', + 'Fantasy Zone II - The Tears of Opa-Opa', + 'Sega / M2', + 2008, + array['Fantasy Zone II - The Tears of Opa-Opa (System 16C version)'], + array['Arcade'], + '{"mame":["fantzn2x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'fantasy-zone-ii-the-tears-of-opa-opa-mc-8123-317-0057', + 'Fantasy Zone II - The Tears of Opa-Opa (MC-8123, 317-0057)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["fantzn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'far-east-of-eden-kabuki-klash-tengai-makyou-shin-den', + 'Far East of Eden - Kabuki Klash / Tengai Makyou - Shin Den', + 'Hudson', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["kabukikl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'fashion-gambler', + 'Fashion Gambler', + 'ADP', + 1997, + array['Fashion Gambler (set 1)'], + array['Arcade'], + '{"mame":["fashiong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/adp.cpp"]}'::jsonb + ), + ( + 'fast-draw', + 'Fast Draw', + 'Stern Electronics', + null, + array['Fast Draw (poker conversion kit)'], + array['Arcade'], + '{"mame":["fastdrwp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'fast-draw-showdown-v1-31', + 'Fast Draw Showdown (v1.31)', + 'American Laser Games', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["fastdraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'fast-invaders', + 'Fast Invaders', + 'Fiberglass', + 1979, + array['Fast Invaders (6845 version)'], + array['Arcade'], + '{"mame":["fi6845"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/fastinvaders.cpp"]}'::jsonb + ), + ( + 'fast-lane', + 'Fast Lane', + 'Konami', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["fastlane"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/fastlane.cpp"]}'::jsonb + ), + ( + 'faster-than-speed', + 'Faster Than Speed', + 'Sammy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["ftspeed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'faster-harder-more-challenging-q-bert', + 'Faster, Harder, More Challenging Q*bert', + 'Mylstar', + 1983, + array['Faster, Harder, More Challenging Q*bert (prototype)'], + array['Puzzle', 'Classic'], + '{"mame":["sqbert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'fatal-fury-king-of-fighters-garou-densetsu-shukumei-no-tatakai-ngm-033-ngh-033', + 'Fatal Fury - King of Fighters / Garou Densetsu - Shukumei no Tatakai (NGM-033 ~ NGH-033)', + 'SNK', + 1991, + '{}'::text[], + array['Fighting'], + '{"mame":["fatfury1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'fatal-fury-2-garou-densetsu-2-arata-naru-tatakai-ngm-047-ngh-047', + 'Fatal Fury 2 / Garou Densetsu 2 - Arata-naru Tatakai (NGM-047 ~ NGH-047)', + 'SNK', + 1992, + '{}'::text[], + array['Fighting'], + '{"mame":["fatfury2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'fatal-fury-3-road-to-the-final-victory-garou-densetsu-3-haruka-naru-tatakai-ngm-069-ngh-06', + 'Fatal Fury 3 - Road to the Final Victory / Garou Densetsu 3 - Haruka-naru Tatakai (NGM-069 ~ NGH-069)', + 'SNK', + 1995, + '{}'::text[], + array['Fighting'], + '{"mame":["fatfury3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'fatal-fury-special', + 'Fatal Fury Special', + 'bootleg', + null, + array['Fatal Fury Special (SNES bootleg with timer)'], + array['Fighting'], + '{"mame":["fatfurspb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb51.cpp"]}'::jsonb + ), + ( + 'fatal-fury-special-garou-densetsu-special', + 'Fatal Fury Special / Garou Densetsu Special', + 'SNK', + 1993, + array['Fatal Fury Special / Garou Densetsu Special (NGM-058 ~ NGH-058, set 1)'], + array['Fighting'], + '{"mame":["fatfursp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'fatal-fury-wild-ambition-garou-densetsu-wild-ambition', + 'Fatal Fury: Wild Ambition / Garou Densetsu: Wild Ambition', + 'SNK', + 1998, + array['Fatal Fury: Wild Ambition / Garou Densetsu: Wild Ambition (rev.A)'], + array['Fighting'], + '{"mame":["fatfurwa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'fate-unlimited-codes', + 'Fate: Unlimited Codes', + 'Capcom / Namco', + 2008, + array['Fate: Unlimited Codes (FUD1 ver. A)'], + array['Arcade'], + '{"mame":["fateulc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'fatman', + 'FatMan', + 'PAiA Electronics', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["fatman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["paia/fatman.cpp"]}'::jsonb + ), + ( + 'fax', + 'FAX', + 'Exidy', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["fax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'fb-01-fm-sound-generator', + 'FB-01 FM Sound Generator', + 'Yamaha', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["fb01"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/fb01.cpp"]}'::jsonb + ), + ( + 'fc-compact-88-in-1-cc-sffc-wt', + 'FC Compact 88-in-1 (CC-SFFC-WT)', + 'Columbus Circle', + null, + array['FC Compact 88-in-1 (CC-SFFC-WT) (Japan)'], + array['Arcade'], + '{"mame":["fccomp88"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'fc-pocket-600-in-1', + 'FC Pocket 600 in 1', + '', + 2016, + '{}'::text[], + array['Arcade'], + '{"mame":["fcpocket"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'fearless-pinocchio', + 'Fearless Pinocchio', + 'IGS (American Alpha license)', + 2006, + array['Fearless Pinocchio (V101US)'], + array['Arcade'], + '{"mame":["fearless"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_fear.cpp"]}'::jsonb + ), + ( + 'fengdou-jiaqiang-ban', + 'Fengdou Jiaqiang Ban', + 'Sealy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["fdjqb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_m16c.cpp"]}'::jsonb + ), + ( + 'fengkuang-dou-dizhu', + 'Fengkuang Dou Dizhu', + 'Sealy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["fkddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_m16c.cpp"]}'::jsonb + ), + ( + 'fengkuang-dou-dizhu-ii', + 'Fengkuang Dou Dizhu II', + 'Sealy', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["fkddz2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/menghong.cpp"]}'::jsonb + ), + ( + 'fengyun-hui', + 'Fengyun Hui', + 'BMC', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["fengyunh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/bmcpokr.cpp"]}'::jsonb + ), + ( + 'ferie-kitten', + 'Ferie Kitten', + 'Sega', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["ferieki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_ferie.cpp"]}'::jsonb + ), + ( + 'ferie-puppy', + 'Ferie Puppy', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["feriepu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_ferie.cpp"]}'::jsonb + ), + ( + 'ferie-world-travel', + 'Ferie World Travel', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["feriewt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_ferie.cpp"]}'::jsonb + ), + ( + 'ferrari-f355-challenge-deluxe-no-link', + 'Ferrari F355 Challenge (deluxe, no link)', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["f355"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'ferrari-f355-challenge-twin-deluxe', + 'Ferrari F355 Challenge (twin/deluxe)', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["f355twin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'ferrari-f355-challenge-2-international-course-edition-twin-deluxe', + 'Ferrari F355 Challenge 2 - International Course Edition (twin/deluxe)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["f355twn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'festival-goldfish-scoop', + 'Festival: Goldfish Scoop', + 'Cave', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["fstgfish"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/fstgfish.cpp"]}'::jsonb + ), + ( + 'fever-13', + 'Fever 13', + 'Excellent System', + 1995, + array['Fever 13 (Japan, v1.3)'], + array['Arcade'], + '{"mame":["fever13"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'fever-chance', + 'Fever Chance', + 'Wing Co., Ltd.', + 1986, + array['Fever Chance (W-6, Japan, set 1)'], + array['Arcade'], + '{"mame":["feverch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'fever-soccer', + 'Fever Soccer', + 'Seibu Kaihatsu', + 2004, + '{}'::text[], + array['Sports'], + '{"mame":["feversoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/feversoc.cpp"]}'::jsonb + ), + ( + 'fever-sos', + 'Fever SOS', + 'Cave (Nihon System license)', + 1998, + array['Fever SOS (World, 98/09/25 VER)'], + array['Arcade'], + '{"mame":["feversos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'field-combat', + 'Field Combat', + 'Jaleco', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["fcombat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/fcombat.cpp"]}'::jsonb + ), + ( + 'field-day', + 'Field Day', + 'Taito Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["fieldday"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/40love.cpp"]}'::jsonb + ), + ( + 'field-goal', + 'Field Goal', + 'Taito', + 1979, + array['Field Goal (set 1)'], + array['Arcade'], + '{"mame":["fgoal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/fgoal.cpp"]}'::jsonb + ), + ( + 'fight-fever-wang-jung-wang', + 'Fight Fever / Wang Jung Wang', + 'Viccom', + 1994, + array['Fight Fever / Wang Jung Wang (set 1)'], + array['Arcade'], + '{"mame":["fightfev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'fighter-and-attacker', + 'Fighter & Attacker', + 'Namco', + 1992, + array['Fighter & Attacker (US)'], + array['Arcade'], + '{"mame":["fghtatck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'fighter-s-history', + 'Fighter''s History', + 'Data East Corporation', + 1993, + array['Fighter''s History (World ver 43-09, DE-0395-1 PCB)'], + array['Arcade'], + '{"mame":["fghthist"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco32.cpp"]}'::jsonb + ), + ( + 'fighting-basketball', + 'Fighting Basketball', + 'Paradise Co. Ltd.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["fghtbskt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m63.cpp"]}'::jsonb + ), + ( + 'fighting-hawk', + 'Fighting Hawk', + 'Taito Corporation Japan', + 1988, + array['Fighting Hawk (World)'], + array['Arcade'], + '{"mame":["fhawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'fighting-ice-hockey', + 'Fighting Ice Hockey', + 'Data East Corporation', + 1984, + array['Fighting Ice Hockey (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cfghtice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'fighting-layer', + 'Fighting Layer', + 'Arika / Namco', + 1998, + array['Fighting Layer (Asia, FTL3/VER.A)'], + array['Arcade'], + '{"mame":["fgtlayer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'fighting-mania', + 'Fighting Mania', + 'Konami', + 2000, + array['Fighting Mania (QG918 VER. EAA)'], + array['Arcade'], + '{"mame":["fghtmn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'fighting-roller', + 'Fighting Roller', + 'Kaneko (Taito license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["fightrol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/rollrace.cpp"]}'::jsonb + ), + ( + 'fighting-soccer', + 'Fighting Soccer', + 'SNK', + 1988, + array['Fighting Soccer (version 4)'], + array['Sports'], + '{"mame":["fsoccer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'fighting-vipers', + 'Fighting Vipers', + 'Sega', + 1995, + array['Fighting Vipers (Revision D)'], + array['Arcade'], + '{"mame":["fvipers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'fighting-vipers-2', + 'Fighting Vipers 2', + 'Sega', + 1998, + array['Fighting Vipers 2 (Revision A)'], + array['Arcade'], + '{"mame":["fvipers2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'fighting-wu-shu-2nd', + 'Fighting Wu-Shu 2nd!', + 'Konami', + 1997, + array['Fighting Wu-Shu 2nd! (ver JAA)'], + array['Arcade'], + '{"mame":["bujutsu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/cobra.cpp"]}'::jsonb + ), + ( + 'filthy-rich-english', + 'Filthy Rich (English)', + 'WMS', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["filthyr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'final-blow', + 'Final Blow', + 'Taito Corporation Japan', + 1988, + array['Final Blow (World)'], + array['Arcade'], + '{"mame":["finalb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'final-fight', + 'Final Fight', + 'Capcom', + 1989, + array['Final Fight (World, set 1)'], + array['Beat em up'], + '{"mame":["ffight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'final-fight-2', + 'Final Fight 2', + 'bootleg', + 1996, + array['Final Fight 2 (SNES bootleg)'], + array['Beat em up'], + '{"mame":["ffight2b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'final-fight-3', + 'Final Fight 3', + 'bootleg', + null, + array['Final Fight 3 (SNES bootleg, set 1)'], + array['Beat em up'], + '{"mame":["ffight3b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'final-fight-revenge-final-revenge-juet-990930-v1-100', + 'Final Fight Revenge / Final Revenge (JUET 990930 V1.100)', + 'Capcom', + 1999, + '{}'::text[], + array['Beat em up'], + '{"mame":["ffreveng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'final-furlong', + 'Final Furlong', + 'Namco', + 1997, + array['Final Furlong (World, FF2 Ver. A)'], + array['Arcade'], + '{"mame":["finfurl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'final-furlong-2', + 'Final Furlong 2', + 'Namco', + 1998, + array['Final Furlong 2 (World, FFS2 Ver. A)'], + array['Arcade'], + '{"mame":["finfurl2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'final-godori', + 'Final Godori', + 'SemiCom', + 2001, + array['Final Godori (Korea, version 2.20.5915)'], + array['Arcade'], + '{"mame":["finalgdr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'final-lap', + 'Final Lap', + 'Namco', + 1987, + array['Final Lap (Rev E)'], + array['Arcade'], + '{"mame":["finallap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'final-lap-2', + 'Final Lap 2', + 'Namco', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["finalap2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'final-lap-3', + 'Final Lap 3', + 'Namco', + 1992, + array['Final Lap 3 (World, Rev C)'], + array['Arcade'], + '{"mame":["finalap3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'final-lap-r', + 'Final Lap R', + 'Namco', + 1994, + array['Final Lap R (Rev. B)'], + array['Arcade'], + '{"mame":["finalapr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcofl.cpp"]}'::jsonb + ), + ( + 'final-star-force', + 'Final Star Force', + 'Tecmo', + 1992, + array['Final Star Force (US)'], + array['Arcade'], + '{"mame":["fstarfrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo16.cpp"]}'::jsonb + ), + ( + 'final-tetris', + 'Final Tetris', + 'Jeil Computer System', + 1993, + '{}'::text[], + array['Puzzle'], + '{"mame":["finalttr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'finalizer-super-transformation', + 'Finalizer: Super Transformation', + 'Konami', + 1985, + array['Finalizer: Super Transformation (set 1)'], + array['Arcade'], + '{"mame":["finalizr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/finalizr.cpp"]}'::jsonb + ), + ( + 'find-out', + 'Find Out', + 'Elettronolo', + 1987, + array['Find Out (Version 4.04, set 1)'], + array['Arcade'], + '{"mame":["findout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'finest-hour', + 'Finest Hour', + 'Namco', + 1989, + array['Finest Hour (Japan)'], + array['Arcade'], + '{"mame":["finehour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'finger-dancing', + 'Finger Dancing', + 'Orb Gaming', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["fingerd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'fire-ball-fm-work', + 'Fire Ball (FM Work)', + 'FM Work', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["fball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lwings.cpp"]}'::jsonb + ), + ( + 'fire-battle', + 'Fire Battle', + 'Woodplace Inc. (Taito license)', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["firebatl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/clshroad.cpp"]}'::jsonb + ), + ( + 'fire-fox', + 'Fire Fox', + 'Atari', + 1984, + array['Fire Fox (set 1)'], + array['Arcade'], + '{"mame":["firefox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/firefox.cpp"]}'::jsonb + ), + ( + 'fire-one', + 'Fire One', + 'Exidy', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["fireone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/starfire.cpp"]}'::jsonb + ), + ( + 'fire-shark', + 'Fire Shark', + 'Toaplan', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["fireshrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/fireshrk.cpp"]}'::jsonb + ), + ( + 'fire-shark-mega-tech', + 'Fire Shark (Mega-Tech)', + 'Toaplan / Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_fshrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'fire-trap', + 'Fire Trap', + 'Woodplace Inc. (Data East USA license)', + 1986, + array['Fire Trap (US, rev A)'], + array['Arcade'], + '{"mame":["firetrap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/firetrap.cpp"]}'::jsonb + ), + ( + 'fire-truck-smokey-joe', + 'Fire Truck / Smokey Joe', + 'Atari', + 1978, + array['Fire Truck / Smokey Joe (PROM version)'], + array['Arcade'], + '{"mame":["firetrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/firetrk.cpp"]}'::jsonb + ), + ( + 'firebeast', + 'Firebeast', + 'Atari', + 1983, + array['Firebeast (prototype)'], + array['Arcade'], + '{"mame":["firebeas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cloud9.cpp"]}'::jsonb + ), + ( + 'first-class-traveller', + 'First Class Traveller', + 'Novotech', + null, + array['First Class Traveller (set 1)'], + array['Arcade'], + '{"mame":["firstcl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'fish-life-amazon-playful-edition', + 'Fish Life Amazon Playful Edition', + 'Sega', + 2000, + array['Fish Life Amazon Playful Edition (Japan)'], + array['Arcade'], + '{"mame":["dcfish"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dccons.cpp"]}'::jsonb + ), + ( + 'fisherman-battle', + 'Fisherman Battle', + 'Amuzy Corporation', + 2005, + array['Fisherman Battle (Japan, ver 1.03)'], + array['Arcade'], + '{"mame":["fishbatl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'fisherman-s-bait-a-bass-challenge', + 'Fisherman''s Bait - A Bass Challenge', + 'Konami', + 1998, + array['Fisherman''s Bait - A Bass Challenge (GE765 VER. UAB)'], + array['Arcade'], + '{"mame":["fbaitbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'fisherman-s-bait-marlin-challenge', + 'Fisherman''s Bait - Marlin Challenge', + 'Konami', + 1999, + array['Fisherman''s Bait - Marlin Challenge (GX889 VER. EA)'], + array['Arcade'], + '{"mame":["fbaitmc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'fisherman-s-bait-2-a-bass-challenge', + 'Fisherman''s Bait 2 - A Bass Challenge', + 'Konami', + 1998, + array['Fisherman''s Bait 2 - A Bass Challenge (GE865 VER. UAB)'], + array['Arcade'], + '{"mame":["fbait2bc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'fishin-frenzy', + 'Fishin'' Frenzy', + 'Time Warner Interactive', + 1995, + array['Fishin'' Frenzy (prototype)'], + array['Arcade'], + '{"mame":["fishfren"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'fishing-maniac-2', + 'Fishing Maniac 2+', + 'Saero Entertainment', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["fmaniac2p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'fishing-maniac-3', + 'Fishing Maniac 3', + 'Saero Entertainment', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["fmaniac3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'fist-of-the-north-star-hokuto-no-ken', + 'Fist Of The North Star / Hokuto no Ken', + 'Arc System Works / Sega', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["fotns"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'fit-of-fighting', + 'Fit of Fighting', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["fitfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nix/fitfight.cpp"]}'::jsonb + ), + ( + 'five-a-side-soccer', + 'Five a Side Soccer', + 'Konami', + 1995, + array['Five a Side Soccer (ver UAA)'], + array['Sports'], + '{"mame":["fiveside"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ultrsprt.cpp"]}'::jsonb + ), + ( + 'five-clown', + 'Five Clown', + 'IGS', + 1993, + array['Five Clown (English, set 1)'], + array['Arcade'], + '{"mame":["5clown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/5clown.cpp"]}'::jsonb + ), + ( + 'fixeight', + 'FixEight', + 'Toaplan', + 1992, + array['FixEight (Europe)'], + array['Arcade'], + '{"mame":["fixeight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/fixeight.cpp"]}'::jsonb + ), + ( + 'flaming-7-s-cyberdyne-systems-7v5-00-cyb1092-50-bonus', + 'Flaming 7''s (Cyberdyne Systems 7V5.00 (CYB1092), 50 bonus)', + 'Cyberdyne Systems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["fl7_50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'flaming-7-s-w4-hardware-prg-5xxxx-v6-01a-red-white-and-blue-7-s-hollywood-nights', + 'Flaming 7''s (W4 Hardware, prg 5XXXX V6 01A, Red, White & Blue 7''s + Hollywood Nights)', + 'Cyberdyne Systems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["fl7_3121"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'flash-beats', + 'Flash Beats', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["flsbeats"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/flashbeats.cpp"]}'::jsonb + ), + ( + 'flash-boy', + 'Flash Boy', + 'Data East Corporation', + 1981, + array['Flash Boy (vertical) (DECO Cassette MD) (No.12/Ver.0/Set.1,Japan)'], + array['Arcade'], + '{"mame":["cfboy0a1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'flash-point-fd1094-317-0127a', + 'Flash Point (FD1094 317-0127A)', + 'Sega', + 1989, + array['Flash Point (set 2, Japan) (FD1094 317-0127A)'], + array['Arcade'], + '{"mame":["fpoint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'flashback', + 'Flashback', + 'ACE', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["flshback"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/acefruit.cpp"]}'::jsonb + ), + ( + 'flashgal', + 'Flashgal', + 'Kyugo / Sega', + 1985, + array['Flashgal (set 1)'], + array['Arcade'], + '{"mame":["flashgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/kyugo.cpp"]}'::jsonb + ), + ( + 'flicky', + 'Flicky', + 'Sega', + 1984, + array['Flicky (128k Version, 315-5051)'], + array['Arcade'], + '{"mame":["flicky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'flip-and-flop-max-a-flex', + 'Flip & Flop (Max-A-Flex)', + 'Exidy / First Star Software', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mf_flip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/maxaflex.cpp"]}'::jsonb + ), + ( + 'flip-shot', + 'Flip Shot', + 'Visco', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["flipshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'flipper-jack', + 'Flipper Jack', + 'Jackson Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["flipjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/flipjack.cpp"]}'::jsonb + ), + ( + 'flower', + 'Flower', + 'Clarue (Komax license)', + 1986, + array['Flower (US)'], + array['Arcade'], + '{"mame":["flower"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/flower.cpp"]}'::jsonb + ), + ( + 'fly-boy', + 'Fly-Boy', + 'Kaneko', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["flyboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/fastfred.cpp"]}'::jsonb + ), + ( + 'flyball', + 'Flyball', + 'Atari', + 1976, + array['Flyball (rev 2)'], + array['Arcade'], + '{"mame":["flyball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/flyball.cpp"]}'::jsonb + ), + ( + 'flying-ball', + 'Flying Ball', + 'Data East Corporation', + 1985, + array['Flying Ball (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cflyball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'flying-fortress', + 'Flying Fortress', + 'Electra', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["flyingf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/electra.cpp"]}'::jsonb + ), + ( + 'flying-shark', + 'Flying Shark', + 'Toaplan / Taito Corporation', + 1987, + array['Flying Shark (World)'], + array['Arcade'], + '{"mame":["fshark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/twincobr.cpp"]}'::jsonb + ), + ( + 'fm-11-ex', + 'FM-11 EX', + 'Fujitsu', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["fm11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/fm7.cpp"]}'::jsonb + ), + ( + 'fm-16', + 'FM-16β', + 'Fujitsu', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["fm16beta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/fm7.cpp"]}'::jsonb + ), + ( + 'fm-7', + 'FM-7', + 'Fujitsu', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["fm7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/fm7.cpp"]}'::jsonb + ), + ( + 'fm-8', + 'FM-8', + 'Fujitsu', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["fm8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/fm7.cpp"]}'::jsonb + ), + ( + 'fm-towns-model-1-2', + 'FM-Towns (Model 1 / 2)', + 'Fujitsu', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["fmtowns"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/fmtowns.cpp"]}'::jsonb + ), + ( + 'fm-towns-marty', + 'FM-Towns Marty', + 'Fujitsu', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["fmtmarty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/fmtowns.cpp"]}'::jsonb + ), + ( + 'fonz', + 'Fonz', + 'Sega', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["fonz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segattl.cpp"]}'::jsonb + ), + ( + 'food-fight', + 'Food Fight', + 'General Computer Corporation (Atari license)', + 1982, + array['Food Fight (rev 3)'], + array['Arcade'], + '{"mame":["foodf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/foodf.cpp"]}'::jsonb + ), + ( + 'fool-race', + 'Fool Race', + 'EFG Sanremo', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["foolrace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/efg8080.cpp"]}'::jsonb + ), + ( + 'football-champ-euro-football-champ', + 'Football Champ / Euro Football Champ', + 'Taito Corporation Japan', + 1990, + array['Football Champ / Euro Football Champ (World)'], + array['Sports'], + '{"mame":["footchmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'football-frenzy-ngm-034-ngh-034', + 'Football Frenzy (NGM-034 ~ NGH-034)', + 'SNK', + 1992, + '{}'::text[], + array['Sports'], + '{"mame":["fbfrenzy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'football-power', + 'Football Power', + 'Gaelco', + 1999, + array['Football Power (version 4.6)'], + array['Sports'], + '{"mame":["footbpow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco3d.cpp"]}'::jsonb + ), + ( + 'forgotten-worlds', + 'Forgotten Worlds', + 'Capcom', + 1988, + array['Forgotten Worlds (World, newer)'], + array['Arcade'], + '{"mame":["forgottn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'forgotten-worlds-mega-tech', + 'Forgotten Worlds (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_fwrld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'formation-z', + 'Formation Z', + 'Jaleco', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["formatz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/aeroboto.cpp"]}'::jsonb + ), + ( + 'forte-card', + 'Forte Card', + 'Fortex Ltd.', + 1994, + array['Forte Card (Ver 110, Spanish)'], + array['Arcade'], + '{"mame":["fortecrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/fortecar.cpp"]}'::jsonb + ), + ( + 'fortress-2-blue-arcade', + 'Fortress 2 Blue Arcade', + 'Eolith', + 2001, + array['Fortress 2 Blue Arcade (World) (ver 1.01 / pcb ver 3.05)'], + array['Arcade'], + '{"mame":["fort2b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'fortune-wheel', + 'Fortune Wheel', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["fwheel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/fwheel.cpp"]}'::jsonb + ), + ( + 'forty-love', + 'Forty-Love', + 'Taito Corporation', + 1984, + array['Forty-Love (World)'], + array['Arcade'], + '{"mame":["40love"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/40love.cpp"]}'::jsonb + ), + ( + 'four-play', + 'Four Play', + 'Macro', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["fourplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'four-roses', + 'Four Roses', + '', + 1999, + array['Four Roses (encrypted, set 1)'], + array['Arcade'], + '{"mame":["4roses"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/4roses.cpp"]}'::jsonb + ), + ( + 'four-trax', + 'Four Trax', + 'Namco', + 1989, + array['Four Trax (World)'], + array['Arcade'], + '{"mame":["fourtrax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'foxy-ruby', + 'Foxy Ruby', + 'Astro Corp.', + 2009, + array['Foxy Ruby (Ver. US.01.01.A)'], + array['Arcade'], + '{"mame":["foxyruby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'fp-1000', + 'FP-1000', + 'Casio', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["fp1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/fp1100.cpp"]}'::jsonb + ), + ( + 'fp-1100', + 'FP-1100', + 'Casio', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["fp1100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/fp1100.cpp"]}'::jsonb + ), + ( + 'fp-200', + 'FP-200', + 'Casio', + 1982, + array['FP-200 (Japan)'], + array['Arcade'], + '{"mame":["fp200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/fp200.cpp"]}'::jsonb + ), + ( + 'fp-6000', + 'FP-6000', + 'Casio', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["fp6000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/fp6000.cpp"]}'::jsonb + ), + ( + 'frantic-fred-release-2', + 'Frantic Fred (Release 2)', + 'ICE', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["franticf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/lethalj.cpp"]}'::jsonb + ), + ( + 'fred-flintstone-s-memory-match', + 'Fred Flintstone''s Memory Match', + 'Coastal Amusements', + 1994, + array['Fred Flintstone''s Memory Match (World?, Ticket version, 3/17/95)'], + array['Arcade'], + '{"mame":["fredmem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dcheese.cpp"]}'::jsonb + ), + ( + 'free-deal-twin-jokers-progressive', + 'Free Deal Twin Jokers Progressive', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["freedeal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab88.cpp"]}'::jsonb + ), + ( + 'free-kick-ns6201-a-1987-10', + 'Free Kick (NS6201-A 1987.10)', + 'Nihon System (Merit license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["freekick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freekick.cpp"]}'::jsonb + ), + ( + 'freedom-120-aspect-100', + 'Freedom 120/Aspect 100', + 'Liberty Electronics', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["free120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["liberty/freedom120.cpp"]}'::jsonb + ), + ( + 'freedom-200', + 'Freedom 200', + 'Liberty Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["free200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["liberty/freedom200.cpp"]}'::jsonb + ), + ( + 'freedom-220', + 'Freedom 220', + 'Liberty Electronics', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["free220"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["liberty/freedom200.cpp"]}'::jsonb + ), + ( + 'freeway-v5-12', + 'FreeWay (V5.12)', + 'NVC Electronica', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["freeway"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freeway.cpp"]}'::jsonb + ), + ( + 'freeze', + 'Freeze', + 'Cinematronics', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["freeze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ), + ( + 'freeze-atari', + 'Freeze (Atari)', + 'Atari Games', + 1996, + array['Freeze (Atari) (prototype, English voice, 96/10/25)'], + array['Arcade'], + '{"mame":["freezeat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'frenzy', + 'Frenzy', + 'Stern Electronics', + 1982, + array['Frenzy (revision RA1)'], + array['Arcade'], + '{"mame":["frenzy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/berzerk.cpp"]}'::jsonb + ), + ( + 'frenzy-express', + 'Frenzy Express', + 'ICE / Uniana', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["frenzyxprss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/frenzyxprss.cpp"]}'::jsonb + ), + ( + 'frisky-tom', + 'Frisky Tom', + 'Nichibutsu', + 1981, + array['Frisky Tom (set 1)'], + array['Arcade'], + '{"mame":["friskyt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/seicross.cpp"]}'::jsonb + ), + ( + 'frog-and-spiders', + 'Frog & Spiders', + 'Taito Corporation', + 1981, + array['Frog & Spiders (bootleg?)'], + array['Arcade'], + '{"mame":["fspiderb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/jollyjgr.cpp"]}'::jsonb + ), + ( + 'frogger', + 'Frogger', + 'Konami', + 1981, + '{}'::text[], + array['Classic'], + '{"mame":["frogger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'frogs', + 'Frogs', + 'Gremlin', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["frogs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'from-tv-animation-slam-dunk-super-slams', + 'From TV Animation Slam Dunk - Super Slams', + 'Banpresto / Toei Animation / Video System Co.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["suprslam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/suprslam.cpp"]}'::jsonb + ), + ( + 'front-line', + 'Front Line', + 'Taito Corporation', + 1982, + array['Front Line (AA1, 4 PCB version)'], + array['Arcade'], + '{"mame":["frontlin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'fun-four', + 'Fun Four', + 'Bailey International', + 1976, + array['Fun Four (set 1)'], + array['Arcade'], + '{"mame":["fun4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bailey.cpp"]}'::jsonb + ), + ( + 'fun-river', + 'Fun River', + 'Amcoe', + 2005, + array['Fun River (Version 1.4R CGA)'], + array['Arcade'], + '{"mame":["funriver"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'fun-station-spielekoffer-9-spiele', + 'Fun Station Spielekoffer 9 Spiele', + 'ADP', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["fstation"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/adp.cpp"]}'::jsonb + ), + ( + 'funcube-v1-5', + 'Funcube (v1.5)', + 'Namco', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["funcube"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/funcube.cpp"]}'::jsonb + ), + ( + 'funcube-2-v1-1', + 'Funcube 2 (v1.1)', + 'Namco', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["funcube2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/funcube.cpp"]}'::jsonb + ), + ( + 'funcube-3-v1-1', + 'Funcube 3 (v1.1)', + 'Namco', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["funcube3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/funcube.cpp"]}'::jsonb + ), + ( + 'funcube-4-v1-0', + 'Funcube 4 (v1.0)', + 'Namco', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["funcube4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/funcube.cpp"]}'::jsonb + ), + ( + 'funcube-5-v1-0', + 'Funcube 5 (v1.0)', + 'Namco', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["funcube5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/funcube.cpp"]}'::jsonb + ), + ( + 'funky-ball', + 'Funky Ball', + 'dgPIX Entertainment Inc.', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["funkball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/funkball.cpp"]}'::jsonb + ), + ( + 'funky-bee', + 'Funky Bee', + 'Orca', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["funkybee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/funkybee.cpp"]}'::jsonb + ), + ( + 'funky-fish', + 'Funky Fish', + 'Sun Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["fnkyfish"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/kangaroo.cpp"]}'::jsonb + ), + ( + 'funky-head-boxers-juetbkal-951218-v1-000', + 'Funky Head Boxers (JUETBKAL 951218 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["fhboxers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'funky-jet', + 'Funky Jet', + 'Mitchell', + 1992, + array['Funky Jet (World, rev 1)'], + array['Arcade'], + '{"mame":["funkyjet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/funkyjet.cpp"]}'::jsonb + ), + ( + 'funny-bubble', + 'Funny Bubble', + 'In Chang Electronic Co', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["funybubl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["comad/funybubl.cpp"]}'::jsonb + ), + ( + 'funny-farm-v1-17', + 'Funny Farm (v1.17)', + 'Kupidon', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["funnyfm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cupidon.cpp"]}'::jsonb + ), + ( + 'funny-land-de-luxe', + 'Funny Land de Luxe', + 'Stella', + 2001, + array['Funny Land de Luxe (W4 set)'], + array['Arcade'], + '{"mame":["funlddlx4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/adp.cpp"]}'::jsonb + ), + ( + 'funny-strip', + 'Funny Strip', + 'Microhard / MagicGames', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["funystrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/splash.cpp"]}'::jsonb + ), + ( + 'future-32', + 'Future 32α', + 'Sord', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["future32a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sord/future32.cpp"]}'::jsonb + ), + ( + 'future-flash', + 'Future Flash', + 'Hoei', + 1980, + array['Future Flash (set 1)'], + array['Arcade'], + '{"mame":["futflash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/laserbas.cpp"]}'::jsonb + ), + ( + 'future-spy-315-5061', + 'Future Spy (315-5061)', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["futspy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/zaxxon.cpp"]}'::jsonb + ), + ( + 'fuudol', + 'Fuudol', + 'Nichibutsu/eic', + 2000, + array['Fuudol (Japan)'], + array['Arcade'], + '{"mame":["fuudol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'fuusen-pentai', + 'Fuusen Pentai', + 'Konami', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["fuusenpn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'fz-1-digital-sampling-synthesizer', + 'FZ-1 Digital Sampling Synthesizer', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["fz1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/fz1.cpp"]}'::jsonb + ), + ( + 'g-loc-air-battle', + 'G-LOC Air Battle', + 'Sega', + 1990, + array['G-LOC Air Battle (World)'], + array['Arcade'], + '{"mame":["gloc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaybd.cpp"]}'::jsonb + ), + ( + 'g-stream-g2020', + 'G-Stream G2020', + 'Oriental Soft Japan', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["gstream"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["promat/gstream.cpp"]}'::jsonb + ), + ( + 'g-i-joe', + 'G.I. Joe', + 'Konami', + 1992, + array['G.I. Joe (World, EAB)'], + array['Arcade'], + '{"mame":["gijoe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gijoe.cpp"]}'::jsonb + ), + ( + 'g-t-block-challenger', + 'G.T. Block Challenger', + 'Sun Electronics / Gifu Tokki', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["blockch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/blockch.cpp"]}'::jsonb + ), + ( + 'g3-800-in-1-handheld', + 'G3 800 in 1 Handheld', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g3_800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'g5-500-in-1-handheld', + 'G5 500 in 1 Handheld', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g5_500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'g6-666-in-1-handheld', + 'G6 666 in 1 Handheld', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g6_666"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'g7-666-in-1-handheld', + 'G7 666 in 1 Handheld', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g7_666"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'g9-game-box-666-games', + 'G9 Game Box 666 Games', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g9_666"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'gacha-gachamp', + 'Gacha Gachamp', + 'Konami', + 1999, + array['Gacha Gachamp (GE877 VER. JAB)'], + array['Arcade'], + '{"mame":["gchgchmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'gaelco-championship-tuning-race', + 'Gaelco Championship Tuning Race', + 'Gaelco', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["tuningrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelcopc.cpp"]}'::jsonb + ), + ( + 'gaelco-ds5002fp-programmer', + 'Gaelco DS5002FP Programmer', + 'Gaelco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["gaelcods"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/ds5002fp_programmer.cpp"]}'::jsonb + ), + ( + 'gaelco-football', + 'Gaelco Football', + 'Gaelco / Zigurat', + 2002, + '{}'::text[], + array['Sports'], + '{"mame":["gfootbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/atvtrack.cpp"]}'::jsonb + ), + ( + 'gahaha-ippatsudou', + 'GAHAHA Ippatsudou', + 'Namco / Metro', + 2000, + array['GAHAHA Ippatsudou (World, GID2 Ver.A)'], + array['Arcade'], + '{"mame":["gahaha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'gahaha-ippatsudou-2', + 'GAHAHA Ippatsudou 2', + 'Namco / Metro', + 2001, + array['GAHAHA Ippatsudou 2 (Japan, GIS1 Ver.A)'], + array['Arcade'], + '{"mame":["gahaha2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'gaia-the-last-choice-of-earth', + 'Gaia - The Last Choice of Earth', + 'SemiCom / XESS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["gaialast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dreamwld.cpp"]}'::jsonb + ), + ( + 'gaia-crusaders', + 'Gaia Crusaders', + 'Noise Factory', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["gaia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'gaiapolis', + 'Gaiapolis', + 'Konami', + 1993, + array['Gaiapolis (ver EAF)'], + array['Arcade'], + '{"mame":["gaiapols"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mystwarr.cpp"]}'::jsonb + ), + ( + 'gain-ground', + 'Gain Ground', + 'Sega', + 1988, + array['Gain Ground (World, 3 Players, Floppy Based, FD1094 317-0058-03d Rev A)'], + array['Arcade'], + '{"mame":["gground"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'galactic-storm', + 'Galactic Storm', + 'Taito Corporation', + 1992, + array['Galactic Storm (Japan)'], + array['Arcade'], + '{"mame":["galastrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/galastrm.cpp"]}'::jsonb + ), + ( + 'galactic-warriors', + 'Galactic Warriors', + 'Konami', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["gwarrior"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'galactica-batalha-espacial', + 'Galactica - Batalha Espacial', + 'Taito do Brasil', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["galactic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'galaga', + 'Galaga', + 'Namco', + 1981, + array['Galaga (Namco rev. B)'], + array['Shooter', 'Classic'], + '{"mame":["galaga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/galaga.cpp"]}'::jsonb + ), + ( + 'galaga-88', + 'Galaga ''88', + 'Namco', + 1987, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["galaga88"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'galaksija', + 'Galaksija', + 'Voja Antonic / Elektronika inzenjering', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["galaxy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/galaxy.cpp"]}'::jsonb + ), + ( + 'galaxi-v2-0', + 'Galaxi (v2.0)', + 'B.R.L.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["galaxi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/galaxi.cpp"]}'::jsonb + ), + ( + 'galaxia', + 'Galaxia', + 'Zaccaria / Zelco', + 1979, + array['Galaxia (set 1)'], + array['Arcade'], + '{"mame":["galaxia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/galaxia.cpp"]}'::jsonb + ), + ( + 'galaxian', + 'Galaxian', + 'Namco', + 1979, + array['Galaxian (Namco set 1)'], + array['Arcade'], + '{"mame":["galaxian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'galaxian-3-theater-6-project-dragoon', + 'Galaxian 3 - Theater 6 : Project Dragoon', + 'Namco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["gal3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/gal3.cpp"]}'::jsonb + ), + ( + 'galaxy-fight-universal-warriors', + 'Galaxy Fight - Universal Warriors', + 'Sunsoft', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["galaxyfg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'galaxy-force-2', + 'Galaxy Force 2', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["gforce2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaybd.cpp"]}'::jsonb + ), + ( + 'galaxy-game', + 'Galaxy Game', + 'Computer Recreations, Inc', + 1971, + '{}'::text[], + array['Arcade'], + '{"mame":["galgame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/galgame.cpp"]}'::jsonb + ), + ( + 'galaxy-games', + 'Galaxy Games', + 'Creative Electronics & Software', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["galgames"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/galgames.cpp"]}'::jsonb + ), + ( + 'galaxy-games-starpak-2-cartridge', + 'Galaxy Games + StarPak 2 cartridge', + 'Creative Electronics & Software / Namco', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["galgame2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/galgames.cpp"]}'::jsonb + ), + ( + 'galaxy-games-starpak-3-cartridge', + 'Galaxy Games + StarPak 3 cartridge', + 'Creative Electronics & Software / Atari', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["galgame3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/galgames.cpp"]}'::jsonb + ), + ( + 'galaxy-games-starpak-4-cartridge', + 'Galaxy Games + StarPak 4 cartridge', + 'Creative Electronics & Software', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["galgame4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/galgames.cpp"]}'::jsonb + ), + ( + 'galaxy-gunners', + 'Galaxy Gunners', + 'Electronic Devices Italy', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["galaxygn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/fantland.cpp"]}'::jsonb + ), + ( + 'galaxy-ranger', + 'Galaxy Ranger', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["galaxyr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segald.cpp"]}'::jsonb + ), + ( + 'galaxy-wars', + 'Galaxy Wars', + 'Universal', + 1979, + array['Galaxy Wars (Universal set 1)'], + array['Arcade'], + '{"mame":["galxwars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'galeb', + 'Galeb', + 'PEL Varazdin', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["galeb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/galeb.cpp"]}'::jsonb + ), + ( + 'galileo-factory-main', + 'Galileo Factory (main)', + 'Sega', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["galilfac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'gallag-video-game-petalouda-butterfly-x50', + 'Gallag Video Game / Petalouda (Butterfly, x50)', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gallag50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'gallagher-s-gallery-v2-2', + 'Gallagher''s Gallery (v2.2)', + 'American Laser Games', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["gallgall"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'galmedes', + 'Galmedes', + 'Visco', + 1992, + array['Galmedes (Japan)'], + array['Arcade'], + '{"mame":["galmedes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'gals-panic', + 'Gals Panic', + 'Kaneko', + 1990, + array['Gals Panic (unprotected, ver. 2.0)'], + array['Arcade'], + '{"mame":["galpanic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/galpanic.cpp"]}'::jsonb + ), + ( + 'gals-panic-export-expro-02-pcb', + 'Gals Panic (Export, EXPRO-02 PCB)', + 'Kaneko', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["galsnew"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'gals-panic-3-euro', + 'Gals Panic 3 (Euro)', + 'Kaneko', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["galpani3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/galpani3.cpp"]}'::jsonb + ), + ( + 'gals-panic-4', + 'Gals Panic 4', + 'Kaneko', + 1996, + array['Gals Panic 4 (Europe)'], + array['Arcade'], + '{"mame":["galpani4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'gals-panic-ii', + 'Gals Panic II', + 'Kaneko', + 1993, + array['Gals Panic II (Asia)'], + array['Arcade'], + '{"mame":["galpani2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/galpani2.cpp"]}'::jsonb + ), + ( + 'gals-panic-ii-special-edition', + 'Gals Panic II'' - Special Edition', + 'Kaneko', + 1994, + array['Gals Panic II'' - Special Edition (Japan)'], + array['Arcade'], + '{"mame":["gp2se"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/galpani2.cpp"]}'::jsonb + ), + ( + 'gals-panic-s-extra-edition', + 'Gals Panic S - Extra Edition', + 'Kaneko', + 1997, + array['Gals Panic S - Extra Edition (Europe, revision 1)'], + array['Arcade'], + '{"mame":["galpanis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'gals-panic-s2', + 'Gals Panic S2', + 'Kaneko', + 1999, + array['Gals Panic S2 (Europe, version 3)'], + array['Arcade'], + '{"mame":["galpans2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'gals-panic-s3', + 'Gals Panic S3', + 'Kaneko', + 2002, + array['Gals Panic S3 (Japan)'], + array['Arcade'], + '{"mame":["galpans3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'gamate', + 'Gamate', + 'Bit Corp', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["gamate"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bitcorp/gamate.cpp"]}'::jsonb + ), + ( + 'gambit-voice', + 'Gambit Voice', + 'Fidelity International', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["gambitv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc6.cpp"]}'::jsonb + ), + ( + 'game-box-400-in-1-2019-pcb', + 'Game Box 400 in 1 (2019 PCB)', + 'Sup', + 2019, + '{}'::text[], + array['Arcade'], + '{"mame":["gbox2019"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'game-boy', + 'Game Boy', + 'Nintendo', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["gameboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gb.cpp"]}'::jsonb + ), + ( + 'game-boy-advance', + 'Game Boy Advance', + 'Nintendo', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gba.cpp"]}'::jsonb + ), + ( + 'game-boy-color', + 'Game Boy Color', + 'Nintendo', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["gbcolor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gb.cpp"]}'::jsonb + ), + ( + 'game-magic', + 'Game Magic', + 'Bally Gaming Co.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["gammagic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gammagic.cpp"]}'::jsonb + ), + ( + 'game-on-100-in-1', + 'Game On 100-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gon100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'game-prince-rs-1', + 'Game Prince RS-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gprnrs1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'game-prince-rs-16', + 'Game Prince RS-16', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gprnrs16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'game-sporz-wireless-boxing', + 'Game Sporz Wireless Boxing', + 'Macro Winners', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["sporzbx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'game-sporz-wireless-duet-play-ping-pong', + 'Game Sporz Wireless Duet Play Ping-Pong', + 'Macro Winners', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["sporzpp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'game-tree', + 'Game Tree', + 'Project Support Engineering', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["gametree"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pse.cpp"]}'::jsonb + ), + ( + 'game-zone-ii-128-in-1', + 'Game Zone II 128-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gamezn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'game-com', + 'Game.com', + 'Tiger', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["gamecom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tiger/gamecom.cpp"]}'::jsonb + ), + ( + 'gamecube', + 'GameCube', + 'Nintendo', + 2001, + array['GameCube (Japan)'], + array['Arcade'], + '{"mame":["gcjp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gamecube.cpp"]}'::jsonb + ), + ( + 'games-4-u-2-94-5-6-0', + 'Games 4 U 2 (94 5.6-0)', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g4u2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'games-4-u-3-94-5-6-4', + 'Games 4 U 3 (94 5.6-4)', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g4u3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'games-4-u-4-94-5-6-5', + 'Games 4 U 4 (94 5.6-5)', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g4u4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'games-4-u-5-94-5-6-5', + 'Games 4 U 5 (94 5.6-5)', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g4u5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'games-4-u-6-94-5-6-5', + 'Games 4 U 6 (94 5.6-5)', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g4u6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'games-4-u-7-94-5-6-5a', + 'Games 4 U 7 (94 5.6-5a)', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["g4u7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'games-family', + 'Games Family', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gmfamily"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gfamily.cpp"]}'::jsonb + ), + ( + 'games-power-500-in-1-ultra-thin-handheld-game-k10-2-languages', + 'Games Power 500-in-1 Ultra Thin Handheld Game (K10) (2 languages)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["k10_2l"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'games-power-500-in-1-ultra-thin-handheld-game-k10-5-languages', + 'Games Power 500-in-1 Ultra Thin Handheld Game (K10) (5 languages)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["k10_5l"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'games-v25-4x', + 'Games V25.4X', + 'U.S. Games, Inc.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["usgames"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/usgames.cpp"]}'::jsonb + ), + ( + 'gameu-joint-tv-bank-108-in-1-model-ah9069', + 'GameU Joint TV Bank 108-in-1 (model AH9069)', + 'YSN', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gujtv108"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'gaminator-1', + 'Gaminator 1', + 'Novotech', + null, + array['Gaminator 1 (set 1)'], + array['Arcade'], + '{"mame":["gamt1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-10', + 'Gaminator 10', + 'Novotech', + null, + array['Gaminator 10 (set 1)'], + array['Arcade'], + '{"mame":["gamt10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-11', + 'Gaminator 11', + 'Novotech', + null, + array['Gaminator 11 (set 1)'], + array['Arcade'], + '{"mame":["gamt11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-12', + 'Gaminator 12', + 'Novotech', + null, + array['Gaminator 12 (set 1)'], + array['Arcade'], + '{"mame":["gamt12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-16', + 'Gaminator 16', + 'Novotech', + null, + array['Gaminator 16 (set 1)'], + array['Arcade'], + '{"mame":["gamt16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-17', + 'Gaminator 17', + 'Novotech', + null, + array['Gaminator 17 (set 1)'], + array['Arcade'], + '{"mame":["gamt17"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-18', + 'Gaminator 18', + 'Novotech', + null, + array['Gaminator 18 (set 1)'], + array['Arcade'], + '{"mame":["gamt18"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-19', + 'Gaminator 19', + 'Novotech', + null, + array['Gaminator 19 (set 1)'], + array['Arcade'], + '{"mame":["gamt19"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-20', + 'Gaminator 20', + 'Novotech', + null, + array['Gaminator 20 (set 1)'], + array['Arcade'], + '{"mame":["gamt20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-21', + 'Gaminator 21', + 'Novotech', + null, + array['Gaminator 21 (set 1)'], + array['Arcade'], + '{"mame":["gamt21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-22', + 'Gaminator 22', + 'Novotech', + null, + array['Gaminator 22 (set 1)'], + array['Arcade'], + '{"mame":["gamt22"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-23', + 'Gaminator 23', + 'Novotech', + null, + array['Gaminator 23 (set 1)'], + array['Arcade'], + '{"mame":["gamt23"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-29', + 'Gaminator 29', + 'Novotech', + null, + array['Gaminator 29 (set 1)'], + array['Arcade'], + '{"mame":["gamt29"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-30', + 'Gaminator 30', + 'Novotech', + null, + array['Gaminator 30 (set 1)'], + array['Arcade'], + '{"mame":["gamt30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-31', + 'Gaminator 31', + 'Novotech', + null, + array['Gaminator 31 (set 1)'], + array['Arcade'], + '{"mame":["gamt31"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-4', + 'Gaminator 4', + 'Novotech', + null, + array['Gaminator 4 (set 1)'], + array['Arcade'], + '{"mame":["gamt4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-5', + 'Gaminator 5', + 'Novotech', + null, + array['Gaminator 5 (set 1)'], + array['Arcade'], + '{"mame":["gamt5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-6', + 'Gaminator 6', + 'Novotech', + null, + array['Gaminator 6 (set 1)'], + array['Arcade'], + '{"mame":["gamt6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-7', + 'Gaminator 7', + 'Novotech', + null, + array['Gaminator 7 (set 1)'], + array['Arcade'], + '{"mame":["gamt7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-8', + 'Gaminator 8', + 'Novotech', + null, + array['Gaminator 8 (set 1)'], + array['Arcade'], + '{"mame":["gamt8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gaminator-9', + 'Gaminator 9', + 'Novotech', + null, + array['Gaminator 9 (set 1)'], + array['Arcade'], + '{"mame":["gamt9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'gammonmaster-ii', + 'Gammonmaster II', + 'Tryom', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["gammonm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tryom/gammonm.cpp"]}'::jsonb + ), + ( + 'gamshara', + 'Gamshara', + 'Mitchell', + 2002, + array['Gamshara (20020912A / 10021 Ver.A)'], + array['Arcade'], + '{"mame":["gamshara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'gamushara-battle-puchi-monster', + 'Gamushara Battle! Puchi Monster', + 'Capcom', + 1999, + array['Gamushara Battle! Puchi Monster (Japan 990519)'], + array['Arcade'], + '{"mame":["pmonster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'ganbare-chinsan-ooshoubu-mc-8123a-317-5012', + 'Ganbare Chinsan Ooshoubu (MC-8123A, 317-5012)', + 'Sanritsu', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["chinsan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/chinsan.cpp"]}'::jsonb + ), + ( + 'ganbare-ginkun', + 'Ganbare Ginkun', + 'Tecmo', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["ginkun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo16.cpp"]}'::jsonb + ), + ( + 'ganbare-goemon', + 'Ganbare Goemon', + 'Konami', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["ggoemon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'ganbare-jajamaru-saisho-wa-goo-ganbare-jajamaru-hop-step-and-jump', + 'Ganbare Jajamaru Saisho wa Goo / Ganbare Jajamaru Hop Step & Jump', + 'Jaleco', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ganjaja"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/homerun.cpp"]}'::jsonb + ), + ( + 'ganbare-marine-kun', + 'Ganbare! Marine Kun', + 'Capcom', + 2000, + array['Ganbare! Marine Kun (Japan 2K0411)'], + array['Arcade'], + '{"mame":["ganbare"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'gang-busters', + 'Gang Busters', + 'Konami', + 1988, + array['Gang Busters (set 1)'], + array['Arcade'], + '{"mame":["gbusters"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/thunderx.cpp"]}'::jsonb + ), + ( + 'gang-wars', + 'Gang Wars', + 'Alpha Denshi Co.', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["gangwars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k.cpp"]}'::jsonb + ), + ( + 'gangbao-sifang', + 'Gangbao Sifang', + 'Sealy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["gbsf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_m16c.cpp"]}'::jsonb + ), + ( + 'gangster-s-roses-v4-70', + 'Gangster''s Roses (v4.70)', + 'Kupidon', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["gangrose"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cupidon.cpp"]}'::jsonb + ), + ( + 'ganryu-musashi-ganryuki', + 'Ganryu / Musashi Ganryuki', + 'Visco', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["ganryu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ganso-janken-man-2', + 'Ganso Janken Man 2', + 'Sunwise', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jankmg2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunwise/jankmg2.cpp"]}'::jsonb + ), + ( + 'gaplus', + 'Gaplus', + 'Namco', + 1984, + array['Gaplus (GP2 rev. B)'], + array['Arcade'], + '{"mame":["gaplus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/gaplus.cpp"]}'::jsonb + ), + ( + 'garage', + 'Garage', + 'Igrosoft', + 2004, + array['Garage (050311 World)'], + array['Arcade'], + '{"mame":["garage_5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'gardia-317-0006', + 'Gardia (317-0006)', + 'Coreland / Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["gardia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'garogun-seroyang', + 'Garogun Seroyang', + 'Yun Sung', + 2000, + array['Garogun Seroyang (Korea)'], + array['Arcade'], + '{"mame":["garogun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp"]}'::jsonb + ), + ( + 'garou-mark-of-the-wolves-ngm-2530', + 'Garou - Mark of the Wolves (NGM-2530)', + 'SNK', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["garou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'garyo-retsuden', + 'Garyo Retsuden', + 'Data East Corporation', + 1987, + array['Garyo Retsuden (Japan)'], + array['Arcade'], + '{"mame":["garyoret"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'gauntlet', + 'Gauntlet', + 'Atari Games', + 1985, + array['Gauntlet (rev 14)'], + array['Beat em up'], + '{"mame":["gauntlet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/gauntlet.cpp"]}'::jsonb + ), + ( + 'gauntlet-playchoice-10', + 'Gauntlet (PlayChoice-10)', + 'Atari / Tengen (Nintendo of America license)', + 1985, + '{}'::text[], + array['Beat em up'], + '{"mame":["pc_gntlt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'gauntlet-dark-legacy', + 'Gauntlet Dark Legacy', + 'Midway Games', + 1999, + array['Gauntlet Dark Legacy (version DL 2.52)'], + array['Beat em up'], + '{"mame":["gauntdl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'gauntlet-ii', + 'Gauntlet II', + 'Atari Games', + 1986, + '{}'::text[], + array['Beat em up'], + '{"mame":["gaunt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/gauntlet.cpp"]}'::jsonb + ), + ( + 'gauntlet-legends', + 'Gauntlet Legends', + 'Atari Games', + 1998, + array['Gauntlet Legends (version 1.6)'], + array['Beat em up'], + '{"mame":["gauntleg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'gb-50-retro-station-pocket-system', + 'GB-50 Retro Station Pocket System', + '', + 2019, + '{}'::text[], + array['Arcade'], + '{"mame":["gb50_150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'gee-bee', + 'Gee Bee', + 'Namco', + 1978, + array['Gee Bee (Japan)'], + array['Arcade'], + '{"mame":["geebee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'gegege-no-kitaro-yokai-yokocho-matsuri-de-battle-ja', + 'Gegege no Kitaro Yokai Yokocho Matsuri de Battle Ja', + 'Namco', + 2007, + array['Gegege no Kitaro Yokai Yokocho Matsuri de Battle Ja (GYM1 Ver.A)'], + array['Arcade'], + '{"mame":["gegemdb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'gei-multi-game', + 'GEI Multi Game', + 'Grayhound Electronics', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["geimulti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'geki-makaimura', + 'Geki Makaimura', + 'Capcom', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gekimaka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'gekirindan', + 'Gekirindan', + 'Taito Corporation', + 1995, + array['Gekirindan (Ver 2.3O 1995/09/21)'], + array['Arcade'], + '{"mame":["gekiridn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'gekisou', + 'Gekisou', + 'Eastern Corp.', + 1985, + array['Gekisou (Japan)'], + array['Arcade'], + '{"mame":["gekisou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/equites.cpp"]}'::jsonb + ), + ( + 'gekitoride-jong-space', + 'GekiToride-Jong Space', + 'Namco / Metro', + 2001, + array['GekiToride-Jong Space (10011 Ver.A)'], + array['Arcade'], + '{"mame":["gjspace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'gekitou-pro-yakyuu-mizushima-shinji-all-stars-vs-pro-yakyuu-gdt-0008c', + 'Gekitou Pro Yakyuu Mizushima Shinji All Stars vs. Pro Yakyuu (GDT-0008C)', + 'Sega / Wow Entertainment', + 2003, + array['Gekitou Pro Yakyuu Mizushima Shinji All Stars vs. Pro Yakyuu (Rev C) (GDT-0008C)'], + array['Arcade'], + '{"mame":["gekpurya"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'gemcrush', + 'Gemcrush', + 'Star Fish', + 1996, + array['Gemcrush (Japan, prototype)'], + array['Arcade'], + '{"mame":["gemcrush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dfruit.cpp"]}'::jsonb + ), + ( + 'gemini-wing', + 'Gemini Wing', + 'Tecmo', + 1987, + array['Gemini Wing (World)'], + array['Arcade'], + '{"mame":["gemini"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo.cpp"]}'::jsonb + ), + ( + 'genesis', + 'Genesis', + 'Sega', + 1989, + array['Genesis (USA, NTSC)'], + array['Arcade'], + '{"mame":["genesis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'genesis-nomad', + 'Genesis Nomad', + 'Sega', + 1995, + array['Genesis Nomad (USA Genesis handheld)'], + array['Arcade'], + '{"mame":["gen_nomd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'genesis-with-32x', + 'Genesis with 32X', + 'Sega', + 1994, + array['Genesis with 32X (USA, NTSC)'], + array['Arcade'], + '{"mame":["32x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'genie', + 'Genie', + 'Video Fun Games Ltd.', + null, + array['Genie (ICP-1, set 1)'], + array['Arcade'], + '{"mame":["genie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'genius-6-v110f', + 'Genius 6 (V110F)', + 'IGS', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["genius6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'genix-family', + 'Genix Family', + 'NIX', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["genix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nix/pirates.cpp"]}'::jsonb + ), + ( + 'genpei-toumaden', + 'Genpei ToumaDen', + 'Namco', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["genpeitd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos86.cpp"]}'::jsonb + ), + ( + 'ger-t-32620-sprach-morsegenerator', + 'Gerät 32620 (Sprach/Morsegenerator)', + 'Institut für Kosmosforschung', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sprachmg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/sprachmg.cpp"]}'::jsonb + ), + ( + 'get-a-way-upright', + 'Get A Way (upright)', + 'Universal', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["getaway"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/getaway.cpp"]}'::jsonb + ), + ( + 'get-rich', + 'Get Rich', + 'Amcoe', + null, + array['Get Rich (Version 1.0.1)'], + array['Arcade'], + '{"mame":["getrich"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'ghost-chaser-densei', + 'Ghost Chaser Densei', + 'bootleg', + 1996, + array['Ghost Chaser Densei (SNES bootleg, set 1)'], + array['Arcade'], + '{"mame":["denseib"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'ghost-hunter', + 'Ghost Hunter', + 'Hanaho Games', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["ghoshunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tickee.cpp"]}'::jsonb + ), + ( + 'ghost-pilots-ngm-020-ngh-020', + 'Ghost Pilots (NGM-020 ~ NGH-020)', + 'SNK', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["gpilots"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ghost-squad-gdx-0012a', + 'Ghost Squad (GDX-0012A)', + 'Sega', + 2004, + array['Ghost Squad (Rev A) (GDX-0012A)'], + array['Arcade'], + '{"mame":["ghostsqu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'ghost-squad-evolution', + 'Ghost Squad Evolution', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["ghostsev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'ghostlop', + 'Ghostlop', + 'Data East Corporation', + 1996, + array['Ghostlop (prototype)'], + array['Arcade'], + '{"mame":["ghostlop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ghostmuncher-galaxian', + 'Ghostmuncher Galaxian', + 'bootleg', + 1981, + array['Ghostmuncher Galaxian (bootleg)'], + array['Arcade'], + '{"mame":["gmgalax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'ghosts-n-goblins', + 'Ghosts''n Goblins', + 'Capcom', + 1985, + array['Ghosts''n Goblins (World? set 1)'], + array['Platformer'], + '{"mame":["gng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/gng.cpp"]}'::jsonb + ), + ( + 'ghoul-panic', + 'Ghoul Panic', + 'Eighting / Raizing / Namco', + 1999, + array['Ghoul Panic (World, OB2/VER.A)'], + array['Arcade'], + '{"mame":["ghlpanic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'ghouls-n-ghosts', + 'Ghouls''n Ghosts', + 'Capcom', + 1988, + array['Ghouls''n Ghosts (World)'], + array['Arcade'], + '{"mame":["ghouls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'ghouls-n-ghosts-mega-tech', + 'Ghouls''n Ghosts (Mega-Tech)', + 'Capcom / Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_gng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'ghox-spinner', + 'Ghox (spinner)', + 'Toaplan', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["ghox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/ghox.cpp"]}'::jsonb + ), + ( + 'gi-turf-wild-3', + 'GI Turf Wild 3', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["turfwld3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedalppc.cpp"]}'::jsonb + ), + ( + 'gi-classic-ex', + 'GI-Classic EX', + 'Konami', + 1998, + array['GI-Classic EX (server)'], + array['Classic'], + '{"mame":["giclassvr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/giclassic.cpp"]}'::jsonb + ), + ( + 'giant-gram-2000', + 'Giant Gram 2000', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["gram2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'giant-gram-all-japan-pro-wrestling-2', + 'Giant Gram: All Japan Pro Wrestling 2', + 'Sega', + 1999, + array['Giant Gram: All Japan Pro Wrestling 2 (Japan)'], + array['Arcade'], + '{"mame":["ggram2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'giga-wing', + 'Giga Wing', + 'Takumi (Capcom license)', + 1999, + array['Giga Wing (USA 990222)'], + array['Arcade'], + '{"mame":["gigawing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'giga-wing-2', + 'Giga Wing 2', + 'Takumi / Capcom', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["gwing2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'giga-wing-generations-v2-02j', + 'Giga Wing Generations (v2.02J)', + 'Takumi Corporation', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["gwinggen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'gigandes', + 'Gigandes', + 'East Technology', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["gigandes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_x.cpp"]}'::jsonb + ), + ( + 'gigas-mc-8123-317-5002', + 'Gigas (MC-8123, 317-5002)', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["gigas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freekick.cpp"]}'::jsonb + ), + ( + 'gigas-mark-ii-mc-8123-317-5002', + 'Gigas Mark II (MC-8123, 317-5002)', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["gigasm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freekick.cpp"]}'::jsonb + ), + ( + 'gigatron-ttl-microcomputer', + 'Gigatron TTL Microcomputer', + 'Marcel van Kervinck / Walter Belgers', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["gigatron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/gigatron.cpp"]}'::jsonb + ), + ( + 'gimme-a-break-7-7-85', + 'Gimme A Break (7/7/85)', + 'Bally/Sente', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["gimeabrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'gin-and-cribbage-challenger', + 'Gin & Cribbage Challenger', + 'Fidelity Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["gincribc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/card.cpp"]}'::jsonb + ), + ( + 'ginga-ninkyouden', + 'Ginga Ninkyouden', + 'Jaleco', + 1987, + array['Ginga Ninkyouden (set 1)'], + array['Arcade'], + '{"mame":["ginganin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ginganin.cpp"]}'::jsonb + ), + ( + 'gionbana', + 'Gionbana', + 'Nichibutsu', + 1989, + array['Gionbana (Japan 890120)', 'Gionbana (Japan 890207, medal)'], + array['Arcade'], + '{"mame":["gionbana","mgion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'girotutto', + 'GiroTutto', + 'High Video', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["girotutt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'gizmondo', + 'Gizmondo', + 'Tiger Telematics', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gizmondo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tigertel/gizmondo.cpp"]}'::jsonb + ), + ( + 'gladiator', + 'Gladiator', + 'Allumer / Taito America Corporation', + 1986, + array['Gladiator (US)'], + array['Arcade'], + '{"mame":["gladiatr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/gladiatr.cpp"]}'::jsonb + ), + ( + 'gladiator-1984', + 'Gladiator 1984', + 'SNK', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sgladiat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'glass', + 'Glass', + 'OMK / Gaelco', + 1994, + array['Glass (ver 1.1, Break Edition, checksum 49D5E66B, Version 1994, set 1)'], + array['Arcade'], + '{"mame":["glass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/glass.cpp"]}'::jsonb + ), + ( + 'global-vr-xp-os-install-09-30-01', + 'Global VR XP OS Install - 09/30/01', + 'Global VR', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gvrxpsys"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'global-vr-xp-os-update-install-06-11-02', + 'Global VR XP OS Update/Install - 06/11/02', + 'Global VR', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["gvrxpsup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'gnome', + 'Gnome', + 'Igrosoft', + 2007, + array['Gnome (100326 World)'], + array['Arcade'], + '{"mame":["gnome_9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'go-and-stop', + 'Go & Stop', + 'Astro Corp.', + 2004, + array['Go & Stop (Ver. EN1.10)'], + array['Arcade'], + '{"mame":["gostopac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'go-2000', + 'Go 2000', + 'SunA', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["go2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/go2000.cpp"]}'::jsonb + ), + ( + 'go-go-cowboy-english-prize', + 'Go Go Cowboy (English, prize)', + 'Sammy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["gocowboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'go-go-mr-yamaguchi-yuke-yuke-yamaguchi-kun', + 'Go Go Mr. Yamaguchi / Yuke Yuke Yamaguchi-kun', + 'Kaneko / Taito', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["yamagchi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tsamurai.cpp"]}'::jsonb + ), + ( + 'go-retro-portable-260-games', + 'Go Retro Portable 260+ Games', + 'Retro-Bit', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["goretrop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'go-go-connie-chan-asobou-mouse', + 'Go! Go! Connie-chan! Asobou Mouse', + 'Bandai', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["bandggcn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'goal-to-go', + 'Goal To Go', + 'Stern Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["goaltogo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/cliffhgr.cpp"]}'::jsonb + ), + ( + 'goal-goal-goal', + 'Goal! Goal! Goal!', + 'Visco', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["goalx3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'goalie-ghost', + 'Goalie Ghost', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["gghost"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'godzilla', + 'Godzilla', + 'Banpresto', + 1993, + array['Godzilla (Japan)'], + array['Arcade'], + '{"mame":["godzilla"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/legionna.cpp"]}'::jsonb + ), + ( + 'gogetsuji-legends', + 'Gogetsuji Legends', + 'Atlus', + 1995, + array['Gogetsuji Legends (US, Ver. 95.06.20)'], + array['Arcade'], + '{"mame":["plegends"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'goindol', + 'Goindol', + 'SunA', + 1987, + array['Goindol (SunA, World)'], + array['Arcade'], + '{"mame":["goindol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/goindol.cpp"]}'::jsonb + ), + ( + 'gold-bug', + 'Gold Bug', + 'Century Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["goldbug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'gold-city-atronic', + 'Gold City (Atronic)', + 'Atronic', + 2002, + array['Gold City (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["goldcity"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'gold-line', + 'Gold Line', + 'Cointek Enterprise Corp', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["goldline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cointek.cpp"]}'::jsonb + ), + ( + 'gold-medalist', + 'Gold Medalist', + 'SNK', + 1988, + array['Gold Medalist (set 1, Alpha68k II PCB)'], + array['Arcade'], + '{"mame":["goldmedl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k.cpp"]}'::jsonb + ), + ( + 'gold-strike', + 'Gold Strike', + 'Cobra', + null, + array['Gold Strike (Japan, v1.1.1 - location test)'], + array['Arcade'], + '{"mame":["goldstrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'goldart-spain', + 'Goldart (Spain)', + 'Gaelco / Covielsa', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["goldart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/goldart.cpp"]}'::jsonb + ), + ( + 'golden-arrow-standard-g8-03', + 'Golden Arrow (Standard G8-03)', + 'Meyco Games, Inc.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["gldarrow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/meyc8088.cpp"]}'::jsonb + ), + ( + 'golden-axe-the-duel-juetl-950117-v1-000', + 'Golden Axe - The Duel (JUETL 950117 V1.000)', + 'Sega', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gaxeduel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'golden-axe-8751-317-123a', + 'Golden Axe (8751 317-123A)', + 'Sega', + 1989, + array['Golden Axe (set 6, US) (8751 317-123A)'], + array['Arcade'], + '{"mame":["goldnaxe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'golden-axe-mega-tech', + 'Golden Axe (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_gaxe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'golden-axe-ii-mega-play', + 'Golden Axe II (Mega Play)', + 'Sega', + 1993, + array['Golden Axe II (Mega Play) (Rev B)'], + array['Arcade'], + '{"mame":["mp_gaxe2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'golden-axe-ii-mega-tech', + 'Golden Axe II (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_gaxe2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'golden-axe-the-revenge-of-death-adder', + 'Golden Axe: The Revenge of Death Adder', + 'Sega', + 1992, + array['Golden Axe: The Revenge of Death Adder (World, Rev B)'], + array['Arcade'], + '{"mame":["ga2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'golden-egg', + 'Golden Egg', + 'LSE', + 1999, + array['Golden Egg (version U1.8)'], + array['Arcade'], + '{"mame":["goldnegg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funtech/funtech_h8.cpp"]}'::jsonb + ), + ( + 'golden-fire-ii', + 'Golden Fire II', + 'Topis Corp', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["gfire2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mosaic.cpp"]}'::jsonb + ), + ( + 'golden-glenn-atronic', + 'Golden Glenn (Atronic)', + 'Atronic', + 2002, + array['Golden Glenn (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["goldglen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'golden-joker', + 'Golden Joker', + 'Webak Elektronik', + 1996, + array['Golden Joker (Ver 16.06UNG-25, set 1)'], + array['Arcade'], + '{"mame":["goldnjkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mpu12wbk.cpp"]}'::jsonb + ), + ( + 'golden-number', + 'Golden Number', + 'BRL Bologna', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["gnumber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'golden-par-golf-joystick-v1-1', + 'Golden Par Golf (Joystick, v1.1)', + 'Strata / Incredible Technologies', + 1992, + '{}'::text[], + array['Sports'], + '{"mame":["gpgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'golden-region', + 'Golden Region', + 'Konami', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["glregion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/goldenregion.cpp"]}'::jsonb + ), + ( + 'golden-star', + 'Golden Star', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["goldstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'golden-tee-97-v1-30', + 'Golden Tee ''97 (v1.30)', + 'Incredible Technologies', + 1997, + '{}'::text[], + array['Sports'], + '{"mame":["gt97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'golden-tee-98-v1-10', + 'Golden Tee ''98 (v1.10)', + 'Incredible Technologies', + 1998, + '{}'::text[], + array['Sports'], + '{"mame":["gt98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'golden-tee-99-v1-00', + 'Golden Tee ''99 (v1.00)', + 'Incredible Technologies', + 1999, + '{}'::text[], + array['Sports'], + '{"mame":["gt99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'golden-tee-2k-v1-00', + 'Golden Tee 2K (v1.00)', + 'Incredible Technologies', + 2000, + '{}'::text[], + array['Sports'], + '{"mame":["gt2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'golden-tee-3d-golf-v1-93n', + 'Golden Tee 3D Golf (v1.93N)', + 'Incredible Technologies', + 1995, + '{}'::text[], + array['Sports'], + '{"mame":["gt3d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'golden-tee-classic-v1-00', + 'Golden Tee Classic (v1.00)', + 'Incredible Technologies', + 2001, + '{}'::text[], + array['Sports', 'Classic'], + '{"mame":["gtclassc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'golden-tee-fore-v1-00-25', + 'Golden Tee Fore! (v1.00.25)', + 'Incredible Technologies', + 2000, + '{}'::text[], + array['Sports'], + '{"mame":["gtfore01"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'golden-tee-fore-2002-v2-01-06', + 'Golden Tee Fore! 2002 (v2.01.06)', + 'Incredible Technologies', + 2001, + '{}'::text[], + array['Sports'], + '{"mame":["gtfore02"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'golden-tee-fore-2003-v3-00-10', + 'Golden Tee Fore! 2003 (v3.00.10)', + 'Incredible Technologies', + 2002, + '{}'::text[], + array['Sports'], + '{"mame":["gtfore03"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'golden-tee-fore-2004-extra-v4-00-08', + 'Golden Tee Fore! 2004 Extra (v4.00.08)', + 'Incredible Technologies', + 2003, + '{}'::text[], + array['Sports'], + '{"mame":["gtfore04"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'golden-tee-fore-2005-extra-v5-01-06', + 'Golden Tee Fore! 2005 Extra (v5.01.06)', + 'Incredible Technologies', + 2004, + '{}'::text[], + array['Sports'], + '{"mame":["gtfore05"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'golden-tee-fore-2006-complete-v6-00-01', + 'Golden Tee Fore! 2006 Complete (v6.00.01)', + 'Incredible Technologies', + 2005, + '{}'::text[], + array['Sports'], + '{"mame":["gtfore06"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'golden-tee-golf-joystick-v3-3', + 'Golden Tee Golf (Joystick, v3.3)', + 'Strata / Incredible Technologies', + 1990, + '{}'::text[], + array['Sports'], + '{"mame":["gtg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'golden-tee-golf-ii-trackball-v2-2', + 'Golden Tee Golf II (Trackball, v2.2)', + 'Strata / Incredible Technologies', + 1992, + '{}'::text[], + array['Sports'], + '{"mame":["gtg2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'golden-treasure-island', + 'Golden Treasure Island', + 'Subsino (American Alpha license)', + null, + array['Golden Treasure Island (Ver. Alpha 100)'], + array['Arcade'], + '{"mame":["goldenti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'golf-playchoice-10', + 'Golf (PlayChoice-10)', + 'Nintendo', + 1984, + '{}'::text[], + array['Sports'], + '{"mame":["pc_golf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'golfing-greats', + 'Golfing Greats', + 'Konami', + 1991, + array['Golfing Greats (World, version L)'], + array['Arcade'], + '{"mame":["glfgreat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'golgo-13', + 'Golgo 13', + 'Eighting / Raizing / Namco', + 1999, + array['Golgo 13 (Japan, GLG1/VER.A)'], + array['Arcade'], + '{"mame":["golgo13"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'golgo-13-kiseki-no-dandou', + 'Golgo 13 Kiseki no Dandou', + 'Eighting / Raizing / Namco', + 2000, + array['Golgo 13 Kiseki no Dandou (Japan, GLS1/VER.A)'], + array['Arcade'], + '{"mame":["g13knd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'golgo-13-juusei-no-requiem', + 'Golgo 13: Juusei no Requiem', + 'Eighting / Raizing / Namco', + 2001, + array['Golgo 13: Juusei no Requiem (Japan, GLT1 VER.A)'], + array['Arcade'], + '{"mame":["g13jnr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'golly-ghost', + 'Golly! Ghost!', + 'Namco', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["gollygho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'gomoku-computer', + 'Gomoku Computer', + 'Novag Industries', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ngomoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/gomoku.cpp"]}'::jsonb + ), + ( + 'gomoku-narabe-renju', + 'Gomoku Narabe Renju', + 'Nichibutsu', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["gomoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/gomoku.cpp"]}'::jsonb + ), + ( + 'gondomania', + 'Gondomania', + 'Data East Corporation', + 1987, + array['Gondomania (World)'], + array['Arcade'], + '{"mame":["gondo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'gone-fishing', + 'Gone Fishing', + 'IGS', + 2002, + array['Gone Fishing (V602US)'], + array['Arcade'], + '{"mame":["gonefsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'gone-fishing-2', + 'Gone Fishing 2', + 'IGS', + 2002, + array['Gone Fishing 2 (ver. 1445A)'], + array['Arcade'], + '{"mame":["gonefsh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'good', + 'Good', + '', + 1998, + array['Good (Korea)'], + array['Arcade'], + '{"mame":["good"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/good.cpp"]}'::jsonb + ), + ( + 'good-luck-ii', + 'Good Luck II', + 'Yung Yu / CYE', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["gluck2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gluck2.cpp"]}'::jsonb + ), + ( + 'good-luck', + 'Good Luck!', + 'General Instrument?', + null, + array['Good Luck! (dual 6809 GI Australasia PCB)'], + array['Arcade'], + '{"mame":["glck6809"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gi6809.cpp"]}'::jsonb + ), + ( + 'goori-goori', + 'Goori Goori', + 'Unico', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["goori"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/goori.cpp"]}'::jsonb + ), + ( + 'gorf', + 'Gorf', + 'Dave Nutting Associates / Midway', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["gorf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'got-cha-mini-game-festival', + 'Got-cha Mini Game Festival', + 'Dongsung / Para', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["gotcha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gotcha.cpp"]}'::jsonb + ), + ( + 'gouketsuji-ichizoku-senzo-kuyou-v200906230', + 'Gouketsuji Ichizoku: Senzo Kuyou (v200906230)', + 'Atlus', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["goketsuj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'gp-rider', + 'GP Rider', + 'Sega', + 1990, + array['GP Rider (World, FD1094 317-0163) (Twin setup)'], + array['Arcade'], + '{"mame":["gprider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'gp-world', + 'GP World', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["gpworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/gpworld.cpp"]}'::jsonb + ), + ( + 'gp2x', + 'GP2X', + 'Game Park Holdings', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gp2x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gamepark/gp2x.cpp"]}'::jsonb + ), + ( + 'gp32', + 'GP32', + 'Game Park Holdings', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gp32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gamepark/gp32.cpp"]}'::jsonb + ), + ( + 'gpi-1200', + 'GPi 1200', + 'Goldstar', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["gpi1200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'gradius-bubble-system', + 'Gradius (Bubble System)', + 'Konami', + 1985, + '{}'::text[], + array['Shooter'], + '{"mame":["gradiusb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'gradius-playchoice-10', + 'Gradius (PlayChoice-10)', + 'Konami', + 1986, + '{}'::text[], + array['Shooter'], + '{"mame":["pc_grdus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'gradius-iii', + 'Gradius III', + 'Konami', + 1989, + array['Gradius III (World, version R)'], + array['Shooter'], + '{"mame":["gradius3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gradius3.cpp"]}'::jsonb + ), + ( + 'gradius-iv-fukkatsu', + 'Gradius IV: Fukkatsu', + 'Konami', + 1998, + array['Gradius IV: Fukkatsu (ver JAC)'], + array['Shooter'], + '{"mame":["gradius4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hornet.cpp"]}'::jsonb + ), + ( + 'gran-capitan', + 'Gran Capitan', + 'High Video', + 2000, + array['Gran Capitan (Version 3)'], + array['Arcade'], + '{"mame":["grancapi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'gran-trak-10-trak-10-formula-k', + 'Gran Trak 10/Trak 10/Formula K', + 'Atari/Kee', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrak10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'gran-trak-20-trak-20-twin-racer', + 'Gran Trak 20/Trak 20/Twin Racer', + 'Atari/Kee', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrak20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'grand-canyon-ukraine-v-43-09', + 'Grand Canyon (Ukraine, V. 43.09)', + 'Extrema', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["grancan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'grand-champion', + 'Grand Champion', + 'Taito', + 1981, + array['Grand Champion (set 1)'], + array['Arcade'], + '{"mame":["grchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/grchamp.cpp"]}'::jsonb + ), + ( + 'grand-cross-v1-02f', + 'Grand Cross (v1.02F)', + 'Excellent System', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gcpinbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/gcpinbal.cpp"]}'::jsonb + ), + ( + 'grand-prix', + 'Grand Prix', + '4fun', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["grandprx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl3.cpp"]}'::jsonb + ), + ( + 'grand-prix-98', + 'Grand Prix ''98', + 'Romtec Co. Ltd', + 1998, + array['Grand Prix ''98 (V100K, set 1)'], + array['Arcade'], + '{"mame":["gp98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs009.cpp"]}'::jsonb + ), + ( + 'grand-prix-star', + 'Grand Prix Star', + 'Jaleco', + 1992, + array['Grand Prix Star (ver 4.0)'], + array['Arcade'], + '{"mame":["f1gpstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'grand-slam-mega-play', + 'Grand Slam (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_gslam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'grand-striker', + 'Grand Striker', + 'Human', + 1993, + array['Grand Striker (Europe, Oceania)'], + array['Arcade'], + '{"mame":["gstriker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/gstriker.cpp"]}'::jsonb + ), + ( + 'grand-striker-2', + 'Grand Striker 2', + 'Human Amusement', + 1996, + array['Grand Striker 2 (Europe and Oceania)'], + array['Arcade'], + '{"mame":["gstrik2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'grand-tour-v100u', + 'Grand Tour (V100U)', + 'IGS', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["grndtour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/iqblock.cpp"]}'::jsonb + ), + ( + 'grande-fratello', + 'Grande Fratello', + '', + null, + array['Grande Fratello (Ver. 1.7)'], + array['Arcade'], + '{"mame":["granfrat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'grasspin', + 'Grasspin', + 'Zilec Electronics / Jaleco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["grasspin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/blueprnt.cpp"]}'::jsonb + ), + ( + 'gratia-second-earth', + 'Gratia - Second Earth', + 'Jaleco', + 1996, + array['Gratia - Second Earth (ver 1.0, 92047-01 version)'], + array['Arcade'], + '{"mame":["gratia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'gravitar', + 'Gravitar', + 'Atari', + 1982, + array['Gravitar (version 3)'], + array['Arcade'], + '{"mame":["gravitar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bwidow.cpp"]}'::jsonb + ), + ( + 'great-bishi-bashi-champ', + 'Great Bishi Bashi Champ', + 'Konami', + 2002, + array['Great Bishi Bashi Champ (GBA48 VER. JAB)'], + array['Arcade'], + '{"mame":["gbbchmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'great-football-mega-tech-sms-based', + 'Great Football (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Sports'], + '{"mame":["mt_gfoot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'great-game-machine', + 'Great Game Machine', + 'Applied Concepts / Chafitz', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ggm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["appliedconcepts/ggm.cpp"]}'::jsonb + ), + ( + 'great-golf-mega-tech-sms-based', + 'Great Golf (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Sports'], + '{"mame":["mt_ggolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'great-guns', + 'Great Guns', + 'Stern Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["greatgun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/mazerbla.cpp"]}'::jsonb + ), + ( + 'great-sluggers', + 'Great Sluggers', + 'Namco', + 1993, + array['Great Sluggers (Japan)'], + array['Arcade'], + '{"mame":["gslugrsj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'great-sluggers-94', + 'Great Sluggers ''94', + 'Namco', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gslgr94u"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'great-soccer-mega-tech-sms-based', + 'Great Soccer (Mega-Tech, SMS based)', + 'Sega', + null, + '{}'::text[], + array['Sports'], + '{"mame":["mt_gsocr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'great-swordsman', + 'Great Swordsman', + 'Allumer / Taito Corporation', + 1984, + array['Great Swordsman (World?)'], + array['Arcade'], + '{"mame":["gsword"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/gsword.cpp"]}'::jsonb + ), + ( + 'green-beret', + 'Green Beret', + 'Konami', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["gberet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gberet.cpp"]}'::jsonb + ), + ( + 'green-beret-irem', + 'Green Beret (Irem)', + 'Irem', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["greenber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m10.cpp"]}'::jsonb + ), + ( + 'grid-seeker-project-storm-hammer', + 'Grid Seeker: Project Storm Hammer', + 'Taito Corporation Japan', + 1992, + array['Grid Seeker: Project Storm Hammer (Ver 1.3O)'], + array['Arcade'], + '{"mame":["gseeker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'gridiron-fight', + 'Gridiron Fight', + 'Tehkan', + 1985, + array['Gridiron Fight (World)'], + array['Arcade'], + '{"mame":["gridiron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tehkanwc.cpp"]}'::jsonb + ), + ( + 'gridlee', + 'Gridlee', + 'Videa', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["gridlee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/gridlee.cpp"]}'::jsonb + ), + ( + 'grind-stormer', + 'Grind Stormer', + 'Toaplan', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["grindstm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/vfive.cpp"]}'::jsonb + ), + ( + 'grobda', + 'Grobda', + 'Namco', + 1984, + array['Grobda (New Ver.)'], + array['Arcade'], + '{"mame":["grobda"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'groove-on-fight-gouketsuji-ichizoku-3-j-970416-v1-001', + 'Groove on Fight - Gouketsuji Ichizoku 3 (J 970416 V1.001)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["groovef"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'ground-effects-super-ground-effects', + 'Ground Effects / Super Ground Effects', + 'Taito Corporation', + 1992, + array['Ground Effects / Super Ground Effects (Japan)'], + array['Arcade'], + '{"mame":["groundfx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/groundfx.cpp"]}'::jsonb + ), + ( + 'growl', + 'Growl', + 'Taito Corporation Japan', + 1990, + array['Growl (World, Rev 1)'], + array['Arcade'], + '{"mame":["growl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'grudge-match', + 'Grudge Match', + 'Bally Midway', + 1987, + array['Grudge Match (v00.90, prototype)'], + array['Arcade'], + '{"mame":["grudge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'grudge-match-yankee-game-technology', + 'Grudge Match (Yankee Game Technology)', + 'Yankee Game Technology', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["grmatch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'gti-club-corso-italiano', + 'GTI Club: Corso Italiano', + 'Konami', + 2000, + array['GTI Club: Corso Italiano (ver JAB)'], + array['Arcade'], + '{"mame":["gticlub2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'gti-club-rally-cote-d-azur', + 'GTI Club: Rally Cote D''Azur', + 'Konami', + 1996, + array['GTI Club: Rally Cote D''Azur (ver EAA)'], + array['Arcade'], + '{"mame":["gticlub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gticlub.cpp"]}'::jsonb + ), + ( + 'guardian', + 'Guardian', + 'Toaplan / Taito America Corporation (Kitkorp license)', + 1986, + array['Guardian (US)'], + array['Arcade'], + '{"mame":["grdian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/slapfght.cpp"]}'::jsonb + ), + ( + 'guardian-force-juet-980318-v0-105', + 'Guardian Force (JUET 980318 V0.105)', + 'Success', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["grdforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'guardian-storm-horizontal-not-encrypted', + 'Guardian Storm (horizontal, not encrypted)', + 'Afega (Apples Industries license)', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["grdnstrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'guardians-denjin-makai-ii-p-fg01-1-pcb', + 'Guardians / Denjin Makai II (P-FG01-1 PCB)', + 'Winkysoft (Banpresto license)', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["grdians"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'guardians-of-the-hood', + 'Guardians of the ''Hood', + 'Atari Games', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["guardian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarig42.cpp"]}'::jsonb + ), + ( + 'guerrilla-war', + 'Guerrilla War', + 'SNK', + 1987, + array['Guerrilla War (US)'], + array['Arcade'], + '{"mame":["gwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'guided-missile', + 'Guided Missile', + 'Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["gmissile"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'guilty-gear-isuka', + 'Guilty Gear Isuka', + 'Arc System Works / Sammy', + 2004, + '{}'::text[], + array['Fighting'], + '{"mame":["ggisuka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'guilty-gear-x', + 'Guilty Gear X', + 'Arc System Works', + 2000, + '{}'::text[], + array['Fighting'], + '{"mame":["ggx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'guilty-gear-x-ver-1-5', + 'Guilty Gear X ver. 1.5', + 'Arc System Works / Sammy', + 2003, + '{}'::text[], + array['Fighting'], + '{"mame":["ggx15"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'guilty-gear-xx-gdl-0011', + 'Guilty Gear XX (GDL-0011)', + 'Arc System Works', + 2002, + '{}'::text[], + array['Fighting'], + '{"mame":["ggxx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'guilty-gear-xx-reload-gdl-0019a', + 'Guilty Gear XX #Reload (GDL-0019A)', + 'Arc System Works', + 2003, + array['Guilty Gear XX #Reload (Japan, Rev A) (GDL-0019A)'], + array['Fighting'], + '{"mame":["ggxxrl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'guilty-gear-xx-accent-core-gdl-0041', + 'Guilty Gear XX Accent Core (GDL-0041)', + 'Arc System Works', + 2006, + array['Guilty Gear XX Accent Core (Japan) (GDL-0041)'], + array['Fighting'], + '{"mame":["ggxxac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'guilty-gear-xx-slash-gdl-0033a', + 'Guilty Gear XX Slash (GDL-0033A)', + 'Arc System Works', + 2005, + array['Guilty Gear XX Slash (Japan, Rev A) (GDL-0033A)'], + array['Fighting'], + '{"mame":["ggxxsla"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-10th-mix', + 'Guitar Freaks 10th Mix', + 'Konami', + 2003, + array['Guitar Freaks 10th Mix (G*D10 VER. JAB)'], + array['Arcade'], + '{"mame":["gtfrk10m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-11th-mix', + 'Guitar Freaks 11th Mix', + 'Konami', + 2004, + array['Guitar Freaks 11th Mix (G*D39 VER. JAA)'], + array['Arcade'], + '{"mame":["gtfrk11m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-2nd-mix-ver-1-01', + 'Guitar Freaks 2nd Mix Ver 1.01', + 'Konami', + 1999, + array['Guitar Freaks 2nd Mix Ver 1.01 (GQ883 VER. JAD)'], + array['Arcade'], + '{"mame":["gtrfrk2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-3rd-mix', + 'Guitar Freaks 3rd Mix', + 'Konami', + 2000, + array['Guitar Freaks 3rd Mix (GE949 VER. JAC)'], + array['Arcade'], + '{"mame":["gtrfrk3m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-4th-mix', + 'Guitar Freaks 4th Mix', + 'Konami', + 2000, + array['Guitar Freaks 4th Mix (G*A24 VER. JAA)'], + array['Arcade'], + '{"mame":["gtrfrk4m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-5th-mix', + 'Guitar Freaks 5th Mix', + 'Konami', + 2001, + array['Guitar Freaks 5th Mix (G*A26 VER. JAA)'], + array['Arcade'], + '{"mame":["gtrfrk5m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-6th-mix', + 'Guitar Freaks 6th Mix', + 'Konami', + 2001, + array['Guitar Freaks 6th Mix (G*B06 VER. JAA)'], + array['Arcade'], + '{"mame":["gtrfrk6m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-7th-mix', + 'Guitar Freaks 7th Mix', + 'Konami', + 2001, + array['Guitar Freaks 7th Mix (G*B17 VER. JAA)'], + array['Arcade'], + '{"mame":["gtrfrk7m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-8th-mix-power-up-ver', + 'Guitar Freaks 8th Mix power-up ver.', + 'Konami', + 2002, + array['Guitar Freaks 8th Mix power-up ver. (G*C08 VER. JBA)'], + array['Arcade'], + '{"mame":["gtrfrk8m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-9th-mix', + 'Guitar Freaks 9th Mix', + 'Konami', + 2003, + array['Guitar Freaks 9th Mix (G*C39 VER. JAA)'], + array['Arcade'], + '{"mame":["gtrfrk9m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-v-e03-a-a-a-2005050200', + 'Guitar Freaks V (E03:A:A:A:2005050200)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrfrkva"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-v-e03-j-a-a-2005050200', + 'Guitar Freaks V (E03:J:A:A:2005050200)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrfrkvj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-v2-f03-a-a-a-2006011201', + 'Guitar Freaks V2 (F03:A:A:A:2006011201)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrfrkv2a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-v2-f03-j-a-a-2006011201', + 'Guitar Freaks V2 (F03:J:A:A:2006011201)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrfrkv2j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-v3-f33-a-a-a-2006101800', + 'Guitar Freaks V3 (F33:A:A:A:2006101800)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrfrkv3a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-v3-f33-j-a-a-2006101800', + 'Guitar Freaks V3 (F33:J:A:A:2006101800)', + 'Konami', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrfrkv3j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'guitar-freaks-ver-1-01', + 'Guitar Freaks Ver 1.01', + 'Konami', + 1999, + array['Guitar Freaks Ver 1.01 (GQ886 VER. EAD)'], + array['Arcade'], + '{"mame":["gtrfrks"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'guitar-hero-arcade-v1-0-5', + 'Guitar Hero Arcade (v1.0.5)', + 'Raw Thrills (Activision / Konami license)', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["gtrhroac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/rawthrillspc.cpp"]}'::jsonb + ), + ( + 'gulf-storm', + 'Gulf Storm', + 'Dooyong', + 1991, + array['Gulf Storm (set 1)'], + array['Arcade'], + '{"mame":["gulfstrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'gulf-war-ii', + 'Gulf War II', + 'Comad', + 1991, + array['Gulf War II (set 1)'], + array['Arcade'], + '{"mame":["gulfwar2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/twincobr.cpp"]}'::jsonb + ), + ( + 'gulun-pa', + 'Gulun.Pa!', + 'Capcom', + 1993, + array['Gulun.Pa! (Japan 931220 L) (prototype)'], + array['Arcade'], + '{"mame":["gulunpa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'gumbo', + 'Gumbo', + 'Min Corp.', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gumbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gumbo.cpp"]}'::jsonb + ), + ( + 'gun-and-frontier', + 'Gun & Frontier', + 'Taito Corporation Japan', + 1990, + array['Gun & Frontier (World)'], + array['Arcade'], + '{"mame":["gunfront"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'gun-champ', + 'Gun Champ', + 'Model Racing', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["gunchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'gun-dealer', + 'Gun Dealer', + 'Dooyong', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["gundealr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/gundealr.cpp"]}'::jsonb + ), + ( + 'gun-dealer-94', + 'Gun Dealer ''94', + 'Dooyong', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gundl94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'gun-fight', + 'Gun Fight', + 'Dave Nutting Associates / Midway', + 1975, + array['Gun Fight (set 1)'], + array['Arcade'], + '{"mame":["gunfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'gun-force-ii', + 'Gun Force II', + 'Irem', + 1994, + array['Gun Force II (US)'], + array['Arcade'], + '{"mame":["gunforc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'gun-master', + 'Gun Master', + 'Metro', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gunmast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'gun-survivor-2-biohazard-code-veronica', + 'Gun Survivor 2 Biohazard Code: Veronica', + 'Capcom / Namco', + 2001, + array['Gun Survivor 2 Biohazard Code: Veronica (World, BHF2 Ver.E)'], + array['Arcade'], + '{"mame":["gunsur2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'gun-smoke', + 'Gun.Smoke', + 'Capcom', + 1985, + array['Gun.Smoke (World, 1985-11-15)'], + array['Arcade'], + '{"mame":["gunsmoke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/gunsmoke.cpp"]}'::jsonb + ), + ( + 'gunbarich', + 'Gunbarich', + 'Psikyo', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gnbarich"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'gunbird', + 'Gunbird', + 'Psikyo', + 1994, + array['Gunbird (World)'], + array['Arcade'], + '{"mame":["gunbird"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo.cpp"]}'::jsonb + ), + ( + 'gunbird-2', + 'Gunbird 2', + 'Psikyo', + 1998, + array['Gunbird 2 (set 1)'], + array['Arcade'], + '{"mame":["gunbird2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'gunblade-ny', + 'Gunblade NY', + 'Sega', + 1995, + array['Gunblade NY (Revision A)'], + array['Light gun'], + '{"mame":["gunblade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'gunbuster', + 'Gunbuster', + 'Taito Corporation Japan', + 1992, + array['Gunbuster (World)'], + array['Arcade'], + '{"mame":["gunbustr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/gunbustr.cpp"]}'::jsonb + ), + ( + 'gundam-battle-operating-simulator-gdx-0013', + 'Gundam Battle Operating Simulator (GDX-0013)', + 'Banpresto', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gundamos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'gundam-rx-78', + 'Gundam RX-78', + 'Bandai', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["rx78"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bandai/rx78.cpp"]}'::jsonb + ), + ( + 'gundam-seed-federation-vs-z-a-f-t', + 'Gundam Seed: Federation vs. Z.A.F.T.', + 'Capcom / Banpresto', + 2005, + array['Gundam Seed: Federation vs. Z.A.F.T. (SED1 Ver. A)'], + array['Arcade'], + '{"mame":["gundzaft"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'gundam-vs-gundam', + 'Gundam vs. Gundam', + 'Capcom / Bandai', + 2008, + array['Gundam vs. Gundam (GVS1 Ver. A)'], + array['Arcade'], + '{"mame":["gdvsgd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'gundam-vs-gundam-next', + 'Gundam vs. Gundam Next', + 'Capcom / Bandai', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["gdvsgdnx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'gundam-wing-endless-duel', + 'Gundam Wing: Endless Duel', + 'bootleg', + 1996, + array['Gundam Wing: Endless Duel (SNES bootleg, set 1)'], + array['Arcade'], + '{"mame":["endless"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'gundhara', + 'Gundhara', + 'Banpresto', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["gundhara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'gunforce-battle-fire-engulfed-terror-island', + 'Gunforce: Battle Fire Engulfed Terror Island', + 'Irem', + 1991, + array['Gunforce: Battle Fire Engulfed Terror Island (World)'], + array['Arcade'], + '{"mame":["gunforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'gunlock', + 'Gunlock', + 'Taito Corporation Japan', + 1993, + array['Gunlock (Ver 2.3O 1994/01/20)'], + array['Arcade'], + '{"mame":["gunlock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'gunman', + 'Gunman', + 'Taito', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["gunman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 'gunmania', + 'GunMania', + 'Konami', + 2000, + array['GunMania (GL906 VER. JAA)'], + array['Arcade'], + '{"mame":["gunmania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'gunmen-wars', + 'Gunmen Wars', + 'Namco', + 1998, + array['Gunmen Wars (Japan, GM1 Ver. B)'], + array['Arcade'], + '{"mame":["gunwars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'gunnail-28th-may-1992', + 'GunNail (28th May. 1992)', + 'NMK / Tecmo', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["gunnail"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'gunpey', + 'Gunpey', + 'Bandai / Banpresto', + 2000, + array['Gunpey (Japan)'], + array['Arcade'], + '{"mame":["gunpey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gunpey.cpp"]}'::jsonb + ), + ( + 'gunstar-heroes-mega-play', + 'Gunstar Heroes (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_gunhe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'gunstar-heroes-snake-rattle-n-roll-joe-and-mac', + 'Gunstar Heroes / Snake Rattle n'' Roll / Joe & Mac', + 'bootleg', + 1995, + array['Gunstar Heroes / Snake Rattle n'' Roll / Joe & Mac (Conny bootleg of Mega Drive versions)'], + array['Arcade'], + '{"mame":["3in1mbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'gururin', + 'Gururin', + 'Face', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gururin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'guts-n-glory', + 'Guts n'' Glory', + 'Atari Games', + 1989, + array['Guts n'' Glory (prototype)'], + array['Arcade'], + '{"mame":["guts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/eprom.cpp"]}'::jsonb + ), + ( + 'guts-n', + 'Guts''n', + 'Kaneko / Kouyousha', + 2000, + array['Guts''n (Japan)'], + array['Arcade'], + '{"mame":["gutsn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'guwange', + 'Guwange', + 'Cave (Atlus license)', + 1999, + array['Guwange (Japan, 1999 6/24 Master Ver 16:55)'], + array['Arcade'], + '{"mame":["guwange"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'guzzler', + 'Guzzler', + 'Tehkan', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["guzzler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'gwasuwon', + 'Gwasuwon', + 'SemiCom / DMD', + 1997, + array['Gwasuwon (Korea)'], + array['Arcade'], + '{"mame":["gwasu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'gyakuten-puzzle-bancho', + 'Gyakuten!! Puzzle Bancho', + 'Fuuki', + 1996, + array['Gyakuten!! Puzzle Bancho (Japan, set 1)'], + array['Puzzle'], + '{"mame":["pbancho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fuuki/fuukifg2.cpp"]}'::jsonb + ), + ( + 'gypsy-juggler', + 'Gypsy Juggler', + 'Meadows Games, Inc.', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["gypsyjug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadows.cpp"]}'::jsonb + ), + ( + 'gypsy-magic', + 'Gypsy Magic', + 'Konami', + null, + array['Gypsy Magic (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["gypmagic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'gyrodine', + 'Gyrodine', + 'Crux', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["gyrodine"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/kyugo.cpp"]}'::jsonb + ), + ( + 'gyruss', + 'Gyruss', + 'Konami', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["gyruss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gyruss.cpp"]}'::jsonb + ), + ( + 'gz-70sp', + 'GZ-70SP', + 'Casio', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["gz70sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ctk551.cpp"]}'::jsonb + ), + ( + 'h-01-jce', + 'H-01 JCE', + 'China Jiangmen Computer Equipment Factory', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["h01jce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/h01x.cpp"]}'::jsonb + ), + ( + 'h-01b', + 'H-01B', + 'China H Computer Company', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["h01b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/h01x.cpp"]}'::jsonb + ), + ( + 'h-89', + 'H-89', + 'Heath Company', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["h89"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["heathzenith/h89.cpp"]}'::jsonb + ), + ( + 'h12-pro-1000-in-1-handheld-game-console', + 'H12 Pro 1000 in 1 Handheld Game Console', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["h12p1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'hacha-mecha-fighter', + 'Hacha Mecha Fighter', + 'NMK', + 1991, + array['Hacha Mecha Fighter (19th Sep. 1991, protected, set 1)'], + array['Arcade'], + '{"mame":["hachamf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'hachoo', + 'Hachoo!', + 'Jaleco', + 1989, + array['Hachoo! (World, set 1)'], + array['Arcade'], + '{"mame":["hachoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'hae-hae-ka-ka-ka', + 'Hae Hae Ka Ka Ka', + 'Sammy', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["haekaka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'hal21', + 'HAL21', + 'SNK', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hal21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'halley-s-comet', + 'Halley''s Comet', + 'Taito America Corporation (Coin-It license)', + 1986, + array['Halley''s Comet (US)'], + array['Arcade'], + '{"mame":["halleysc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/halleys.cpp"]}'::jsonb + ), + ( + 'halloween', + 'Halloween', + 'Ming-Yang Electronic / TSK', + 2006, + array['Halloween (Ming-Yang Electronic / TSK, version 1.0)'], + array['Arcade'], + '{"mame":["halltsk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'halloween-party', + 'Halloween Party', + 'Astro Corp.', + 2005, + array['Halloween Party (US.23.A)'], + array['Arcade'], + '{"mame":["hwparty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'hammer', + 'Hammer', + 'Andamiro', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["hammer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/midas.cpp"]}'::jsonb + ), + ( + 'hammer-away', + 'Hammer Away', + 'Sega / Santos', + 1991, + array['Hammer Away (Japan, prototype)'], + array['Arcade'], + '{"mame":["hamaway"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'hammer-boy', + 'Hammer Boy', + 'Dinamic / Inder', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["hamboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/megaphx.cpp"]}'::jsonb + ), + ( + 'hammer-champ', + 'Hammer Champ', + 'Namco', + 1997, + array['Hammer Champ (Japan)'], + array['Arcade'], + '{"mame":["hammerch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcoeva.cpp"]}'::jsonb + ), + ( + 'hammerin-harry', + 'Hammerin'' Harry', + 'Irem', + 1990, + array['Hammerin'' Harry (World, M81 hardware)'], + array['Arcade'], + '{"mame":["hharry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'hana-arashi', + 'Hana Arashi', + 'Asahi Bussan', + 1993, + array['Hana Arashi (Japan)'], + array['Arcade'], + '{"mame":["harashi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/speedatk.cpp"]}'::jsonb + ), + ( + 'hana-awase', + 'Hana Awase', + 'Seta Kikaku', + 1982, + array['Hana Awase (set 1)'], + array['Arcade'], + '{"mame":["hanaawas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/hanaawas.cpp"]}'::jsonb + ), + ( + 'hana-awase-6-part-ii', + 'Hana Awase 6 Part II', + 'Alba', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["hana6pt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/albazg.cpp"]}'::jsonb + ), + ( + 'hana-doujou', + 'Hana Doujou', + 'Alba', + 1984, + array['Hana Doujou (set 1)'], + array['Arcade'], + '{"mame":["hanadojo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/hanadojo.cpp"]}'::jsonb + ), + ( + 'hana-jingi', + 'Hana Jingi', + 'Dynax', + 1990, + array['Hana Jingi (Japan set 1)'], + array['Arcade'], + '{"mame":["hjingi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'hana-kagerou', + 'Hana Kagerou', + 'Nakanihon / Dynax', + 1997, + array['Hana Kagerou (Japan)'], + array['Arcade'], + '{"mame":["hkagerou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hana-kanzashi', + 'Hana Kanzashi', + 'Dynax', + 1996, + array['Hana Kanzashi (Japan)'], + array['Arcade'], + '{"mame":["hanakanz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hana-no-mai', + 'Hana no Mai', + 'Dynax', + 1988, + array['Hana no Mai (Japan)'], + array['Arcade'], + '{"mame":["hanamai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'hana-no-ren-chan-ii', + 'Hana no Ren-Chan II', + 'K & K Electron', + 1985, + array['Hana no Ren-Chan II (Japan)'], + array['Arcade'], + '{"mame":["hanaren2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/speedatk.cpp"]}'::jsonb + ), + ( + 'hana-to-ojisan', + 'Hana to Ojisan', + 'Nichibutsu', + 1991, + array['Hana to Ojisan (ver 1.01, 1991/12/09)'], + array['Arcade'], + '{"mame":["hanaoji"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'hana-wo-yaraneba', + 'Hana wo Yaraneba!', + 'Dynax', + 1991, + array['Hana wo Yaraneba! (Japan)'], + array['Arcade'], + '{"mame":["hanayara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'hana-yayoi', + 'Hana Yayoi', + 'Dyna Electronics', + 1987, + array['Hana Yayoi (Japan)'], + array['Arcade'], + '{"mame":["hnayayoi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/hnayayoi.cpp"]}'::jsonb + ), + ( + 'hanabi-de-doon-don-chan-puzzle', + 'Hanabi de Doon! - Don-chan Puzzle', + 'Aruze', + 2003, + '{}'::text[], + array['Puzzle'], + '{"mame":["doncdoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'hanafuda-hana-ginga', + 'Hanafuda Hana Ginga', + 'Dynax', + 1994, + array['Hanafuda Hana Ginga (Japan, ver 1.00, rev 1)'], + array['Arcade'], + '{"mame":["hginga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hanafuda-hana-gokou', + 'Hanafuda Hana Gokou', + 'Dynax (Alba license)', + 1995, + array['Hanafuda Hana Gokou (Japan, ver. B)'], + array['Arcade'], + '{"mame":["hgokou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hanafuda-hana-tengoku', + 'Hanafuda Hana Tengoku', + 'Dynax', + 1992, + array['Hanafuda Hana Tengoku (Japan)'], + array['Arcade'], + '{"mame":["htengoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hanafuda-hana-tsubaki', + 'Hanafuda Hana Tsubaki', + 'Dynax', + 1999, + array['Hanafuda Hana Tsubaki (Japan)'], + array['Arcade'], + '{"mame":["htsubaki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hanafuda-night-rose', + 'Hanafuda Night Rose', + 'Techno-Top', + 2000, + array['Hanafuda Night Rose (Japan, TSM008-04)'], + array['Arcade'], + '{"mame":["hnrose"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'hanaroku', + 'Hanaroku', + 'Alba', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["hanaroku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/albazc.cpp"]}'::jsonb + ), + ( + 'handheld-210-in-1', + 'Handheld 210 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_hh210"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'handheld-game-console-319-in-1', + 'Handheld Game Console 319-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hhgc319"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'handheld-game-console-339-in-1', + 'Handheld Game Console 339-in-1', + 'BaoBaoLong', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["bl339"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'handivoice-hc-110', + 'HandiVoice HC-110', + 'Votrax/Phonic Mirror', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["hc110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["votrax/votrhv.cpp"]}'::jsonb + ), + ( + 'handy-boy-11-in-1-tv-play-power', + 'Handy Boy 11-in-1 (TV Play Power)', + 'Techno Source / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ts_handy11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'hang-pilot', + 'Hang Pilot', + 'Konami', + 1997, + array['Hang Pilot (ver JAB)'], + array['Arcade'], + '{"mame":["hangplt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gticlub.cpp"]}'::jsonb + ), + ( + 'hang-on', + 'Hang-On', + 'Sega', + 1985, + array['Hang-On (Rev A)'], + array['Arcade'], + '{"mame":["hangon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segahang.cpp"]}'::jsonb + ), + ( + 'hang-on-jr', + 'Hang-On Jr.', + 'Sega', + 1985, + array['Hang-On Jr. (Rev. B)'], + array['Arcade'], + '{"mame":["hangonjr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'hangman', + 'Hangman', + 'Status Games', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["hangman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'hanguk-pro-yagu-98', + 'Hanguk Pro Yagu 98', + 'Deniam', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["hpyagu98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'hangzo', + 'Hangzo', + 'Hot-B', + 1992, + array['Hangzo (Japan, prototype)'], + array['Arcade'], + '{"mame":["hangzo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/rohga.cpp"]}'::jsonb + ), + ( + 'happy-farm', + 'Happy Farm', + 'Astro Corp.', + 2008, + array['Happy Farm (Ver. US.01.02.B)'], + array['Arcade'], + '{"mame":["hapfarm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'happy-fish-v2-pcb-302-in-1', + 'Happy Fish (V2 PCB, 302-in-1)', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hapyfsh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/hapyfish.cpp"]}'::jsonb + ), + ( + 'happy-happy-hippy-atronic', + 'Happy Happy Hippy (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["haphippy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'happy-jackie-v110u', + 'Happy Jackie (v110U)', + 'IGS', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["jackie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/jackie.cpp"]}'::jsonb + ), + ( + 'happy-lucky', + 'Happy Lucky!', + 'Taito Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["haplucky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/haplucky.cpp"]}'::jsonb + ), + ( + 'happy-planet', + 'Happy Planet', + 'Namco', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["hplanet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/sg_vga.cpp"]}'::jsonb + ), + ( + 'happy-skill-italy-v611it', + 'Happy Skill (Italy, V611IT)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["happyskl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'happy-tour-v1-12', + 'Happy Tour (V1.12)', + 'GAV Company', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["hapytour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/ghosteo.cpp"]}'::jsonb + ), + ( + 'hard-drivin', + 'Hard Drivin''', + 'Atari Games', + 1988, + array['Hard Drivin'' (cockpit, rev 7)'], + array['Arcade'], + '{"mame":["harddriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/harddriv.cpp"]}'::jsonb + ), + ( + 'hard-drivin-s-airborne', + 'Hard Drivin''s Airborne', + 'Atari Games', + 1993, + array['Hard Drivin''s Airborne (prototype, rev 2.7)'], + array['Arcade'], + '{"mame":["hdrivair"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/harddriv.cpp"]}'::jsonb + ), + ( + 'hard-dunk', + 'Hard Dunk', + 'Sega', + 1994, + array['Hard Dunk (World)'], + array['Arcade'], + '{"mame":["harddunk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'hard-hat', + 'Hard Hat', + 'Exidy', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hardhat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'hard-head', + 'Hard Head', + 'SunA', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["hardhead"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna8.cpp"]}'::jsonb + ), + ( + 'hard-head-2', + 'Hard Head 2', + 'SunA', + 1991, + array['Hard Head 2 (v2.0, Music Program v2.4)'], + array['Arcade'], + '{"mame":["hardhea2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna8.cpp"]}'::jsonb + ), + ( + 'hard-puncher-hajime-no-ippo-the-fighting', + 'Hard Puncher Hajime no Ippo - The Fighting!', + 'Taito', + 2001, + array['Hard Puncher Hajime no Ippo - The Fighting! (VER.2.02J)'], + array['Arcade'], + '{"mame":["ippo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'hard-puncher-hajime-no-ippo-2-the-fighting-ouja-e-no-chousen', + 'Hard Puncher Hajime no Ippo 2 - The Fighting! - Ouja e no chousen', + 'Taito', + 2002, + array['Hard Puncher Hajime no Ippo 2 - The Fighting! - Ouja e no chousen (VER.2.00J)'], + array['Arcade'], + '{"mame":["ippo2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'hard-times', + 'Hard Times', + 'Playmark', + 1994, + array['Hard Times (set 1)'], + array['Arcade'], + '{"mame":["hrdtimes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/playmark.cpp"]}'::jsonb + ), + ( + 'hard-yardage-v1-20', + 'Hard Yardage (v1.20)', + 'Strata / Incredible Technologies', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["hardyard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'harem', + 'Harem', + 'I.G.R.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["harem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'harem-challenge', + 'Harem Challenge', + 'CD Express', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["haremchl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'harikiri-junior-baseball', + 'Harikiri Junior Baseball', + 'Taito Corporation', + 1998, + array['Harikiri Junior Baseball (Japan, main ver. 1.0, video ver. 1.3)'], + array['Sports'], + '{"mame":["harikiri"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/sbmjb.cpp"]}'::jsonb + ), + ( + 'harley-davidson-and-l-a-riders', + 'Harley-Davidson and L.A. Riders', + 'Sega', + 1997, + array['Harley-Davidson and L.A. Riders (Revision B)'], + array['Arcade'], + '{"mame":["harley"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'harriet', + 'Harriet', + 'Quantel', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["harriet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["quantel/harriet.cpp"]}'::jsonb + ), + ( + 'hasamu', + 'Hasamu', + 'Irem', + 1991, + array['Hasamu (Japan)'], + array['Arcade'], + '{"mame":["hasamu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m90.cpp"]}'::jsonb + ), + ( + 'hashire-patrol-car-j-990326-v1-000', + 'Hashire Patrol Car (J 990326 V1.000)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["patocar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'hat-trick-11-12-84', + 'Hat Trick (11/12/84)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["hattrick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'hatch-catch', + 'Hatch Catch', + 'SemiCom', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["htchctch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'hatris', + 'Hatris', + 'Video System Co.', + 1990, + array['Hatris (US)'], + array['Arcade'], + '{"mame":["hatris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pipedrm.cpp"]}'::jsonb + ), + ( + 'haunted-castle', + 'Haunted Castle', + 'Konami', + 1988, + array['Haunted Castle (version M)'], + array['Arcade'], + '{"mame":["hcastle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hcastle.cpp"]}'::jsonb + ), + ( + 'haunted-house', + 'Haunted House', + 'IGS', + 2008, + array['Haunted House (IGS, V109US)'], + array['Arcade'], + '{"mame":["haunthig"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'haunted-hunter', + 'Haunted Hunter', + 'Amuzy Corporation', + 2005, + array['Haunted Hunter (Japan, ver 1.00)'], + array['Arcade'], + '{"mame":["hhunter"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'hawaii', + 'Hawaii', + 'Astro Corp.', + 2004, + array['Hawaii (Russia)'], + array['Arcade'], + '{"mame":["hawaii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'hayauchi-gun-kids', + 'Hayauchi Gun Kids', + 'Sammy', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["gunkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'hc900-kc-85-2', + 'HC900 / KC 85/2', + 'VEB Mikroelektronik "Wilhelm Pieck" Mühlhausen', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["kc85_2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/kc.cpp"]}'::jsonb + ), + ( + 'hds200', + 'HDS200', + 'Human Designed Systems', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hds200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hds/hds200.cpp"]}'::jsonb + ), + ( + 'head-on-2-players', + 'Head On (2 players)', + 'Gremlin', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["headon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'head-on-irem-m-15-hardware', + 'Head On (Irem, M-15 Hardware)', + 'Irem', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["headoni"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m10.cpp"]}'::jsonb + ), + ( + 'head-on-2', + 'Head On 2', + 'Sega', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["headon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'head-panic', + 'Head Panic', + 'ESD', + 2000, + array['Head Panic (ver. 0117, 17/01/2000)'], + array['Arcade'], + '{"mame":["hedpanic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'heart-attack', + 'Heart Attack', + 'Century Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["heartatk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'heat-of-eleven-98', + 'Heat of Eleven ''98', + 'Konami', + 1998, + array['Heat of Eleven ''98 (ver EAA)'], + array['Arcade'], + '{"mame":["heatof11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamim2.cpp"]}'::jsonb + ), + ( + 'heat-up-hockey-image', + 'Heat Up Hockey Image', + 'Sega', + 2019, + array['Heat Up Hockey Image (Ver.1.003R)'], + array['Arcade'], + '{"mame":["huhimage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'heated-barrel', + 'Heated Barrel', + 'TAD Corporation', + 1992, + array['Heated Barrel (World version 3)'], + array['Arcade'], + '{"mame":["heatbrl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/legionna.cpp"]}'::jsonb + ), + ( + 'heathkit-h8-digital-computer', + 'Heathkit H8 Digital Computer', + 'Heath Company', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["h8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["heathzenith/h8.cpp"]}'::jsonb + ), + ( + 'heathkit-model-et-3400-microprocessor-trainer', + 'Heathkit Model ET-3400 Microprocessor Trainer', + 'Heath Company', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["et3400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["heathzenith/et3400.cpp"]}'::jsonb + ), + ( + 'heavy-barrel', + 'Heavy Barrel', + 'Data East Corporation', + 1987, + array['Heavy Barrel (World)'], + array['Arcade'], + '{"mame":["hbarrel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'heavy-metal-315-5135', + 'Heavy Metal (315-5135)', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hvymetal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'heavy-metal-geomatrix', + 'Heavy Metal: Geomatrix', + 'Capcom', + 2001, + array['Heavy Metal: Geomatrix (Rev B)'], + array['Arcade'], + '{"mame":["hmgeo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'heavy-smash', + 'Heavy Smash', + 'Data East Corporation', + 1993, + array['Heavy Smash (Europe version -2)'], + array['Arcade'], + '{"mame":["hvysmsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco156.cpp"]}'::jsonb + ), + ( + 'heavy-unit', + 'Heavy Unit', + 'Kaneko / Taito', + 1988, + array['Heavy Unit (World)'], + array['Arcade'], + '{"mame":["hvyunit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/hvyunit.cpp"]}'::jsonb + ), + ( + 'heavyweight-champ', + 'Heavyweight Champ', + 'Sega', + 1987, + array['Heavyweight Champ (set 1)'], + array['Arcade'], + '{"mame":["hwchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'hebereke-no-popoon', + 'Hebereke no Popoon', + 'Sunsoft / Atlus', + 1994, + array['Hebereke no Popoon (Japan)'], + array['Arcade'], + '{"mame":["heberpop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shangha3.cpp"]}'::jsonb + ), + ( + 'hector-2hr', + 'Hector 2HR+', + 'Micronique', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hec2hrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hec2hrp/hec2hrp.cpp"]}'::jsonb + ), + ( + 'heiankyo-alien', + 'Heiankyo Alien', + 'Denki Onkyo', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["heiankyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'hektor-ii', + 'Hektor II', + 'The Open University', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hektor2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["openuni/hektor.cpp"]}'::jsonb + ), + ( + 'hektor-iii', + 'Hektor III', + 'The Open University', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["hektor3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["openuni/hektor.cpp"]}'::jsonb + ), + ( + 'helifire', + 'HeliFire', + 'Nintendo', + 1980, + array['HeliFire (set 1)'], + array['Arcade'], + '{"mame":["helifire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/n8080.cpp"]}'::jsonb + ), + ( + 'hellfire', + 'Hellfire', + 'Toaplan (Taito license)', + 1989, + array['Hellfire (2P set)'], + array['Arcade'], + '{"mame":["hellfire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/toaplan1.cpp"]}'::jsonb + ), + ( + 'hello-kitty-koi-no-shugoshin-uranai', + 'Hello Kitty Koi no Shugoshin Uranai', + 'Taito Corporation', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["hkuranai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/dinoking.cpp"]}'::jsonb + ), + ( + 'hengsheng-36-in-1-black-pad', + 'HengSheng 36-in-1 (Black pad)', + 'HengSheng', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["hs36blk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'hengsheng-36-in-1-red-pad', + 'HengSheng 36-in-1 (Red pad)', + 'HengSheng', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["hs36red"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'hero', + 'Hero', + 'Seatongrove UK, Ltd.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["hero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'heuk-sun-baek-sa', + 'Heuk Sun Baek Sa', + 'Oksan / F2 System', + 1997, + array['Heuk Sun Baek Sa (Korea)'], + array['Arcade'], + '{"mame":["heuksun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/crospang.cpp"]}'::jsonb + ), + ( + 'hexa', + 'Hexa', + 'D.R. Korea', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["hexa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/arkanoid.cpp"]}'::jsonb + ), + ( + 'hexion', + 'Hexion', + 'Konami', + 1992, + array['Hexion (Japan ver JAB)'], + array['Arcade'], + '{"mame":["hexion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hexion.cpp"]}'::jsonb + ), + ( + 'hi-pai-paradise', + 'Hi Pai Paradise', + 'Aruze / Seta', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["hipai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'hi-pai-paradise-2', + 'Hi Pai Paradise 2', + 'Aruze / Seta / Paon', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["hipai2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'hidden-catch-tul-lin-gu-lim-chat-ki-98', + 'Hidden Catch / Tul Lin Gu Lim Chat Ki ''98', + 'Eolith', + 1998, + array['Hidden Catch (World) / Tul Lin Gu Lim Chat Ki ''98 (Korea) (pcb ver 3.03)'], + array['Arcade'], + '{"mame":["hidnctch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'hidden-catch-2-kor-eng-at89c52-protected', + 'Hidden Catch 2 (Kor/Eng) (AT89c52 protected)', + 'Eolith', + 1999, + array['Hidden Catch 2 (pcb ver 3.03) (Kor/Eng) (AT89c52 protected)'], + array['Arcade'], + '{"mame":["hidctch2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'hidden-catch-2000-at89c52-protected', + 'Hidden Catch 2000 (AT89c52 protected)', + 'Eolith', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["hidnc2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'hidden-catch-3', + 'Hidden Catch 3', + 'Eolith', + 2000, + array['Hidden Catch 3 (ver 1.00 / pcb ver 3.05)'], + array['Arcade'], + '{"mame":["hidctch3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'hide-and-seek', + 'Hide & Seek', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hideseek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/hideseek.cpp"]}'::jsonb + ), + ( + 'high-impact-football', + 'High Impact Football', + 'Williams', + 1990, + array['High Impact Football (rev LA5 02/15/91)'], + array['Sports'], + '{"mame":["hiimpact"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'high-roller', + 'High Roller', + 'bootleg?', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["highroll"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'high-seas-havoc', + 'High Seas Havoc', + 'Data East Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["hshavoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hshavoc.cpp"]}'::jsonb + ), + ( + 'high-voltage', + 'High Voltage', + 'Alpha Denshi Co.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hvoltage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/splendor.cpp"]}'::jsonb + ), + ( + 'high-way-race', + 'High Way Race', + 'Taito Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hwrace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'highway-chase', + 'Highway Chase', + 'Data East Corporation', + 1980, + array['Highway Chase (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["chwy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'higurashi-no-naku-koro-ni-jong', + 'Higurashi no Naku Koro ni Jong', + 'AQ Interactive', + 2009, + array['Higurashi no Naku Koro ni Jong (Japan)'], + array['Arcade'], + '{"mame":["higurashi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/y2.cpp"]}'::jsonb + ), + ( + 'hikaru-check-rom-board', + 'Hikaru Check ROM Board', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["hikcheck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'himeshikibu', + 'Himeshikibu', + 'Hi-Soft', + 1989, + array['Himeshikibu (Japan)'], + array['Arcade'], + '{"mame":["himesiki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nasco/himesiki.cpp"]}'::jsonb + ), + ( + 'hippodrome', + 'Hippodrome', + 'Data East USA', + 1989, + array['Hippodrome (US)'], + array['Arcade'], + '{"mame":["hippodrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'hit-n-miss', + 'Hit ''n Miss', + 'Exidy', + 1987, + array['Hit ''n Miss (version 3.0)'], + array['Arcade'], + '{"mame":["hitnmiss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'hit-me', + 'Hit Me', + 'Ramtek', + 1976, + array['Hit Me (set 1)'], + array['Arcade'], + '{"mame":["hitme"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/hitme.cpp"]}'::jsonb + ), + ( + 'hit-the-ice', + 'Hit the Ice', + 'Taito Corporation (Williams license)', + 1990, + array['Hit the Ice (US)'], + array['Arcade'], + '{"mame":["hitice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'hk1000', + 'HK1000', + 'Orla', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hk1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orla/hk1000.cpp"]}'::jsonb + ), + ( + 'hkb-502-268-in-1', + 'HKB-502 268-in-1', + '', + null, + array['HKB-502 268-in-1 (set 1)'], + array['Arcade'], + '{"mame":["hkb502"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'hkt-0120-sega-dreamcast-development-box', + 'HKT-0120 Sega Dreamcast Development Box', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["dcdev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dccons.cpp"]}'::jsonb + ), + ( + 'hoccer-newer', + 'Hoccer (newer)', + 'Eastern Micro Electronics, Inc.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hoccer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'hockey-ramtek', + 'Hockey (Ramtek)', + 'Ramtek', + 1973, + '{}'::text[], + array['Arcade'], + '{"mame":["hockyrmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/ramtek.cpp"]}'::jsonb + ), + ( + 'hog-wild', + 'Hog Wild', + 'Uniana', + 2003, + array['Hog Wild (US)'], + array['Arcade'], + '{"mame":["hogwild"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/unianapc.cpp"]}'::jsonb + ), + ( + 'hogan-s-alley-playchoice-10', + 'Hogan''s Alley (PlayChoice-10)', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_hgaly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'hold-and-draw', + 'Hold & Draw', + 'Amstar', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["holddraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amstarz80.cpp"]}'::jsonb + ), + ( + 'hold-and-spin-i', + 'Hold & Spin I', + 'Amcoe', + 2000, + array['Hold & Spin I (Version 2.7T, set 1)'], + array['Arcade'], + '{"mame":["hldspin1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'hold-and-spin-ii', + 'Hold & Spin II', + 'Amcoe', + 2000, + array['Hold & Spin II (Version 2.8R, set 1)'], + array['Arcade'], + '{"mame":["hldspin2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'hole-land', + 'Hole Land', + 'Tecfri', + 1984, + array['Hole Land (Japan)'], + array['Arcade'], + '{"mame":["holeland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/holeland.cpp"]}'::jsonb + ), + ( + 'holosseum', + 'Holosseum', + 'Sega', + 1992, + array['Holosseum (US, Rev A)'], + array['Arcade'], + '{"mame":["holo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'home-run-classic-v1-21-12-feb-1997', + 'Home Run Classic (v1.21 12-feb-1997)', + 'Creative Electronics And Software', + 1997, + '{}'::text[], + array['Classic'], + '{"mame":["hrclass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/cesclass.cpp"]}'::jsonb + ), + ( + 'homebrew-z80-computer', + 'Homebrew Z80 Computer', + 'Kun-Szabo Marton', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["homez80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/homez80.cpp"]}'::jsonb + ), + ( + 'homelab-2-aircomp-16', + 'Homelab 2 / Aircomp 16', + 'Jozsef and Endre Lukacs', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["homelab2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homelab/homelab.cpp"]}'::jsonb + ), + ( + 'homura-v2-04j', + 'Homura (v2.04J)', + 'SKonec Entertainment', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["homura"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'honey-doll', + 'Honey Doll', + 'Barko Corp.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["honeydol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'hong-mayi', + 'Hong Mayi', + 'bootleg', + null, + array['Hong Mayi (bootleg of Super Star 97)'], + array['Arcade'], + '{"mame":["hongmayi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'hook', + 'Hook', + 'Irem', + 1992, + array['Hook (World)'], + array['Arcade'], + '{"mame":["hook"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'hoops-96', + 'Hoops ''96', + 'Data East Corporation', + 1996, + array['Hoops ''96 (Europe/Asia 2.0)'], + array['Arcade'], + '{"mame":["hoops96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_mlc.cpp"]}'::jsonb + ), + ( + 'hopper-robo', + 'Hopper Robo', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hopprobo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'hopping-mappy', + 'Hopping Mappy', + 'Namco', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["hopmappy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos86.cpp"]}'::jsonb + ), + ( + 'horizon-irem', + 'Horizon (Irem)', + 'Irem', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["horizon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'horizon-north-star-computers-4mhz', + 'Horizon (North Star Computers, 4MHz)', + 'North Star Computers', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["nshrz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["northstar/horizon.cpp"]}'::jsonb + ), + ( + 'horses-for-courses', + 'Horses For Courses', + 'Konami', + 2000, + array['Horses For Courses (NSW, Australia)'], + array['Arcade'], + '{"mame":["horses4c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'host-invaders', + 'Host Invaders', + 'The Game Room', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["hostinv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/calchase.cpp"]}'::jsonb + ), + ( + 'hot-blocks-tetrix-ii', + 'Hot Blocks - Tetrix II', + 'NIX?', + 1993, + array['Hot Blocks - Tetrix II (set 1)'], + array['Arcade'], + '{"mame":["hotblock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/hotblock.cpp"]}'::jsonb + ), + ( + 'hot-body-i', + 'Hot Body I', + 'Gameace', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["hotbody"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gameace.cpp"]}'::jsonb + ), + ( + 'hot-body-ii', + 'Hot Body II', + 'Gameace', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["hotbody2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gameace.cpp"]}'::jsonb + ), + ( + 'hot-chase', + 'Hot Chase', + 'Konami', + 1988, + array['Hot Chase (set 1)'], + array['Arcade'], + '{"mame":["hotchase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/wecleman.cpp"]}'::jsonb + ), + ( + 'hot-chilli-95103-v0104', + 'Hot Chilli (95103, v0104)', + 'Pacific Gaming Pty Ltd.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["hotchili"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/hotchili.cpp"]}'::jsonb + ), + ( + 'hot-mind', + 'Hot Mind', + 'Playmark', + 1995, + array['Hot Mind (Hard Times hardware, set 1)'], + array['Arcade'], + '{"mame":["hotmind"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/playmark.cpp"]}'::jsonb + ), + ( + 'hot-rod', + 'Hot Rod', + 'Sega', + 1988, + array['Hot Rod (World, 3 Players, Turbo set 1, Floppy Based)'], + array['Arcade'], + '{"mame":["hotrod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'hot-shocker', + 'Hot Shocker', + 'E.G. Felaco (Domino license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hotshock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'hot-shots-tennis-v1-1', + 'Hot Shots Tennis (v1.1)', + 'Strata / Incredible Technologies', + 1990, + '{}'::text[], + array['Sports'], + '{"mame":["hstennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'hot-slots-6-00', + 'Hot Slots (6.00)', + 'Impera', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["hotslots"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'hot-spot-2', + 'Hot Spot 2', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hspot2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'hot-spot-3', + 'Hot Spot 3', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hspot3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'hot-toppings-english', + 'Hot Toppings (English)', + 'WMS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["hottop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'hotdog-storm', + 'Hotdog Storm', + 'Marble (Ace International license)', + 1996, + array['Hotdog Storm (Korea)'], + array['Arcade'], + '{"mame":["hotdogst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'hou-ye-leyuan-s103cn', + 'Hou Ye Leyuan (S103CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hyleyuan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'house-mannequin', + 'House Mannequin', + 'Nichibutsu', + 1987, + array['House Mannequin (Japan 870217)'], + array['Arcade'], + '{"mame":["housemnq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'house-mannequin-roppongi-live-hen', + 'House Mannequin Roppongi Live hen', + 'Nichibutsu', + 1987, + array['House Mannequin Roppongi Live hen (Japan 870418)'], + array['Arcade'], + '{"mame":["housemn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'hp-16500a', + 'HP 16500a', + 'Hewlett Packard', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["hp165ka0"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp16500.cpp"]}'::jsonb + ), + ( + 'hp-16500b', + 'HP 16500b', + 'Hewlett Packard', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["hp16500b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp16500.cpp"]}'::jsonb + ), + ( + 'hp-1650b', + 'HP 1650b', + 'Hewlett Packard', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["hp1650b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp16500.cpp"]}'::jsonb + ), + ( + 'hp-1651b', + 'HP 1651b', + 'Hewlett Packard', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["hp1651b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp16500.cpp"]}'::jsonb + ), + ( + 'hp-2100', + 'HP 2100', + 'Hewlett-Packard', + 1966, + '{}'::text[], + array['Arcade'], + '{"mame":["hp2100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp2100.cpp"]}'::jsonb + ), + ( + 'hp-2641a', + 'HP 2641A', + 'Hewlett-Packard', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["hp2641"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp2640.cpp"]}'::jsonb + ), + ( + 'hp-2645a', + 'HP 2645A', + 'Hewlett-Packard', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["hp2645"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp2640.cpp"]}'::jsonb + ), + ( + 'hp-3478a-multimeter', + 'HP 3478A Multimeter', + 'HP', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hp3478a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp3478a.cpp"]}'::jsonb + ), + ( + 'hp-620lx', + 'HP 620LX', + 'Hewlett-Packard', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["hp620lx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp620lx.cpp"]}'::jsonb + ), + ( + 'hp-64000', + 'HP 64000', + 'HP', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["hp64k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp64k.cpp"]}'::jsonb + ), + ( + 'hp-7596a-draftmaster-ii', + 'HP 7596A DraftMaster II', + 'Hewlett-Packard', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["hp7596a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp7596a.cpp"]}'::jsonb + ), + ( + 'hp-85', + 'HP 85', + 'HP', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["hp85"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp80.cpp"]}'::jsonb + ), + ( + 'hp-86b', + 'HP 86B', + 'HP', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hp86b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp80.cpp"]}'::jsonb + ), + ( + 'hp-95lx', + 'HP 95LX', + 'Hewlett-Packard', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["hp95lx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp95lx.cpp"]}'::jsonb + ), + ( + 'hp-9816', + 'HP 9816', + 'Hewlett Packard', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9816"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k.cpp"]}'::jsonb + ), + ( + 'hp-9816a', + 'HP 9816A', + 'Hewlett-Packard', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9816a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp98x6.cpp"]}'::jsonb + ), + ( + 'hp-9825a', + 'HP 9825A', + 'Hewlett-Packard', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9825a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9825.cpp"]}'::jsonb + ), + ( + 'hp-9825b', + 'HP 9825B', + 'Hewlett-Packard', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9825b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9825.cpp"]}'::jsonb + ), + ( + 'hp-9825t', + 'HP 9825T', + 'Hewlett-Packard', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9825t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9825.cpp"]}'::jsonb + ), + ( + 'hp-9826a', + 'HP 9826A', + 'Hewlett-Packard', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9826a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp98x6.cpp"]}'::jsonb + ), + ( + 'hp-9831a', + 'HP 9831A', + 'Hewlett-Packard', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9831"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9825.cpp"]}'::jsonb + ), + ( + 'hp-9836a', + 'HP 9836A', + 'Hewlett-Packard', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9836a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp98x6.cpp"]}'::jsonb + ), + ( + 'hp-9836c', + 'HP 9836C', + 'Hewlett-Packard', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9836c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp98x6.cpp"]}'::jsonb + ), + ( + 'hp-2622a', + 'HP-2622A', + 'HP', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hp2622a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp2620.cpp"]}'::jsonb + ), + ( + 'hp38g', + 'HP38G', + 'Hewlett Packard', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["hp38g"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp48.cpp"]}'::jsonb + ), + ( + 'hp39g', + 'HP39G', + 'Hewlett Packard', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["hp39g"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp48.cpp"]}'::jsonb + ), + ( + 'hp48gx', + 'HP48GX', + 'Hewlett Packard', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["hp48gx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp48.cpp"]}'::jsonb + ), + ( + 'hp48sx', + 'HP48SX', + 'Hewlett Packard', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["hp48sx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp48.cpp"]}'::jsonb + ), + ( + 'hp49g', + 'HP49G', + 'Hewlett Packard', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["hp49g","hp49gp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp48.cpp","hp/hp49gp.cpp"]}'::jsonb + ), + ( + 'hp9000-310', + 'HP9000/310', + 'Hewlett-Packard', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9k310"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k_3xx.cpp"]}'::jsonb + ), + ( + 'hp9000-320', + 'HP9000/320', + 'Hewlett-Packard', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9k320"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k_3xx.cpp"]}'::jsonb + ), + ( + 'hp9000-330', + 'HP9000/330', + 'Hewlett-Packard', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9k330"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k_3xx.cpp"]}'::jsonb + ), + ( + 'hp9000-332', + 'HP9000/332', + 'Hewlett-Packard', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9k332"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k_3xx.cpp"]}'::jsonb + ), + ( + 'hp9000-380', + 'HP9000/380', + 'Hewlett-Packard', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9k380"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k_3xx.cpp"]}'::jsonb + ), + ( + 'hp9000-382', + 'HP9000/382', + 'Hewlett-Packard', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9k382"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp9k_3xx.cpp"]}'::jsonb + ), + ( + 'hr-84', + 'HR-84', + 'Iskra', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["hr84"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/hr84.cpp"]}'::jsonb + ), + ( + 'ht-6000', + 'HT-6000', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["ht6000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ht6000.cpp"]}'::jsonb + ), + ( + 'hu-lu-wang-ii-v100ki', + 'Hu Lu Wang II (v100KI)', + 'IGS', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["huluw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'hua-shen-ii-v120di', + 'Hua Shen II (v120DI)', + 'IGS', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["hsheng2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'huahua-shijie-5-feixing-shijie-v107cn', + 'Huahua Shijie 5 / Feixing Shijie (V107CN)', + 'IGS', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["huahuas5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027_033vid.cpp"]}'::jsonb + ), + ( + 'huahua-shijie-ii', + 'Huahua Shijie II', + 'IGS', + 1995, + array['Huahua Shijie II (v100FI, set 1)'], + array['Arcade'], + '{"mame":["huahuas2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'huangguan-leyuan-990726-crg1-1', + 'Huangguan Leyuan (990726 CRG1.1)', + 'GMS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["hgly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'huangpai-zuqiu-plus-chaoji-shuangxing-plus-v103cn', + 'Huangpai Zuqiu Plus / Chaoji Shuangxing Plus (V103CN)', + 'IGS', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["cjsxp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'huanle-dou-dizhu-v104cn', + 'Huanle Dou Dizhu (V104CN)', + 'IGS', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["hlddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'huanle-liuhe-yi-happy-6-in-1', + 'Huanle Liuhe Yi (Happy 6-in-1)', + 'IGS', + 2004, + array['Huanle Liuhe Yi (Happy 6-in-1) (M68K ver. V101, ARM ver. V102CN)'], + array['Arcade'], + '{"mame":["happy6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'huanqiu-dafuweng', + 'Huanqiu Dafuweng', + 'Hai Wei Technology', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["hqdf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/haiwei.cpp"]}'::jsonb + ), + ( + 'hudie-meng-97', + 'Hudie Meng 97', + 'bootleg (KKK)', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["bdream97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'hummer-extreme', + 'Hummer Extreme', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["hummerxt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'hunchback', + 'Hunchback', + 'Century Electronics', + 1983, + array['Hunchback (set 1)'], + array['Arcade'], + '{"mame":["hunchbak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'hunchback-olympic', + 'Hunchback Olympic', + 'Seatongrove UK, Ltd.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["huncholy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'huo-qilin-v116cn', + 'Huo Qilin (V116CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["huoqilin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'husky', + 'Husky', + 'DVW Microelectronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["husky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["husky/husky.cpp"]}'::jsonb + ), + ( + 'husky-hawk', + 'Husky Hawk', + 'Husky Computers Ltd', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["hawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["husky/hawk.cpp"]}'::jsonb + ), + ( + 'husky-hunter-16', + 'Husky Hunter 16', + 'Husky Computers Ltd', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["hunter16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["husky/hunter16.cpp"]}'::jsonb + ), + ( + 'husky-hunter-2', + 'Husky Hunter 2', + 'Husky Computers Ltd', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["hunter2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["husky/hunter2.cpp"]}'::jsonb + ), + ( + 'hustle', + 'Hustle', + 'Gremlin', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["hustle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/blockade.cpp"]}'::jsonb + ), + ( + 'hyakujuu-sentai-gaoranger-soul-bird-animal-kyuushutsu-daisakusen', + 'Hyakujuu Sentai Gaoranger Soul Bird: Animal Kyuushutsu Daisakusen', + 'Bandai', + 2001, + array['Hyakujuu Sentai Gaoranger Soul Bird: Animal Kyuushutsu Daisakusen (Japan)'], + array['Arcade'], + '{"mame":["soulbird"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'hydra', + 'Hydra', + 'Atari Games', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["hydra"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarig1.cpp"]}'::jsonb + ), + ( + 'hydro-thunder', + 'Hydro Thunder', + 'Midway Games', + 1999, + '{}'::text[], + array['Racing'], + '{"mame":["hydrthnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midqslvr.cpp"]}'::jsonb + ), + ( + 'hyper-athlete', + 'Hyper Athlete', + 'Konami', + 1996, + array['Hyper Athlete (GV021 Japan 1.00)'], + array['Arcade'], + '{"mame":["hyperath"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'hyper-bishi-bashi-champ', + 'Hyper Bishi Bashi Champ', + 'Konami', + 1998, + array['Hyper Bishi Bashi Champ (GQ876 VER. EAA)'], + array['Arcade'], + '{"mame":["hyperbbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'hyper-bishi-bashi-champ-2-player', + 'Hyper Bishi Bashi Champ - 2 Player', + 'Konami', + 1999, + array['Hyper Bishi Bashi Champ - 2 Player (GX908 1999/08/24 VER. JAA)'], + array['Arcade'], + '{"mame":["hypbbc2p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'hyper-crash', + 'Hyper Crash', + 'Konami', + 1987, + array['Hyper Crash (version D)'], + array['Arcade'], + '{"mame":["hcrash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'hyper-duel', + 'Hyper Duel', + 'Technosoft', + 1993, + array['Hyper Duel (Japan set 1)'], + array['Arcade'], + '{"mame":["hyprduel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/hyprduel.cpp"]}'::jsonb + ), + ( + 'hyper-dyne-side-arms', + 'Hyper Dyne Side Arms', + 'Capcom', + 1986, + array['Hyper Dyne Side Arms (World, 861129)'], + array['Arcade'], + '{"mame":["sidearms"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/sidearms.cpp"]}'::jsonb + ), + ( + 'hyper-pacman', + 'Hyper Pacman', + 'SemiCom', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["hyperpac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'hyper-sports', + 'Hyper Sports', + 'Konami (Centuri license)', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["hyperspt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hyperspt.cpp"]}'::jsonb + ), + ( + 'hyper-street-fighter-ii-the-anniversary-edition', + 'Hyper Street Fighter II: The Anniversary Edition', + 'Capcom', + 2004, + array['Hyper Street Fighter II: The Anniversary Edition (USA 040202)'], + array['Fighting'], + '{"mame":["hsf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'hyper-v2-global-vr-install-06-12-02', + 'Hyper V2 (Global VR) Install - 06/12/02', + 'Global VR', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["hyperv2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'hyper-v2-global-vr-install-09-30-01', + 'Hyper V2 (Global VR) Install - 09/30/01', + 'Global VR', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["hyperv2a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'hyperdrive', + 'Hyperdrive', + 'Midway Games', + 1998, + array['Hyperdrive (ver 1.40, Oct 23 1998)'], + array['Arcade'], + '{"mame":["hyprdriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'i-c-cash-atronic', + 'I C Cash (Atronic)', + 'Atronic', + 2002, + array['I C Cash (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["iccash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'i-c-money-atronic', + 'I C Money (Atronic)', + 'Atronic', + null, + array['I C Money (Atronic) (set 1)'], + array['Arcade'], + '{"mame":["atricmon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'i-robot', + 'I, Robot', + 'Atari', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["irobot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/irobot.cpp"]}'::jsonb + ), + ( + 'i-m-sorry', + 'I''m Sorry', + 'Coreland / Sega', + 1985, + array['I''m Sorry (315-5110, US)'], + array['Arcade'], + '{"mame":["imsorry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'ibara', + 'Ibara', + 'Cave (AMI license)', + 2005, + array['Ibara (Japan, 2005/03/22 MASTER VER.., ''06. 3. 7 ver.)'], + array['Arcade'], + '{"mame":["ibara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'ibara-kuro-black-label', + 'Ibara Kuro Black Label', + 'Cave (AMI license)', + 2006, + array['Ibara Kuro Black Label (Japan, 2006/02/06. MASTER VER.)'], + array['Arcade'], + '{"mame":["ibarablk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'ibm-5100', + 'IBM 5100', + 'International Business Machines', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["ibm5100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/ibm5100.cpp"]}'::jsonb + ), + ( + 'ibm-5110', + 'IBM 5110', + 'International Business Machines', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["ibm5110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/ibm5100.cpp"]}'::jsonb + ), + ( + 'ibm-6580-displaywriter', + 'IBM 6580 Displaywriter', + 'IBM', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ibm6580"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/ibm6580.cpp"]}'::jsonb + ), + ( + 'ibm-rt-pc-model-010', + 'IBM RT PC Model 010', + 'International Business Machines', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["rtpc010"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/rtpc.cpp"]}'::jsonb + ), + ( + 'ibm-rt-pc-model-015', + 'IBM RT PC Model 015', + 'International Business Machines', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["rtpc015"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/rtpc.cpp"]}'::jsonb + ), + ( + 'ibm-rt-pc-model-020', + 'IBM RT PC Model 020', + 'International Business Machines', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["rtpc020"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/rtpc.cpp"]}'::jsonb + ), + ( + 'ibm-rt-pc-model-025', + 'IBM RT PC Model 025', + 'International Business Machines', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["rtpc025"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/rtpc.cpp"]}'::jsonb + ), + ( + 'ibm-rt-pc-model-a25', + 'IBM RT PC Model A25', + 'International Business Machines', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["rtpca25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/rtpc.cpp"]}'::jsonb + ), + ( + 'icescape-v104fa', + 'Icescape (V104FA)', + 'IGS', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["icescape"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_fear.cpp"]}'::jsonb + ), + ( + 'ichi-ban-jyan', + 'Ichi Ban Jyan', + 'Excel', + 1993, + array['Ichi Ban Jyan (Ver 3.05)'], + array['Arcade'], + '{"mame":["ichiban"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'icm-3216', + 'ICM-3216', + 'National Semiconductor', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["icm3216"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["natsemi/icm3216.cpp"]}'::jsonb + ), + ( + 'idol-janshi-suchie-pai-3', + 'Idol Janshi Suchie-Pai 3', + 'Jaleco', + 1999, + array['Idol Janshi Suchie-Pai 3 (Japan)'], + array['Arcade'], + '{"mame":["suchie3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'idol-janshi-suchie-pai-ii', + 'Idol Janshi Suchie-Pai II', + 'Jaleco', + 1994, + array['Idol Janshi Suchie-Pai II (ver 1.1)'], + array['Arcade'], + '{"mame":["suchie2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'idol-janshi-suchie-pai-special', + 'Idol Janshi Suchie-Pai Special', + 'Jaleco', + 1993, + array['Idol Janshi Suchie-Pai Special (Japan)'], + array['Arcade'], + '{"mame":["suchiesp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/jalmah.cpp"]}'::jsonb + ), + ( + 'idol-no-himitsu', + 'Idol no Himitsu', + 'Digital Soft', + 1989, + array['Idol no Himitsu (Japan 890304)'], + array['Arcade'], + '{"mame":["idhimitu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'iemoto', + 'Iemoto', + 'Nichibutsu', + 1987, + array['Iemoto (Japan 871020)'], + array['Arcade'], + '{"mame":["iemoto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'igmo', + 'IGMO', + 'Epos Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["igmo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'igor-excalibur', + 'Igor (Excalibur)', + 'Excalibur Electronics', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["igor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excalibur/ivant.cpp"]}'::jsonb + ), + ( + 'igrosoft-multigame-bootleg-10-games', + 'Igrosoft Multigame Bootleg (10 Games)', + 'bootleg', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["igromult"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish_boot.cpp"]}'::jsonb + ), + ( + 'ikari-iii-the-rescue', + 'Ikari III - The Rescue', + 'SNK', + 1989, + array['Ikari III - The Rescue (World version 1, 8-Way Joystick)'], + array['Arcade'], + '{"mame":["ikari3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk68.cpp"]}'::jsonb + ), + ( + 'ikari-warriors', + 'Ikari Warriors', + 'SNK', + 1986, + array['Ikari Warriors (US JAMMA)'], + array['Arcade'], + '{"mame":["ikari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'ikaruga-gdl-0010', + 'Ikaruga (GDL-0010)', + 'Treasure', + 2001, + '{}'::text[], + array['Shooter'], + '{"mame":["ikaruga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'ikki', + 'Ikki', + 'Sun Electronics', + 1985, + array['Ikki (Japan)'], + array['Arcade'], + '{"mame":["ikki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/ikki.cpp"]}'::jsonb + ), + ( + 'il-galeone', + 'Il Galeone', + 'San Remo Games', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["galeone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'il-pagliaccio', + 'Il Pagliaccio', + '', + null, + array['Il Pagliaccio (Italy, Ver. 2.7C)'], + array['Arcade'], + '{"mame":["ilpag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'illvelo-illmatic-envelope', + 'Illvelo (Illmatic Envelope)', + 'Milestone', + 2008, + array['Illvelo (Illmatic Envelope) (Japan)'], + array['Arcade'], + '{"mame":["illvelo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'image-fight', + 'Image Fight', + 'Irem', + 1988, + array['Image Fight (World)'], + array['Arcade'], + '{"mame":["imgfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'imago', + 'Imago', + 'Acom', + 1984, + array['Imago (cocktail set)'], + array['Arcade'], + '{"mame":["imago"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/fastfred.cpp"]}'::jsonb + ), + ( + 'imola-grand-prix', + 'Imola Grand Prix', + 'RB Bologna', + null, + array['Imola Grand Prix (set 1)'], + array['Arcade'], + '{"mame":["imolagp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/imolagp.cpp"]}'::jsonb + ), + ( + 'in-the-hunt', + 'In The Hunt', + 'Irem', + 1993, + array['In The Hunt (World)'], + array['Arcade'], + '{"mame":["inthunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'in-your-face', + 'In Your Face', + 'Jaleco', + 1991, + array['In Your Face (North America, prototype)'], + array['Arcade'], + '{"mame":["inyourfa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'inca', + 'Inca', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["inca"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'incan-pyramid', + 'Incan Pyramid', + 'Konami', + null, + array['Incan Pyramid (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["incanp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'indian-battle', + 'Indian Battle', + 'Taito', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["indianbt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'indiana-jones-and-the-temple-of-doom', + 'Indiana Jones and the Temple of Doom', + 'Atari Games', + 1985, + array['Indiana Jones and the Temple of Doom (set 1)'], + array['Arcade'], + '{"mame":["indytemp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy1.cpp"]}'::jsonb + ), + ( + 'indoor-soccer', + 'Indoor Soccer', + 'Universal', + 1985, + array['Indoor Soccer (set 1)'], + array['Sports'], + '{"mame":["idsoccer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/docastle.cpp"]}'::jsonb + ), + ( + 'indy-4', + 'Indy 4', + 'Atari/Kee', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["indy4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'indy-500-twin', + 'INDY 500 Twin', + 'Sega', + 1995, + array['INDY 500 Twin (Revision A, Newer)'], + array['Arcade'], + '{"mame":["indy500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'indy-800', + 'Indy 800', + 'Atari/Kee', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["indy800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'inferno-meadows', + 'Inferno (Meadows)', + 'Meadows Games, Inc.', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["minferno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadows.cpp"]}'::jsonb + ), + ( + 'inferno-williams', + 'Inferno (Williams)', + 'Williams', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["inferno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'informer-207-100', + 'Informer 207/100', + 'Informer Computer Terminals', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["in207100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["informer/informer_207_100.cpp"]}'::jsonb + ), + ( + 'informer-207-376', + 'Informer 207/376', + 'Informer Computer Terminals', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["in207376"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["informer/informer_207_376.cpp"]}'::jsonb + ), + ( + 'informer-213', + 'Informer 213', + 'Informer Computer Terminals', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["in213"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["informer/informer_213.cpp"]}'::jsonb + ), + ( + 'informer-213-ae', + 'Informer 213 AE', + 'Informer Computer Terminals', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["in213ae"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["informer/informer_213.cpp"]}'::jsonb + ), + ( + 'infowindow-3477', + 'InfoWindow 3477', + 'IBM', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["ibm3477"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/ibm3477.cpp"]}'::jsonb + ), + ( + 'initial-d-arcade-stage-gds-0020b', + 'Initial D Arcade Stage (GDS-0020B)', + 'Sega', + 2002, + array['Initial D Arcade Stage (Japan, Rev B) (GDS-0020B)'], + array['Racing'], + '{"mame":["initd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'initial-d-arcade-stage-gds-0025a', + 'Initial D Arcade Stage (GDS-0025A)', + 'Sega', + 2002, + array['Initial D Arcade Stage (Export, Rev A) (GDS-0025A)'], + array['Racing'], + '{"mame":["initdexp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'initial-d-arcade-stage-ver-2-gds-0026b', + 'Initial D Arcade Stage Ver. 2 (GDS-0026B)', + 'Sega', + 2003, + array['Initial D Arcade Stage Ver. 2 (Japan, Rev B) (GDS-0026B)'], + array['Racing'], + '{"mame":["initdv2j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'initial-d-arcade-stage-ver-3-export-gds-0033', + 'Initial D Arcade Stage Ver. 3 (Export) (GDS-0033)', + 'Sega', + 2004, + '{}'::text[], + array['Racing'], + '{"mame":["initdv3e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'initial-d-arcade-stage-ver-3-gds-0032c', + 'Initial D Arcade Stage Ver. 3 (GDS-0032C)', + 'Sega', + 2004, + array['Initial D Arcade Stage Ver. 3 (Japan, Rev C) (GDS-0032C)'], + array['Racing'], + '{"mame":["initdv3j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'initial-d-arcade-stage-ver-3-cycraft-edition-gds-0039b', + 'Initial D Arcade Stage Ver. 3 Cycraft Edition (GDS-0039B)', + 'Sega', + 2006, + array['Initial D Arcade Stage Ver. 3 Cycraft Edition (Export, Rev B) (GDS-0039B)'], + array['Racing'], + '{"mame":["inidv3cy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'initial-d4', + 'Initial D4', + 'Sega', + 2007, + array['Initial D4 (Rev D)'], + array['Arcade'], + '{"mame":["initiad4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'insector', + 'Insector', + 'Gottlieb', + 1982, + array['Insector (prototype)'], + array['Arcade'], + '{"mame":["insector"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'insector-x', + 'Insector X', + 'Taito Corporation Japan', + 1989, + array['Insector X (World)'], + array['Arcade'], + '{"mame":["insectx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'instant-winner', + 'Instant Winner', + 'WMS', + 1998, + array['Instant Winner (Russian)'], + array['Arcade'], + '{"mame":["inwinner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'integral-personal-computer-9807a', + 'Integral Personal Computer 9807A', + 'Hewlett-Packard', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hp_ipc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp_ipc.cpp"]}'::jsonb + ), + ( + 'integral-personal-computer-9808a', + 'Integral Personal Computer 9808A', + 'Hewlett-Packard', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["hp9808a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hp_ipc.cpp"]}'::jsonb + ), + ( + 'intellec-4-mod-4', + 'INTELLEC 4/MOD 4', + 'Intel', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["intlc44"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/intellec4.cpp"]}'::jsonb + ), + ( + 'intellec-4-mod-40', + 'INTELLEC 4/MOD 40', + 'Intel', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["intlc440"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/intellec4.cpp"]}'::jsonb + ), + ( + 'intellec-8', + 'intellec 8', + 'Intel', + 1973, + '{}'::text[], + array['Arcade'], + '{"mame":["intlc8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/intellec8.cpp"]}'::jsonb + ), + ( + 'intellec-8-mod-80', + 'intellec 8/Mod 80', + 'Intel', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["intlc8m80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/intellec8.cpp"]}'::jsonb + ), + ( + 'intellec-mds-ii', + 'Intellec MDS-II', + 'Intel', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["imds2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/imds2.cpp"]}'::jsonb + ), + ( + 'intelligent-game-mpt-03', + 'Intelligent Game MPT-03', + 'Intelligent Game', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["intmpt03"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["arcadia/arcadia.cpp"]}'::jsonb + ), + ( + 'inter-stellar-laser-fantasy', + 'Inter Stellar (Laser Fantasy)', + 'Funai/Gakken', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["istellar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/istellar.cpp"]}'::jsonb + ), + ( + 'inter-stellar-zangus-laser-fantasy-vol-2', + 'Inter Stellar Zangus (Laser Fantasy vol. 2)', + 'Funai/Gakken', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["istellar2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/istellar.cpp"]}'::jsonb + ), + ( + 'interact-32-in-1', + 'InterAct 32-in-1', + 'Intec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ii32in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'interact-8-in-1', + 'InterAct 8-in-1', + 'Intec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ii8in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'interact-complete-video-game-111-games-and-42-songs-g5410', + 'InterAct Complete Video Game - 111 Games & 42 Songs (G5410)', + 'Intec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["intg5410"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'interact-complete-video-game-89-in-1', + 'InterAct Complete Video Game - 89-in-1', + 'Intec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["intact89"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'interact-family-computer', + 'Interact Family Computer', + 'Interact Electronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["interact"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hec2hrp/hec2hrp.cpp"]}'::jsonb + ), + ( + 'interactive-coloring-book-disney-pixar-cars', + 'Interactive Coloring Book: Disney / Pixar Cars', + 'Techno Source', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["icb_car"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'interactive-coloring-book-disney-pixar-toy-story', + 'Interactive Coloring Book: Disney / Pixar Toy Story', + 'Techno Source', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["icb_ts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'interactive-coloring-book-disney-princess', + 'Interactive Coloring Book: Disney Princess', + 'Techno Source', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["icb_dp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'intergirl', + 'Intergirl', + 'Barko', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["intrgirl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'international-cup-94', + 'International Cup ''94', + 'Taito Corporation Japan', + 1994, + array['International Cup ''94 (Ver 2.2O 1994/05/26)'], + array['Arcade'], + '{"mame":["intcup94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-20x0', + 'InterPro/InterServe 20x0', + 'Intergraph', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ip2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-24x0', + 'InterPro/InterServe 24x0', + 'Intergraph', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ip2400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-25x0', + 'InterPro/InterServe 25x0', + 'Intergraph', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ip2500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-27x0', + 'InterPro/InterServe 27x0', + 'Intergraph', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ip2700"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-28x0', + 'InterPro/InterServe 28x0', + 'Intergraph', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["ip2800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-60x0', + 'InterPro/InterServe 60x0', + 'Intergraph', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ip6000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-64x0', + 'InterPro/InterServe 64x0', + 'Intergraph', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ip6400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-67x0', + 'InterPro/InterServe 67x0', + 'Intergraph', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ip6700"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'interpro-interserve-68x0', + 'InterPro/InterServe 68x0', + 'Intergraph', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ip6800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intergraph/interpro.cpp"]}'::jsonb + ), + ( + 'intersecti', + 'Intersecti', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["intrscti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/intrscti.cpp"]}'::jsonb + ), + ( + 'intrepid', + 'Intrepid', + 'Nova Games Ltd.', + 1983, + array['Intrepid (set 1)'], + array['Arcade'], + '{"mame":["intrepid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'inu-no-osanpo-dog-walking', + 'Inu no Osanpo / Dog Walking', + 'Wow Entertainment / Sega', + 2001, + array['Inu no Osanpo / Dog Walking (Japan, Export, Rev A)'], + array['Arcade'], + '{"mame":["inunoos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'invader-s-revenge', + 'Invader''s Revenge', + 'Zenitone-Microsec Ltd.', + null, + array['Invader''s Revenge (set 1)'], + array['Arcade'], + '{"mame":["invrvnge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'invasion-the-abductors', + 'Invasion: The Abductors', + 'Midway', + 1999, + array['Invasion: The Abductors (version 5.0)'], + array['Arcade'], + '{"mame":["invasnab"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midzeus.cpp"]}'::jsonb + ), + ( + 'invinco', + 'Invinco', + 'Sega', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["invinco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'invinco-car-hunt-germany', + 'Invinco / Car Hunt (Germany)', + 'Sega', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["invcarht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'invinco-deep-scan', + 'Invinco / Deep Scan', + 'Sega', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["invds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'invinco-head-on-2', + 'Invinco / Head On 2', + 'Sega', + 1979, + array['Invinco / Head On 2 (set 1)'], + array['Arcade'], + '{"mame":["invho2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'iowa-premium-player-2131-21-u5-1', + 'Iowa Premium Player (2131-21, U5-1)', + 'Merit', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["iowapp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'ipb', + 'iPB', + 'Intel', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ipb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/ipc.cpp"]}'::jsonb + ), + ( + 'ipds', + 'iPDS', + 'Intel', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["ipds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/ipds.cpp"]}'::jsonb + ), + ( + 'ipm-invader', + 'IPM Invader', + 'IPM', + 1979, + array['IPM Invader (M10, set 1)'], + array['Arcade'], + '{"mame":["ipminvad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m10.cpp"]}'::jsonb + ), + ( + 'ippatsu-gyakuten', + 'Ippatsu Gyakuten', + 'Public Software / Paradais', + 1986, + array['Ippatsu Gyakuten (Japan)'], + array['Arcade'], + '{"mame":["ippatsu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'iq-pipe', + 'IQ Pipe', + 'AMT', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["iqpipe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system16.cpp"]}'::jsonb + ), + ( + 'iq-151', + 'IQ-151', + 'ZPA Novy Bor', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["iq151"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zpa/iq151.cpp"]}'::jsonb + ), + ( + 'iq-block-v100u', + 'IQ-Block (V100U)', + 'IGS', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["iqblock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/iqblock.cpp"]}'::jsonb + ), + ( + 'iquest-4-0', + 'IQuest 4.0', + 'LeapFrog', + 2004, + array['IQuest 4.0 (US)'], + array['Arcade'], + '{"mame":["iquest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'iron', + 'Iron', + 'bootleg', + 1996, + array['Iron (SNES bootleg)'], + array['Arcade'], + '{"mame":["iron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'iron-fortress', + 'Iron Fortress', + 'Eolith', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["ironfort"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'iron-horse', + 'Iron Horse', + 'Konami', + 1986, + array['Iron Horse (version K)'], + array['Arcade'], + '{"mame":["ironhors"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ironhors.cpp"]}'::jsonb + ), + ( + 'ironman-ivan-stewart-s-super-off-road', + 'Ironman Ivan Stewart''s Super Off-Road', + 'Leland Corporation', + 1989, + array['Ironman Ivan Stewart''s Super Off-Road (rev 4)'], + array['Arcade'], + '{"mame":["offroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'ironman-ivan-stewart-s-super-off-road-track-pak', + 'Ironman Ivan Stewart''s Super Off-Road Track-Pak', + 'Leland Corporation', + 1989, + array['Ironman Ivan Stewart''s Super Off-Road Track-Pak (rev 4?)'], + array['Arcade'], + '{"mame":["offroadt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'isbc-286', + 'iSBC 286', + 'Intel', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc286"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'isbc-286-10', + 'iSBC 286/10', + 'Intel', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc2861"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'isbc-286-12', + 'iSBC 286/12', + 'Intel', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc28612"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'isbc-660', + 'iSBC 660', + 'Intel', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc660"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc660.cpp"]}'::jsonb + ), + ( + 'isbc-80-10', + 'iSBC 80/10', + 'Intel', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc8010"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc8010.cpp"]}'::jsonb + ), + ( + 'isbc-80-30', + 'iSBC 80/30', + 'Intel', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc8030"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc8030.cpp"]}'::jsonb + ), + ( + 'isbc-86-05', + 'iSBC 86/05', + 'Intel', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc8605"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'isbc-86-12a', + 'iSBC 86/12A', + 'Intel', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc86"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'isbc-86-30', + 'iSBC 86/30', + 'Intel', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["isbc8630"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'island', + 'Island', + 'Igrosoft', + 2005, + array['Island (050713 World)'], + array['Arcade'], + '{"mame":["island"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'island-2', + 'Island 2', + 'Igrosoft', + 2006, + array['Island 2 (060529 World)'], + array['Arcade'], + '{"mame":["island2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'isshoni-wanwan-waiwai-puppy-2008', + 'Isshoni Wanwan Waiwai Puppy 2008', + 'Sega', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["isshoni"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'itazura-cockroach', + 'Itazura Cockroach', + 'Amuzy Corporation', + 2007, + array['Itazura Cockroach (Japan, ver 1.02)'], + array['Arcade'], + '{"mame":["itazurac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'itazura-daisuki-sushimaru-kun', + 'Itazura Daisuki! Sushimaru Kun', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["sushimar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'itazura-monkey', + 'Itazura Monkey', + 'Sammy', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["itazuram"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'itazura-tenshi', + 'Itazura Tenshi', + 'Nichibutsu / Alice', + 1984, + array['Itazura Tenshi (Japan)'], + array['Arcade'], + '{"mame":["itaten"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/dacholer.cpp"]}'::jsonb + ), + ( + 'ivan-the-terrible', + 'Ivan The Terrible', + 'Excalibur Electronics', + 1997, + array['Ivan The Terrible (H8/3216 version)'], + array['Arcade'], + '{"mame":["ivant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excalibur/ivant.cpp"]}'::jsonb + ), + ( + 'ivory-tusk', + 'Ivory Tusk', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ivorytsk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'ixion', + 'Ixion', + 'Sega', + 1983, + array['Ixion (prototype)'], + array['Arcade'], + '{"mame":["ixion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/zaxxon.cpp"]}'::jsonb + ), + ( + 'j-league-soccer-v-shoot', + 'J-League Soccer V-Shoot', + 'Namco', + 1994, + array['J-League Soccer V-Shoot (Japan)'], + array['Sports'], + '{"mame":["vshoot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'j-j-squawkers', + 'J. J. Squawkers', + 'Athena / Able', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["jjsquawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'jack-house', + 'Jack House', + 'Chain Leisure Co., Ltd', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["jackhous"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jackhouse.cpp"]}'::jsonb + ), + ( + 'jack-rabbit', + 'Jack Rabbit', + 'Zaccaria', + 1984, + array['Jack Rabbit (set 1)'], + array['Arcade'], + '{"mame":["jackrabt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/zaccaria.cpp"]}'::jsonb + ), + ( + 'jack-the-giantkiller', + 'Jack the Giantkiller', + 'Hara Industries (Cinematronics license)', + 1982, + array['Jack the Giantkiller (set 1)'], + array['Arcade'], + '{"mame":["jack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ), + ( + 'jack-s-venture-inca-treasure', + 'Jack''s Venture - Inca Treasure', + 'Astro Corp.', + 2010, + array['Jack''s Venture - Inca Treasure (US.02.01.A, 2010/01/21)'], + array['Arcade'], + '{"mame":["jackvent"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/hummer.cpp"]}'::jsonb + ), + ( + 'jackal', + 'Jackal', + 'Konami', + 1986, + array['Jackal (World, 8-way Joystick)'], + array['Arcade'], + '{"mame":["jackal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/jackal.cpp"]}'::jsonb + ), + ( + 'jackie-chan-the-kung-fu-master', + 'Jackie Chan - The Kung-Fu Master', + 'Kaneko', + 1995, + array['Jackie Chan - The Kung-Fu Master (rev 4?)'], + array['Arcade'], + '{"mame":["jchan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/jchan.cpp"]}'::jsonb + ), + ( + 'jackie-chan-in-fists-of-fire', + 'Jackie Chan in Fists of Fire', + 'Kaneko', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["jchan2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/jchan.cpp"]}'::jsonb + ), + ( + 'jackpot-bowling', + 'Jackpot Bowling', + 'Electronic Projects', + 1998, + array['Jackpot Bowling (Ver 16.16L)'], + array['Sports'], + '{"mame":["jackpot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jackpot.cpp"]}'::jsonb + ), + ( + 'jackpot-cards-jackpot-pool-italy', + 'Jackpot Cards / Jackpot Pool (Italy)', + 'Electronic Projects', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["jackpool"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jackpool.cpp"]}'::jsonb + ), + ( + 'jackpot-knight-v1-1', + 'Jackpot Knight (V1.1)', + 'Dyna / R-Stone', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["jpknight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'jackpot-party', + 'Jackpot Party', + 'WMS', + 1998, + array['Jackpot Party (Russian)'], + array['Arcade'], + '{"mame":["jptparty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'jaguar-ntsc', + 'Jaguar (NTSC)', + 'Atari', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["jaguar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'jail-break', + 'Jail Break', + 'Konami', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["jailbrek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/jailbrek.cpp"]}'::jsonb + ), + ( + 'jambo-safari', + 'Jambo! Safari', + 'Sega', + 1999, + array['Jambo! Safari (Rev A)'], + array['Arcade'], + '{"mame":["jambo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'jaminator', + 'Jaminator', + 'Noise Toys Inc.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["jaminator"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jaminator.cpp"]}'::jsonb + ), + ( + 'jammin', + 'Jammin''', + 'Atari Games', + 1985, + array['Jammin'' (prototype)'], + array['Arcade'], + '{"mame":["jammin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'jan-jan-paradise', + 'Jan Jan Paradise', + 'Electro Design', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["jjparads"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'jan-jan-paradise-2', + 'Jan Jan Paradise 2', + 'Electro Design', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["jjparad2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'jan-mu', + 'Jan Mu', + 'Wing Co., Ltd', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["janmu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/pinkiri8.cpp"]}'::jsonb + ), + ( + 'jan-oh', + 'Jan Oh', + 'Toaplan', + 1984, + array['Jan Oh (set 1)'], + array['Arcade'], + '{"mame":["janoh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'jang-taku-v-1-3', + 'Jang Taku (V 1.3)', + 'Dyna Computer', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["jangtaku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'jangou', + 'Jangou', + 'Nichibutsu', + 1983, + array['Jangou (Japan)'], + array['Arcade'], + '{"mame":["jangou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/jangou.cpp"]}'::jsonb + ), + ( + 'jangou-lady', + 'Jangou Lady', + 'Nichibutsu', + 1984, + array['Jangou Lady (Japan)'], + array['Arcade'], + '{"mame":["jngolady"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/jangou.cpp"]}'::jsonb + ), + ( + 'janken-game-acchi-muite-hoi', + 'Janken Game Acchi Muite Hoi!', + 'Data East Corporation', + 1995, + array['Janken Game Acchi Muite Hoi! (Japan 1.3)'], + array['Arcade'], + '{"mame":["acchi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_mlc.cpp"]}'::jsonb + ), + ( + 'janken-man-kattara-ageru', + 'Janken Man Kattara Ageru', + 'Sunwise', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["jankenmn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunwise/jankenmn.cpp"]}'::jsonb + ), + ( + 'janpai-puzzle-choukou', + 'Janpai Puzzle Choukou', + 'Mitchell (Capcom license)', + 2001, + array['Janpai Puzzle Choukou (Japan 010820)'], + array['Puzzle'], + '{"mame":["choko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'janputer-96', + 'Janputer ''96', + 'Dynax', + 1996, + array['Janputer ''96 (Japan)'], + array['Arcade'], + '{"mame":["janptr96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'janputer-special', + 'Janputer Special', + 'Dynax', + 1997, + array['Janputer Special (Japan)'], + array['Arcade'], + '{"mame":["janptrsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'janshi', + 'Janshi', + 'Eagle', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["janshi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/pinkiri8.cpp"]}'::jsonb + ), + ( + 'janshin-densetsu-quest-of-jongmaster', + 'Janshin Densetsu - Quest of Jongmaster', + 'Aicom', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["janshin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'jansou', + 'Jansou', + 'Dyna Computer', + 1985, + array['Jansou (set 1)'], + array['Arcade'], + '{"mame":["jansou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'jester-chance', + 'Jester Chance', + 'Tranex Australia Pty Ltd.', + 1987, + array['Jester Chance (dual 6809 GI Australasia PCB)'], + array['Arcade'], + '{"mame":["jesterch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gi6809.cpp"]}'::jsonb + ), + ( + 'jester-magic', + 'Jester Magic', + 'Konami', + null, + array['Jester Magic (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["jestmagi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'jet-fighter-jet-fighter-cocktail-launch-aircraft', + 'Jet Fighter/Jet Fighter Cocktail/Launch Aircraft', + 'Atari', + 1975, + array['Jet Fighter/Jet Fighter Cocktail/Launch Aircraft (set 1)'], + array['Arcade'], + '{"mame":["jetfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'jet-wave-eab-euro-v1-04', + 'Jet Wave (EAB, Euro v1.04)', + 'Konami', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["jetwave"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/zr107.cpp"]}'::jsonb + ), + ( + 'jikkyou-pawafuru-puro-yakyu-ex', + 'Jikkyou Pawafuru Puro Yakyu EX', + 'Konami', + 1998, + array['Jikkyou Pawafuru Puro Yakyu EX (GX802 VER. JAB)'], + array['Arcade'], + '{"mame":["powyakex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'jikkyou-pawafuru-puro-yakyu-ex-98', + 'Jikkyou Pawafuru Puro Yakyu EX ''98', + 'Konami', + 1998, + array['Jikkyou Pawafuru Puro Yakyu EX ''98 (GC811 VER. JAA)'], + array['Arcade'], + '{"mame":["jppyex98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'jikkyou-powerful-pro-yakyuu-96', + 'Jikkyou Powerful Pro Yakyuu ''96', + 'Konami', + 1996, + array['Jikkyou Powerful Pro Yakyuu ''96 (GV017 Japan 1.03)'], + array['Arcade'], + '{"mame":["powyak96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'jin', + 'Jin', + 'Falcon', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["jin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'jin-hu-lu-ii-v412gs', + 'Jin Hu Lu II (v412GS)', + 'IGS', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["jinhulu2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'jin-hua-zhengba-v113cn', + 'Jin Hua Zhengba (V113CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jhzb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'jin-huangguan', + 'Jin Huangguan', + 'IGS', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["jinhuang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'jin-huangguan-3-dai-v445cn', + 'Jin Huangguan 3-dai (V445CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jhg3d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'jin-huangguan-ii-v310cn', + 'Jin Huangguan II (V310CN)', + 'IGS', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["jinhuang2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'jin-sanse', + 'Jin Sanse', + 'Sealy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jinsanse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_8031.cpp"]}'::jsonb + ), + ( + 'jin-zuanshi', + 'Jin Zuanshi', + 'Sealy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["jzuanshi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_z80.cpp"]}'::jsonb + ), + ( + 'jingi-storm-the-arcade-gdl-0037', + 'Jingi Storm - The Arcade (GDL-0037)', + 'Atrativa Japan', + 2006, + array['Jingi Storm - The Arcade (Japan) (GDL-0037)'], + array['Arcade'], + '{"mame":["jingystm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'jingle-bell', + 'Jingle Bell', + 'IGS', + 1997, + array['Jingle Bell (v200US)'], + array['Arcade'], + '{"mame":["jbell"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'jinpai-suoha-show-hand', + 'Jinpai Suoha - Show Hand', + 'GMS', + 2004, + array['Jinpai Suoha - Show Hand (Chinese version 2004-09-22)'], + array['Arcade'], + '{"mame":["jinpaish"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'jinxiu-zhonghua', + 'Jinxiu Zhonghua', + 'BMC', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["jxzh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/koftball.cpp"]}'::jsonb + ), + ( + 'jipin-dou-dizhu', + 'Jipin Dou Dizhu', + 'Sealy', + 2005, + array['Jipin Dou Dizhu (set 1)'], + array['Arcade'], + '{"mame":["jpddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/menghong.cpp"]}'::jsonb + ), + ( + 'jitsuryoku-pro-yakyuu', + 'Jitsuryoku!! Pro Yakyuu', + 'Jaleco', + 1989, + array['Jitsuryoku!! Pro Yakyuu (Japan)'], + array['Arcade'], + '{"mame":["jitsupro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'jixiang-ruyi-v116cn', + 'Jixiang Ruyi (V116CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jxry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'jockey-club-v1-18', + 'Jockey Club (v1.18)', + 'Seta (Visco license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["jockeyc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'jockey-club-ii-v1-12x-older-hardware', + 'Jockey Club II (v1.12X, older hardware)', + 'Seta', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["jclub2v112"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/jclub2.cpp"]}'::jsonb + ), + ( + 'jockey-grand-prix', + 'Jockey Grand Prix', + 'Sun Amusement / BrezzaSoft', + 2001, + array['Jockey Grand Prix (set 1)'], + array['Arcade'], + '{"mame":["jockeygp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'joe-and-mac-returns', + 'Joe & Mac Returns', + 'Data East Corporation', + 1994, + array['Joe & Mac Returns (World, Version 1.1, 1994.05.27)'], + array['Arcade'], + '{"mame":["joemacr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/simpl156.cpp"]}'::jsonb + ), + ( + 'joe-montana-ii-sports-talk-football-mega-tech', + 'Joe Montana II: Sports Talk Football (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Sports'], + '{"mame":["mt_stf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'john-elway-s-team-quarterback', + 'John Elway''s Team Quarterback', + 'Leland Corporation', + 1988, + array['John Elway''s Team Quarterback (rev 3)'], + array['Arcade'], + '{"mame":["teamqb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'johnny-nero-action-hero-v01-01-08', + 'Johnny Nero Action Hero (v01.01.08)', + 'ICE/Play Mechanix', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["jnero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/vp101.cpp"]}'::jsonb + ), + ( + 'joinem', + 'Joinem', + 'Global Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["joinem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ), + ( + 'jojo-s-bizarre-adventure', + 'JoJo''s Bizarre Adventure', + 'Capcom', + 1999, + array['JoJo''s Bizarre Adventure (Europe 991015, NO CD)'], + array['Arcade'], + '{"mame":["jojoba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'jojo-s-venture', + 'JoJo''s Venture', + 'Capcom', + 1998, + array['JoJo''s Venture (Europe 990128)'], + array['Arcade'], + '{"mame":["jojo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'joker-bonus', + 'Joker Bonus', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jkrbonus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'joker-card-encrypted', + 'Joker Card (encrypted)', + 'Fun World', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["jokercrdf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'joker-card-inter-games', + 'Joker Card (Inter Games)', + 'Inter Games', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["intrgmes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'joker-card-multi-card-epoxy-brick-cpu', + 'Joker Card / Multi Card (Epoxy brick CPU)', + 'Fun World', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["jokcrdep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'joker-card-300', + 'Joker Card 300', + 'Amatic Trading', + 1993, + array['Joker Card 300 (Ver.A267BC, encrypted)'], + array['Arcade'], + '{"mame":["jokercrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'joker-lady', + 'Joker Lady', + 'Videos A A', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jokrlady"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videosaa.cpp"]}'::jsonb + ), + ( + 'joker-master-2000-special-edition-v515', + 'Joker Master 2000 Special Edition (V515)', + 'Pick-A-Party USA', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["jkrmast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'joker-s-wild', + 'Joker''s Wild', + 'Sigma', + 1991, + array['Joker''s Wild (B52 system, BP55114-V1104, Ver.054NMV)', 'Joker''s Wild (Rev. B)'], + array['Arcade'], + '{"mame":["jwildb52","segajw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab52.cpp","sega/segajw.cpp"]}'::jsonb + ), + ( + 'joker-s-wild-encrypted', + 'Joker''s Wild (encrypted)', + 'Sigma', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["jokrwild"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jokrwild.cpp"]}'::jsonb + ), + ( + 'jolli-witch', + 'Jolli Witch', + 'Video Klein', + 1994, + array['Jolli Witch (Export, 6T/12T ver 1.57D)'], + array['Arcade'], + '{"mame":["witchjol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'jolly-card', + 'Jolly Card', + 'TAB Austria', + 1985, + array['Jolly Card (German, set 1)'], + array['Arcade'], + '{"mame":["jollycrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'jolly-jogger', + 'Jolly Jogger', + 'Taito Corporation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["jollyjgr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/jollyjgr.cpp"]}'::jsonb + ), + ( + 'jolly-joker', + 'Jolly Joker', + 'Impera', + null, + array['Jolly Joker (98bet, set 1)'], + array['Arcade'], + '{"mame":["jolyjokr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'jong-shin', + 'Jong Shin', + 'Dyna Electronics', + 1986, + array['Jong Shin (Japan)'], + array['Arcade'], + '{"mame":["jongshin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'jong-tou-ki', + 'Jong Tou Ki', + 'Dynax', + 1990, + array['Jong Tou Ki (Japan)'], + array['Arcade'], + '{"mame":["jantouki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'jong-yu-ki', + 'Jong Yu Ki', + 'Dynax', + 1988, + array['Jong Yu Ki (Japan)'], + array['Arcade'], + '{"mame":["janyuki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'jongkyo', + 'Jongkyo', + 'Sanritsu / Kiwako', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["jongkyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/jongkyo.cpp"]}'::jsonb + ), + ( + 'jongputer', + 'Jongputer', + 'Alpha Denshi Co.', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["jongpute"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/route16.cpp"]}'::jsonb + ), + ( + 'jornada-720', + 'Jornada 720', + 'Hewlett Packard', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["jorn720"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/jornada.cpp"]}'::jsonb + ), + ( + 'joryuu-syougi-kyoushitsu', + 'Joryuu Syougi Kyoushitsu', + 'Visco', + 1997, + array['Joryuu Syougi Kyoushitsu (Japan)'], + array['Arcade'], + '{"mame":["jsk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'joshi-volleyball', + 'Joshi Volleyball', + 'Allumer / Taito Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["josvolly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/gsword.cpp"]}'::jsonb + ), + ( + 'journey', + 'Journey', + 'Bally Midway', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["journey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'joust-green-label', + 'Joust (Green label)', + 'Williams', + 1982, + '{}'::text[], + array['Platformer', 'Classic'], + '{"mame":["joust"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'joust-2-survival-of-the-fittest', + 'Joust 2 - Survival of the Fittest', + 'Williams', + 1986, + array['Joust 2 - Survival of the Fittest (revision 2)'], + array['Platformer', 'Classic'], + '{"mame":["joust2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'joy-stand-private', + 'Joy Stand Private', + 'Yuvo', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["joystand"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/joystand.cpp"]}'::jsonb + ), + ( + 'joyful-road', + 'Joyful Road', + 'SNK', + 1983, + array['Joyful Road (Japan)'], + array['Arcade'], + '{"mame":["joyfulr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/munchmo.cpp"]}'::jsonb + ), + ( + 'joypad-65', + 'Joypad 65', + 'WinFun / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["joypad65"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'joystick-30', + 'Joystick 30', + 'WinFun / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["joysti30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'joystick88', + 'Joystick88', + 'Play Vision', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["88in1joy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'jr-100', + 'JR-100', + 'National', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["jr100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["matsushita/jr100.cpp"]}'::jsonb + ), + ( + 'jr-200', + 'JR-200', + 'National', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["jr200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["matsushita/jr200.cpp"]}'::jsonb + ), + ( + 'jr-pac-man-11-9-83', + 'Jr. Pac-Man (11/9/83)', + 'Bally Midway', + 1983, + '{}'::text[], + array['Classic'], + '{"mame":["jrpacman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/jrpacman.cpp"]}'::jsonb + ), + ( + 'judge-dredd', + 'Judge Dredd', + 'Midway', + 1993, + array['Judge Dredd (rev TA1 7/12/92, location test)'], + array['Arcade'], + '{"mame":["jdreddp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midtunit.cpp"]}'::jsonb + ), + ( + 'juezhan-tianhuang', + 'Juezhan Tianhuang', + '', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["jzth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_ybox.cpp"]}'::jsonb + ), + ( + 'jumanji-v502', + 'Jumanji (V502)', + 'I.A.M.', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["jumanji"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/39in1.cpp"]}'::jsonb + ), + ( + 'jumbo-godzilla', + 'Jumbo Godzilla', + 'Namco', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["jumbogod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'jump-bug', + 'Jump Bug', + 'Hoei (Rock-Ola license)', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["jumpbug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'jump-coaster', + 'Jump Coaster', + 'Kaneko Elc. Co.', + 1983, + array['Jump Coaster (World)'], + array['Arcade'], + '{"mame":["jumpcoas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/fastfred.cpp"]}'::jsonb + ), + ( + 'jump-jump', + 'Jump Jump', + 'dgPIX Entertainment Inc.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["jumpjump"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'jump-kids', + 'Jump Kids', + 'Comad', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["jumpkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'jump-kun', + 'Jump Kun', + 'Kaneko', + 1984, + array['Jump Kun (prototype)'], + array['Arcade'], + '{"mame":["jumpkun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/pitnrun.cpp"]}'::jsonb + ), + ( + 'jump-shot', + 'Jump Shot', + 'Bally Midway', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["jumpshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'jumping-break', + 'Jumping Break', + 'F2 System', + 1999, + array['Jumping Break (set 1)'], + array['Arcade'], + '{"mame":["jmpbreak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'jumping-cross', + 'Jumping Cross', + 'SNK', + 1984, + array['Jumping Cross (set 1)'], + array['Arcade'], + '{"mame":["jcross"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'jumping-jack', + 'Jumping Jack', + 'Universal', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["jjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/docastle.cpp"]}'::jsonb + ), + ( + 'jumping-jackpots-atronic', + 'Jumping Jackpots (Atronic)', + 'Atronic', + 2002, + array['Jumping Jackpots (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["jumpjkpt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'jumping-pop', + 'Jumping Pop', + 'Nics', + 1992, + array['Jumping Pop (Nics, Korean hack of Plump Pop)', 'Jumping Pop (set 1)'], + array['Arcade'], + '{"mame":["jpopnics","jumppop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp","misc/esd16.cpp"]}'::jsonb + ), + ( + 'junai-manatsu-no-first-kiss', + 'Junai - Manatsu no First Kiss', + 'Nichibutsu/eic', + 1998, + array['Junai - Manatsu no First Kiss (Japan)'], + array['Arcade'], + '{"mame":["junai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'junai-2-white-love-story', + 'Junai 2 - White Love Story', + 'Nichibutsu/eic', + 1998, + array['Junai 2 - White Love Story (Japan)'], + array['Arcade'], + '{"mame":["junai2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'jungle-italy-vi3-02', + 'Jungle (Italy VI3.02)', + 'Yonshi', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["jungleyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jungleyo.cpp"]}'::jsonb + ), + ( + 'jungle-king', + 'Jungle King', + 'IGS', + 1982, + array['Jungle King (V302US)', 'Jungle King (Japan)'], + array['Arcade'], + '{"mame":["jking302us","junglek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp","taito/taitosj.cpp"]}'::jsonb + ), + ( + 'jungle-king-2002', + 'Jungle King 2002', + 'IGS', + 2001, + array['Jungle King 2002 (V209US)'], + array['Arcade'], + '{"mame":["jking02"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'jungle-king-2004', + 'Jungle King 2004', + 'IGS', + 2003, + array['Jungle King 2004 (V101US)'], + array['Arcade'], + '{"mame":["jking04"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'jungle-s-animals-v3-0', + 'Jungle''s Animals (v3.0)', + 'New Impeuropex Corp. / New Chitarrina', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["jungleani"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'jungler', + 'Jungler', + 'Konami', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["jungler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rallyx.cpp"]}'::jsonb + ), + ( + 'junior-computer', + 'Junior Computer', + 'Elektor', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["junior"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektor/junior.cpp"]}'::jsonb + ), + ( + 'juno-first', + 'Juno First', + 'Konami', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["junofrst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/junofrst.cpp"]}'::jsonb + ), + ( + 'jupiter-ace', + 'Jupiter Ace', + 'Jupiter Cantab', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["jupace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cantab/jupace.cpp"]}'::jsonb + ), + ( + 'jupiter-ii', + 'Jupiter II', + 'Wave Mate', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["jupiter2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wavemate/jupiter.cpp"]}'::jsonb + ), + ( + 'jupiter-iii', + 'Jupiter III', + 'Wave Mate', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["jupiter3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wavemate/jupiter.cpp"]}'::jsonb + ), + ( + 'jurassic-park', + 'Jurassic Park', + 'Sega', + 1993, + array['Jurassic Park (World, Rev A)', 'Jurassic Park (bootleg of Mega Drive version)'], + array['Light gun'], + '{"mame":["jpark","jparkmb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp","sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'jurassic-park-iii', + 'Jurassic Park III', + 'Konami', + 2001, + array['Jurassic Park III (ver EBC)'], + array['Light gun'], + '{"mame":["jpark3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'jyangokushi-haoh-no-saihai', + 'Jyangokushi: Haoh no Saihai', + 'Capcom', + 1999, + array['Jyangokushi: Haoh no Saihai (Japan 990527)'], + array['Arcade'], + '{"mame":["jyangoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'k-2-8-talking-learning-computer-model-7-230', + 'K-2-8: Talking Learning Computer (model 7-230)', + 'Tiger Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["k28o"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tiger/k28o.cpp"]}'::jsonb + ), + ( + 'k-2-8-talking-learning-computer-model-7-232', + 'K-2-8: Talking Learning Computer (model 7-232)', + 'Tiger Electronics', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["k28"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tiger/k28.cpp"]}'::jsonb + ), + ( + 'k1-digital-multi-dimensional-synthesizer', + 'K1 Digital Multi-Dimensional Synthesizer', + 'Kawai Musical Instrument Manufacturing', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["k1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/k1.cpp"]}'::jsonb + ), + ( + 'k1003', + 'K1003', + 'Robotron', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["k1003"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/k1003.cpp"]}'::jsonb + ), + ( + 'k1rii-digital-multi-dimensional-synthesizer-module', + 'K1rII Digital Multi-Dimensional Synthesizer Module', + 'Kawai Musical Instrument Manufacturing', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["k1rii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/k1.cpp"]}'::jsonb + ), + ( + 'k2000', + 'K2000', + 'Kurzweil Music Systems', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["k2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kurzweil/krz2000.cpp"]}'::jsonb + ), + ( + 'k4-16-bit-digital-synthesizer', + 'K4 16-bit Digital Synthesizer', + 'Kawai Musical Instrument Manufacturing', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["k4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/k4.cpp"]}'::jsonb + ), + ( + 'k5-digital-multi-dimensional-synthesizer', + 'K5 Digital Multi-Dimensional Synthesizer', + 'Kawai Musical Instrument Manufacturing', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["k5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/k5.cpp"]}'::jsonb + ), + ( + 'k8915', + 'K8915', + 'Robotron', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["k8915"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/k8915.cpp"]}'::jsonb + ), + ( + 'kabuki-z', + 'Kabuki-Z', + 'Kaneko / Taito Corporation Japan', + 1988, + array['Kabuki-Z (World)'], + array['Arcade'], + '{"mame":["kabukiz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'kageki', + 'Kageki', + 'Kaneko / Taito Corporation', + 1988, + array['Kageki (World)'], + array['Arcade'], + '{"mame":["kageki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'kaimen-hu-bmc', + 'Kaimen Hu (BMC)', + 'BMC', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["kaimenhu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/koftball.cpp"]}'::jsonb + ), + ( + 'kaimen-hu-pan-electronics', + 'Kaimen Hu (PAN Electronics)', + 'PAN Electronics', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["kmhpan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'kaiser-knuckle', + 'Kaiser Knuckle', + 'Taito Corporation Japan', + 1994, + array['Kaiser Knuckle (Ver 2.1O 1994/07/29)'], + array['Arcade'], + '{"mame":["kaiserkn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'kaitei-takara-sagashi', + 'Kaitei Takara Sagashi', + 'K.K. Tokki', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["kaitei"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'kajot-card', + 'Kajot Card', + 'Amatic', + 1993, + array['Kajot Card (Version 1.01, Wien Euro)'], + array['Arcade'], + '{"mame":["kajotcrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'kamen-rider-ryuki-survival-fight', + 'Kamen Rider Ryuki: Survival Fight', + 'Bandai', + 2002, + array['Kamen Rider Ryuki: Survival Fight (Japan)'], + array['Arcade'], + '{"mame":["banmrid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_rad.cpp"]}'::jsonb + ), + ( + 'kamikaze', + 'Kamikaze', + 'Konami (Leijac Corporation license)', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["kamikaze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/astinvad.cpp"]}'::jsonb + ), + ( + 'kamikaze-cabbie', + 'Kamikaze Cabbie', + 'Data East Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["kamikcab"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/liberate.cpp"]}'::jsonb + ), + ( + 'kanatsuen-no-onna', + 'Kanatsuen no Onna', + 'Panac', + 1988, + array['Kanatsuen no Onna (Japan 880905)'], + array['Arcade'], + '{"mame":["kanatuen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'kangaroo', + 'Kangaroo', + 'Sun Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["kangaroo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/kangaroo.cpp"]}'::jsonb + ), + ( + 'kankoku-hanafuda-go-stop', + 'Kankoku Hanafuda Go-Stop', + 'Visco', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gostop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'kaos', + 'Kaos', + 'Pacific Polytechnical Corp. (Game Plan license)', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["kaos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/killcom.cpp"]}'::jsonb + ), + ( + 'karate-blazers', + 'Karate Blazers', + 'Video System Co.', + 1991, + array['Karate Blazers (World, set 1)'], + array['Arcade'], + '{"mame":["karatblz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pspikes.cpp"]}'::jsonb + ), + ( + 'karate-champ', + 'Karate Champ', + 'Data East USA', + 1984, + array['Karate Champ (US)'], + array['Arcade'], + '{"mame":["kchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/kchamp.cpp"]}'::jsonb + ), + ( + 'karate-champ-player-vs-player', + 'Karate Champ: Player Vs Player', + 'Data East USA', + 1984, + array['Karate Champ: Player Vs Player (US, set 1)'], + array['Arcade'], + '{"mame":["kchampvs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/kchamp.cpp"]}'::jsonb + ), + ( + 'karian-cross', + 'Karian Cross', + 'Deniam', + 1996, + array['Karian Cross (Rev. 1.0)'], + array['Arcade'], + '{"mame":["karianx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/deniam.cpp"]}'::jsonb + ), + ( + 'karnov', + 'Karnov', + 'Data East USA', + 1987, + array['Karnov (US, rev 6)'], + array['Arcade'], + '{"mame":["karnov"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/karnov.cpp"]}'::jsonb + ), + ( + 'karnov-s-revenge-fighter-s-history-dynamite', + 'Karnov''s Revenge / Fighter''s History Dynamite', + 'Data East Corporation', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["karnovr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'karous-gdl-0040', + 'Karous (GDL-0040)', + 'Milestone', + 2006, + array['Karous (Japan) (GDL-0040)'], + array['Arcade'], + '{"mame":["karous"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'kart-duel', + 'Kart Duel', + 'Gaps / Namco', + 2000, + array['Kart Duel (World, KTD2/VER.A)'], + array['Arcade'], + '{"mame":["kartduel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'kasei-channel-mars-tv', + 'Kasei Channel Mars TV', + 'Sega', + 1999, + array['Kasei Channel Mars TV (Japan)'], + array['Arcade'], + '{"mame":["marstv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'kasino-89', + 'Kasino ''89', + 'SFC S.R.L.', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["kas89"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/kas89.cpp"]}'::jsonb + ), + ( + 'katori-attack', + 'Katori Attack', + 'Amuzy Corporation', + 2005, + array['Katori Attack (Japan, ver 1.03)'], + array['Arcade'], + '{"mame":["katori"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'kattobase-power-pro-kun', + 'Kattobase Power Pro Kun', + 'Konami', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["kattobas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'kaypro-10-1983', + 'Kaypro 10 - 1983', + 'Non-Linear Systems', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["kaypro10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaypro/kaypro.cpp"]}'::jsonb + ), + ( + 'kaypro-4-84', + 'Kaypro 4/84', + 'Kaypro Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["kaypro484"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaypro/kaypro.cpp"]}'::jsonb + ), + ( + 'kaypro-ii-2-83', + 'Kaypro II - 2/83', + 'Non-Linear Systems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["kayproii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaypro/kaypro.cpp"]}'::jsonb + ), + ( + 'kaypro-new-2', + 'Kaypro New 2', + 'Kaypro Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["kaypronew2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaypro/kaypro.cpp"]}'::jsonb + ), + ( + 'kaypro-robie', + 'Kaypro Robie', + 'Kaypro Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["robie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaypro/kaypro.cpp"]}'::jsonb + ), + ( + 'keirin-ou', + 'Keirin Ou', + 'Excellent System', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["keirinou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/witch.cpp"]}'::jsonb + ), + ( + 'keks', + 'Keks', + 'Igrosoft', + 2006, + array['Keks (110816 World)'], + array['Arcade'], + '{"mame":["keks_6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'ken-sei-mogura-street-fighter-ii', + 'Ken Sei Mogura: Street Fighter II', + 'Capcom / Togo / Sigma', + 1994, + array['Ken Sei Mogura: Street Fighter II (Japan 940418, Ver 1.00)'], + array['Fighting'], + '{"mame":["kenseim"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/kenseim.cpp"]}'::jsonb + ), + ( + 'keno-21', + 'Keno 21', + 'Astro Corp.', + null, + array['Keno 21 (Ver. A-2.30)'], + array['Arcade'], + '{"mame":["keno21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'kero-kero-keroppi-s-let-s-play-together', + 'Kero Kero Keroppi''s Let''s Play Together', + 'American Sammy', + 1995, + array['Kero Kero Keroppi''s Let''s Play Together (USA, Version 2.0)'], + array['Arcade'], + '{"mame":["keroppi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'keroro-gunsou-pekopon-shinryaku-shirei-de-arimasu', + 'Keroro Gunsou: Pekopon Shinryaku Shirei...De Arimasu!', + 'Namco / Banpresto', + 2006, + array['Keroro Gunsou: Pekopon Shinryaku Shirei...De Arimasu! (KRG1 Ver.A)'], + array['Arcade'], + '{"mame":["keroro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'ketsui-kizuna-jigoku-tachi', + 'Ketsui: Kizuna Jigoku Tachi', + 'Cave (AMI license)', + 2002, + array['Ketsui: Kizuna Jigoku Tachi (2003/01/01. Master Ver.)'], + array['Arcade'], + '{"mame":["ket"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'keyboardmania', + 'Keyboardmania', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["kbm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'keyboardmania-2nd-mix', + 'Keyboardmania 2nd Mix', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["kbm2nd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'keyboardmania-3rd-mix', + 'Keyboardmania 3rd Mix', + 'Konami', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["kbm3rd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'kick-4-cash-export', + 'Kick ''4'' Cash (Export)', + 'Sega', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["kick4csh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'kick-upright', + 'Kick (upright)', + 'Midway', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["kick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'kick-and-kick', + 'Kick & Kick', + 'Konami', + 2001, + array['Kick & Kick (GNA36 VER. EAA)'], + array['Arcade'], + '{"mame":["kicknkick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'kick-and-run', + 'Kick and Run', + 'Taito Corporation', + 1986, + array['Kick and Run (World)'], + array['Arcade'], + '{"mame":["kicknrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/kikikai.cpp"]}'::jsonb + ), + ( + 'kick-ball', + 'Kick Ball', + 'Seoung Youn', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["kickball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pspikes.cpp"]}'::jsonb + ), + ( + 'kick-boy', + 'Kick Boy', + 'Nichibutsu', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["kickboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/dacholer.cpp"]}'::jsonb + ), + ( + 'kick-goal', + 'Kick Goal', + 'TCH / Proyesel', + 1995, + array['Kick Goal (set 1)'], + array['Arcade'], + '{"mame":["kickgoal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/kickgoal.cpp"]}'::jsonb + ), + ( + 'kick-off-jaleco-cup', + 'Kick Off: Jaleco Cup', + 'Jaleco', + 1988, + array['Kick Off: Jaleco Cup (Japan)'], + array['Arcade'], + '{"mame":["kickoff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'kick-rider', + 'Kick Rider', + 'Universal', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["kickridr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/docastle.cpp"]}'::jsonb + ), + ( + 'kick-start-wheelie-king', + 'Kick Start: Wheelie King', + 'Taito Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["kikstart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'kicker', + 'Kicker', + 'Konami', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["kicker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/shaolins.cpp"]}'::jsonb + ), + ( + 'kid-chameleon-mega-tech', + 'Kid Chameleon (Mega-Tech)', + 'Sega', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_kcham"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'kid-niki-radical-ninja', + 'Kid Niki - Radical Ninja', + 'Irem', + 1986, + array['Kid Niki - Radical Ninja (World)'], + array['Arcade'], + '{"mame":["kidniki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'kid-no-hore-hore-daisakusen', + 'Kid no Hore Hore Daisakusen', + 'Nichibutsu', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["horekid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/terracre.cpp"]}'::jsonb + ), + ( + 'kiki-kaikai', + 'KiKi KaiKai', + 'Taito Corporation', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["kikikai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/kikikai.cpp"]}'::jsonb + ), + ( + 'kiki-ippatsu-mayumi-chan', + 'Kiki-Ippatsu Mayumi-chan', + 'Victory L.L.C.', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mayumi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/chinsan.cpp"]}'::jsonb + ), + ( + 'killer-comet', + 'Killer Comet', + 'Centuri (Game Plan license)', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["killcom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/killcom.cpp"]}'::jsonb + ), + ( + 'killer-instinct', + 'Killer Instinct', + 'Rare / Nintendo (Midway license)', + 1994, + array['Killer Instinct (SNES bootleg)', 'Killer Instinct (SNES bootleg with timer)'], + array['Fighting'], + '{"mame":["kinst","kinstb","kinstsnes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rare/kinst.cpp","nintendo/snesb.cpp","nintendo/snesb51.cpp"]}'::jsonb + ), + ( + 'killer-instinct-2', + 'Killer Instinct 2', + 'Rare / Nintendo (Midway license)', + 1996, + '{}'::text[], + array['Fighting'], + '{"mame":["kinst2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rare/kinst.cpp"]}'::jsonb + ), + ( + 'kimble-double-hi-lo', + 'Kimble Double HI-LO', + 'Kimble Ireland', + null, + array['Kimble Double HI-LO (Z80 version, unencrypted)', 'Kimble Double HI-LO (Z80 version, encrypted)'], + array['Arcade'], + '{"mame":["hilokimb","kimbldhl","kimblz80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'king-and-balloon', + 'King & Balloon', + 'Namco', + 1980, + array['King & Balloon (US)'], + array['Arcade'], + '{"mame":["kingball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'king-derby-1981', + 'King Derby (1981)', + 'Tazmi', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["kingdrby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/kingdrby.cpp"]}'::jsonb + ), + ( + 'king-of-boxer', + 'King of Boxer', + 'Woodplace Inc.', + 1985, + array['King of Boxer (World)'], + array['Arcade'], + '{"mame":["kingofb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/kingobox.cpp"]}'::jsonb + ), + ( + 'king-of-dynast-gear', + 'King of Dynast Gear', + 'EZ Graphics', + 1999, + array['King of Dynast Gear (version 1.8)'], + array['Arcade'], + '{"mame":["kdynastg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'king-of-the-monsters', + 'King of the Monsters', + 'SNK', + 1991, + array['King of the Monsters (set 1)'], + array['Arcade'], + '{"mame":["kotm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'king-of-the-monsters-2-the-next-thing-ngm-039-ngh-039', + 'King of the Monsters 2 - The Next Thing (NGM-039 ~ NGH-039)', + 'SNK', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["kotm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'king-tut', + 'King Tut', + 'Konami', + null, + array['King Tut (NSW, Australia)'], + array['Arcade'], + '{"mame":["kingtut"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'kingdom-grandprix', + 'Kingdom Grandprix', + 'Raizing / Eighting', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["kingdmgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/raizing.cpp"]}'::jsonb + ), + ( + 'kingpin', + 'Kingpin', + 'ACL Manufacturing', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["kingpin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/kingpin.cpp"]}'::jsonb + ), + ( + 'kinnikuman-muscle-grand-prix', + 'Kinnikuman Muscle Grand Prix', + 'Namco', + 2006, + array['Kinnikuman Muscle Grand Prix (KN1 Ver. A)'], + array['Arcade'], + '{"mame":["kinniku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'kinnikuman-muscle-grand-prix-2', + 'Kinnikuman Muscle Grand Prix 2', + 'Namco', + 2007, + array['Kinnikuman Muscle Grand Prix 2 (KN2 Ver. A)'], + array['Arcade'], + '{"mame":["kinniku2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'kirameki-star-road', + 'Kirameki Star Road', + 'Taito Corporation', + 1997, + array['Kirameki Star Road (Ver 2.10J 1997/08/29)'], + array['Arcade'], + '{"mame":["kirameki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'kisekae-hanafuda', + 'Kisekae Hanafuda', + 'I''Max', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["kisekaeh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/macs.cpp"]}'::jsonb + ), + ( + 'kiss-site', + 'Kiss-Site', + 'Tomy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["kisssite"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tomy/kisssite.cpp"]}'::jsonb + ), + ( + 'kitten-kaboodle', + 'Kitten Kaboodle', + 'Konami', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["kittenk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'kizuna-encounter-super-tag-battle-fu-un-super-tag-battle', + 'Kizuna Encounter - Super Tag Battle / Fu''un Super Tag Battle', + 'SNK', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["kizuna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'kkot-no-li-kill-the-bees', + 'Kkot No Li (Kill the Bees)', + 'hack', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["kkotnoli"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'kkotbinyeo-special', + 'Kkotbinyeo Special', + 'Dynax / Shinwhajin', + 1997, + array['Kkotbinyeo Special (Korea)'], + array['Arcade'], + '{"mame":["kotbinsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'klad-labyrinth-photon-system', + 'Klad / Labyrinth (Photon System)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["phklad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/photon.cpp"]}'::jsonb + ), + ( + 'klax', + 'Klax', + 'Atari Games', + 1990, + array['Klax (version 6)'], + array['Arcade'], + '{"mame":["klax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/klax.cpp"]}'::jsonb + ), + ( + 'klondike', + 'KlonDike+', + 'Eolith', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["klondkp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith16.cpp"]}'::jsonb + ), + ( + 'knightmare', + 'Knightmare', + 'Gottlieb', + 1983, + array['Knightmare (prototype)'], + array['Arcade'], + '{"mame":["kngtmare"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'knights-in-armor', + 'Knights in Armor', + 'Project Support Engineering', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["knightar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pse.cpp"]}'::jsonb + ), + ( + 'knights-of-the-round', + 'Knights of the Round', + 'Capcom', + 1991, + array['Knights of the Round (World 911127)'], + array['Arcade'], + '{"mame":["knights"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-the-seven-spirits', + 'Knights of Valour - The Seven Spirits', + 'IGS / Sammy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["kov7sprt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-sanguo-zhan-ji-sangoku-senki', + 'Knights of Valour / Sanguo Zhan Ji / Sangoku Senki', + 'IGS', + 1999, + array['Knights of Valour / Sanguo Zhan Ji / Sangoku Senki (ver. 117, Hong Kong)'], + array['Arcade'], + '{"mame":["kov"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-2-sanguo-zhan-ji-2-sangoku-senki-2', + 'Knights of Valour 2 / Sanguo Zhan Ji 2 / Sangoku Senki 2', + 'IGS', + 2000, + array['Knights of Valour 2 / Sanguo Zhan Ji 2 / Sangoku Senki 2 (ver. 107, 102, 100HK)'], + array['Arcade'], + '{"mame":["kov2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-2-new-legend-sanguo-zhan-ji-2-guang-sao-yu-jun', + 'Knights of Valour 2 New Legend / Sanguo Zhan Ji 2 Guang Sao Yu Jun', + 'IGS', + 2008, + array['Knights of Valour 2 New Legend / Sanguo Zhan Ji 2 Guang Sao Yu Jun (V302, Oversea)'], + array['Arcade'], + '{"mame":["kov2nl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm2.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-2-plus-nine-dragons-sanguo-zhan-ji-2-qunxiong-zhengba-sanguo-zhan-ji-2-f', + 'Knights of Valour 2 Plus - Nine Dragons / Sanguo Zhan Ji 2 Qunxiong Zhengba / Sanguo Zhan Ji 2 Feilong Zai Tian / Sangoku Senki Busyou Souha', + 'IGS', + 2001, + array['Knights of Valour 2 Plus - Nine Dragons / Sanguo Zhan Ji 2 Qunxiong Zhengba / Sanguo Zhan Ji 2 Feilong Zai Tian / Sangoku Senki Busyou Souha (ver. M205XX, 200, 100CN)'], + array['Arcade'], + '{"mame":["kov2p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-3-sanguo-zhan-ji-3', + 'Knights of Valour 3 / Sanguo Zhan Ji 3', + 'IGS (Huatong license)', + 2011, + array['Knights of Valour 3 / Sanguo Zhan Ji 3 (V104, China, Hong Kong, Taiwan)'], + array['Arcade'], + '{"mame":["kov3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm2.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-3-hd-m-105cn-13-07-04-18-54-01', + 'Knights of Valour 3 HD (M-105CN 13-07-04 18:54:01)', + 'IGS', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["kov3hd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm3.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-plus-sanguo-zhan-ji-zhengzong-plus-sangoku-senki-masamune-plus', + 'Knights of Valour Plus / Sanguo Zhan Ji Zhengzong Plus / Sangoku Senki Masamune Plus', + 'IGS', + 1999, + array['Knights of Valour Plus / Sanguo Zhan Ji Zhengzong Plus / Sangoku Senki Masamune Plus (ver. 119, set 1)'], + array['Arcade'], + '{"mame":["kovplus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-super-heroes-sanguo-zhan-ji-fengyun-zaiqi-sangoku-senki-super-heroes', + 'Knights of Valour Super Heroes / Sanguo Zhan Ji Fengyun Zaiqi / Sangoku Senki Super Heroes', + 'IGS', + 1999, + array['Knights of Valour Super Heroes / Sanguo Zhan Ji Fengyun Zaiqi / Sangoku Senki Super Heroes (ver. 104, CN)'], + array['Arcade'], + '{"mame":["kovsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-super-heroes-sanguo-zhan-ji-fengyun-zaiqi-sangoku-senki-super-heroes-san', + 'Knights of Valour Super Heroes / Sanguo Zhan Ji Fengyun Zaiqi / Sangoku Senki Super Heroes (SANGO EX+)', + 'IGS', + 1999, + array['Knights of Valour Super Heroes / Sanguo Zhan Ji Fengyun Zaiqi / Sangoku Senki Super Heroes (SANGO EX+) (ver. 201 ''Yitong Zhongyuan'', China)'], + array['Arcade'], + '{"mame":["kovytzy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knights-of-valour-super-heroes-plus-sanguo-zhan-ji-luanshi-xiaoxiong', + 'Knights of Valour Super Heroes Plus / Sanguo Zhan Ji Luanshi Xiaoxiong', + 'IGS', + 2004, + array['Knights of Valour Super Heroes Plus / Sanguo Zhan Ji Luanshi Xiaoxiong (ver. 101)'], + array['Arcade'], + '{"mame":["kovshp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'knock-down-2001', + 'Knock Down 2001', + 'Namco', + 2001, + array['Knock Down 2001 (Japan, KD11 Ver. B)'], + array['Arcade'], + '{"mame":["kd2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'knuckle-bash', + 'Knuckle Bash', + 'Toaplan / Atari', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["kbash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/kbash.cpp"]}'::jsonb + ), + ( + 'knuckle-bash-2', + 'Knuckle Bash 2', + 'bootleg', + 1999, + array['Knuckle Bash 2 (bootleg of Knuckle Bash)'], + array['Arcade'], + '{"mame":["kbash2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/kbash.cpp"]}'::jsonb + ), + ( + 'knuckle-heads', + 'Knuckle Heads', + 'Namco', + 1992, + array['Knuckle Heads (World)'], + array['Arcade'], + '{"mame":["knckhead"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'knuckle-joe', + 'Knuckle Joe', + 'Seibu Kaihatsu (Taito license)', + 1985, + array['Knuckle Joe (set 1)'], + array['Arcade'], + '{"mame":["kncljoe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/kncljoe.cpp"]}'::jsonb + ), + ( + 'kodai-ouja-kyouryuu-king-mezame-yo-arata-naru-chikara-mda-c0061', + 'Kodai Ouja Kyouryuu King - Mezame yo! Arata-naru Chikara!! (MDA-C0061)', + 'Sega', + 2008, + array['Kodai Ouja Kyouryuu King - Mezame yo! Arata-naru Chikara!! (Japan, Ver 4.000) (MDA-C0061)'], + array['Arcade'], + '{"mame":["dinoki4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'kof-sky-stage-v1-00j', + 'KOF Sky Stage (v1.00J)', + 'Moss / SNK Playmore', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["kofskyst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'koi-koi', + 'Koi Koi', + 'Chubukiko / Best Data System', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["koikoi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/koikoi.cpp"]}'::jsonb + ), + ( + 'koi-koi-part-2', + 'Koi Koi Part 2', + 'Sanritsu / Kiwako', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["koikoip2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/koikoi.cpp"]}'::jsonb + ), + ( + 'koi-koi-shimasho-super-real-hanafuda', + 'Koi Koi Shimasho - Super Real Hanafuda', + 'Visco', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["koikois"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'koi-koi-shimasho-2-super-real-hanafuda', + 'Koi Koi Shimasho 2 - Super Real Hanafuda', + 'Visco', + 1997, + array['Koi Koi Shimasho 2 - Super Real Hanafuda (Japan)'], + array['Arcade'], + '{"mame":["koikois2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'kokontouzai-eto-monogatari', + 'Kokontouzai Eto Monogatari', + 'Visco', + 1994, + array['Kokontouzai Eto Monogatari (Japan)'], + array['Arcade'], + '{"mame":["eto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'konami-80-s-ac-special', + 'Konami 80''s AC Special', + 'Konami', + 1998, + array['Konami 80''s AC Special (GC826 VER. EAA)'], + array['Arcade'], + '{"mame":["konam80s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'konami-collector-s-series-arcade-advanced', + 'Konami Collector''s Series Arcade Advanced', + 'Majesco (licensed from Konami) / JungleTac', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["majkon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'konami-gt', + 'Konami GT', + 'Konami', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["konamigt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'konami-test-board', + 'Konami Test Board', + 'Konami', + null, + array['Konami Test Board (GX800, Japan)'], + array['Arcade'], + '{"mame":["kontest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kontest.cpp"]}'::jsonb + ), + ( + 'konami-s-open-golf-championship', + 'Konami''s Open Golf Championship', + 'Konami', + 1994, + array['Konami''s Open Golf Championship (ver EAE)'], + array['Sports'], + '{"mame":["opengolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'konami-s-ping-pong', + 'Konami''s Ping-Pong', + 'Konami', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pingpong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/pingpong.cpp"]}'::jsonb + ), + ( + 'kong', + 'Kong', + 'Taito do Brasil', + null, + array['Kong (Donkey Kong conversion on Galaxian hardware)'], + array['Arcade'], + '{"mame":["kong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'kong-ball', + 'Kong Ball', + 'TCH / Digital Dreams Multimedia', + 1997, + array['Kong Ball (prototype)'], + array['Arcade'], + '{"mame":["kongball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/wheelfir.cpp"]}'::jsonb + ), + ( + 'konin', + 'Konin', + 'Mera-Elzab', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["konin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mera/konin.cpp"]}'::jsonb + ), + ( + 'konkyuu-no-hoshi', + 'Konkyuu no Hoshi', + 'BMC', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["bmcbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/bmcbowl.cpp"]}'::jsonb + ), + ( + 'konnano-hajimete', + 'Konnano Hajimete!', + 'Nichibutsu/Love Factory', + 2001, + array['Konnano Hajimete! (Japan)'], + array['Arcade'], + '{"mame":["konhaji"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'kono-e-tako', + 'Kono e Tako', + 'Mitchell', + 2003, + array['Kono e Tako (10021 Ver.A)'], + array['Arcade'], + '{"mame":["konotako"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'kontiki-100', + 'KONTIKI 100', + 'Kontiki Data A/S', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["kontiki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tiki/tiki100.cpp"]}'::jsonb + ), + ( + 'koro-koro-quest', + 'Koro Koro Quest', + 'Takumi', + 1999, + array['Koro Koro Quest (Japan)'], + array['Arcade'], + '{"mame":["korokoro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'korokoro-pensuke', + 'Korokoro Pensuke', + 'Konami', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["koropens"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'kotoba-no-puzzle-mojipittan', + 'Kotoba no Puzzle Mojipittan', + 'Namco', + 2001, + array['Kotoba no Puzzle Mojipittan (Japan, KPM1 Ver.A)'], + array['Puzzle'], + '{"mame":["knpuzzle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'koutetsu-yousai-strahl', + 'Koutetsu Yousai Strahl', + 'UPL', + 1992, + array['Koutetsu Yousai Strahl (World)'], + array['Arcade'], + '{"mame":["strahl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'kozmik-kroozr', + 'Kozmik Kroozr', + 'Bally Midway', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["kroozr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'kozure-ookami', + 'Kozure Ookami', + 'Nichibutsu', + 1987, + array['Kozure Ookami (Japan)'], + array['Arcade'], + '{"mame":["kozure"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/armedf.cpp"]}'::jsonb + ), + ( + 'kram', + 'Kram', + 'Taito America Corporation', + 1982, + array['Kram (rev 1)'], + array['Arcade'], + '{"mame":["kram"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'kramer-mc', + 'Kramer MC', + 'Manfred Kramer', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["kramermc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/kramermc.cpp"]}'::jsonb + ), + ( + 'krazy-bowl', + 'Krazy Bowl', + 'American Sammy', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["krzybowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'krazy-keno', + 'Krazy Keno', + 'IGS', + 2006, + array['Krazy Keno (V105US)'], + array['Arcade'], + '{"mame":["krzykeno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'krull', + 'Krull', + 'Gottlieb', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["krull"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'ksp10-digital-piano', + 'KSP10 Digital Piano', + 'Kawai Musical Instruments Manufacturing', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ksp10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/ksp10.cpp"]}'::jsonb + ), + ( + 'kt-76', + 'KT-76', + 'Ensoniq', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["kt76"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqkt.cpp"]}'::jsonb + ), + ( + 'ktm-3', + 'KTM-3', + 'Synertek Systems', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ktm3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["synertek/ktm3.cpp"]}'::jsonb + ), + ( + 'kung-fu-playchoice-10', + 'Kung Fu (PlayChoice-10)', + 'Irem (Nintendo license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_kngfu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'kung-fu-fighters-igs-v202n', + 'Kung Fu Fighters (IGS, v202N)', + 'IGS', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["kungfu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/jackie.cpp"]}'::jsonb + ), + ( + 'kung-fu-master', + 'Kung-Fu Master', + 'Irem', + 1984, + array['Kung-Fu Master (World)'], + array['Arcade'], + '{"mame":["kungfum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'kung-fu-roushi', + 'Kung-Fu Roushi', + 'Namco', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["kungfur"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/kungfur.cpp"]}'::jsonb + ), + ( + 'kung-fu-taikun', + 'Kung-Fu Taikun', + 'Seibu Kaihatsu', + 1984, + array['Kung-Fu Taikun (set 1)'], + array['Arcade'], + '{"mame":["kungfut"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/wiz.cpp"]}'::jsonb + ), + ( + 'kuri-kinton', + 'Kuri Kinton', + 'Taito Corporation Japan', + 1988, + array['Kuri Kinton (World)'], + array['Arcade'], + '{"mame":["kurikint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'kuru-kuru-pyon-pyon', + 'Kuru Kuru Pyon Pyon', + 'Success / Taiyo Jidoki', + 1990, + array['Kuru Kuru Pyon Pyon (Japan)'], + array['Arcade'], + '{"mame":["kurukuru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/kurukuru.cpp"]}'::jsonb + ), + ( + 'kurukuru-chameleon-gdl-0034', + 'Kurukuru Chameleon (GDL-0034)', + 'Able', + 2006, + array['Kurukuru Chameleon (Japan) (GDL-0034)'], + array['Arcade'], + '{"mame":["kurucham"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'kurukuru-fever', + 'Kurukuru Fever', + 'Aruze / Takumi', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["kurufev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'kusayakyuu', + 'Kusayakyuu', + 'Taito Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ksayakyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/ksayakyu.cpp"]}'::jsonb + ), + ( + 'kyber-minus', + 'Kyber Minus', + 'Kyber Calcolatori', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["kminus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kyber/kminus.cpp"]}'::jsonb + ), + ( + 'kyotronic-85', + 'Kyotronic 85', + 'Kyosei', + 1983, + array['Kyotronic 85 (Japan)'], + array['Arcade'], + '{"mame":["kc85"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kyocera/kyocera.cpp"]}'::jsonb + ), + ( + 'kyros', + 'Kyros', + 'Alpha Denshi Co. (World Games Inc. license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["kyros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k_n.cpp"]}'::jsonb + ), + ( + 'kyuukai-douchuuki', + 'Kyuukai Douchuuki )', + 'Namco', + 1990, + array['Kyuukai Douchuuki (Japan, new version (Rev B))'], + array['Arcade'], + '{"mame":["kyukaidk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'kyuukoukabakugekitai-dive-bomber-squad', + 'Kyuukoukabakugekitai - Dive Bomber Squad', + 'Konami', + 1989, + array['Kyuukoukabakugekitai - Dive Bomber Squad (Japan, prototype)'], + array['Arcade'], + '{"mame":["divebomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/divebomb.cpp"]}'::jsonb + ), + ( + 'kyuukyoku-no-othello', + 'Kyuukyoku no Othello', + 'Success', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["kothello"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shanghai.cpp"]}'::jsonb + ), + ( + 'l-a-machineguns', + 'L.A. Machineguns', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["lamachin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'la-m-quina-del-tiempo', + 'La Máquina del Tiempo', + 'Unidesa/Cirsa', + 2015, + '{}'::text[], + array['Arcade'], + '{"mame":["maquinati"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cirsa/cirsa2080606.cpp"]}'::jsonb + ), + ( + 'la-perla-del-caribe-v1-0-catalonia', + 'La Perla del Caribe (V1.0, Catalonia)', + 'Unidesa/Cirsa', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["perlacrb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cirsa/neptunp2.cpp"]}'::jsonb + ), + ( + 'la-perla-nera', + 'La Perla Nera', + 'Nazionale Elettronica', + 2002, + array['La Perla Nera (Ver 2.0)'], + array['Arcade'], + '{"mame":["laperla"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'la-perla-nera-gold', + 'La Perla Nera Gold', + 'Nazionale Elettronica', + 2001, + array['La Perla Nera Gold (Ver 2.0)'], + array['Arcade'], + '{"mame":["laperlag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'la-r-gence', + 'La Régence', + 'France Double R / Intelligent Software', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["regence"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chess/regence.cpp"]}'::jsonb + ), + ( + 'labyrinth', + 'Labyrinth', + 'Nazionale Elettronica', + 2001, + array['Labyrinth (Ver 1.5)'], + array['Arcade'], + '{"mame":["labrinth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'lady-bug', + 'Lady Bug', + 'Universal', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["ladybug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/ladybug.cpp"]}'::jsonb + ), + ( + 'lady-frog', + 'Lady Frog', + 'Mondial Games', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ladyfrog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ladyfrog.cpp"]}'::jsonb + ), + ( + 'lady-gum', + 'Lady Gum', + 'Videos A A', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ladygum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videosaa.cpp"]}'::jsonb + ), + ( + 'lady-killer', + 'Lady Killer', + 'Yanyaka (Mitchell license)', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ladykill"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'lady-liner', + 'Lady Liner', + 'TAB Austria', + null, + array['Lady Liner (set 1)'], + array['Arcade'], + '{"mame":["ladylinr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'lady-master-of-kung-fu', + 'Lady Master of Kung Fu', + 'Kaneko / Taito', + 1985, + array['Lady Master of Kung Fu (rev 1)'], + array['Arcade'], + '{"mame":["ladymstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tsamurai.cpp"]}'::jsonb + ), + ( + 'laguna-racer', + 'Laguna Racer', + 'Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["lagunar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'land-breaker-miss-tang-ja-ru-gi', + 'Land Breaker / Miss Tang Ja Ru Gi', + 'Eolith', + 1999, + array['Land Breaker (World) / Miss Tang Ja Ru Gi (Korea) (pcb ver 3.02)'], + array['Arcade'], + '{"mame":["landbrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'land-maker', + 'Land Maker', + 'Taito Corporation', + 1998, + array['Land Maker (Ver 2.02O 1998/06/02)'], + array['Arcade'], + '{"mame":["landmakr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'land-sea-air-squad-riku-kai-kuu-saizensen', + 'Land Sea Air Squad / Riku Kai Kuu Saizensen', + 'Taito', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["lsasquad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/lsasquad.cpp"]}'::jsonb + ), + ( + 'landing-gear', + 'Landing Gear', + 'Taito', + 1995, + array['Landing Gear (Ver 4.2 O)'], + array['Arcade'], + '{"mame":["landgear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitojc.cpp"]}'::jsonb + ), + ( + 'landing-high-japan', + 'Landing High Japan', + 'Taito', + 1999, + array['Landing High Japan (VER.2.01OK, single monitor)'], + array['Arcade'], + '{"mame":["landhigh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'las-vegas', + 'Las Vegas', + 'Jeutel', + null, + array['Las Vegas (Jeutel, set 1)'], + array['Arcade'], + '{"mame":["jlasvegas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tmspoker.cpp"]}'::jsonb + ), + ( + 'las-vegas-girl-girl-94', + 'Las Vegas Girl (Girl ''94)', + 'Comad', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["lvgirl94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["comad/zerozone.cpp"]}'::jsonb + ), + ( + 'laser-2001', + 'Laser 2001', + '', + 2001, + array['Laser 2001 (Ver 1.2)'], + array['Arcade'], + '{"mame":["laser2k1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'laser-battle', + 'Laser Battle', + 'Zaccaria', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["laserbat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/laserbat.cpp"]}'::jsonb + ), + ( + 'laser-ghost-fd1094-317-0166', + 'Laser Ghost (FD1094 317-0166)', + 'Sega', + 1990, + array['Laser Ghost (World) (FD1094 317-0166)'], + array['Arcade'], + '{"mame":["lghost"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'laser-grand-prix', + 'Laser Grand Prix', + 'Taito', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["lgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/lgp.cpp"]}'::jsonb + ), + ( + 'laser-strixx-2', + 'Laser Strixx 2', + 'CD Express', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["lasstixx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'laseractive-with-genesis-pack-pac-s10', + 'LaserActive with Genesis Pack PAC-S10', + 'Pioneer / Sega', + 1993, + array['LaserActive with Genesis Pack PAC-S10 (USA, NTSC)'], + array['Arcade'], + '{"mame":["laseract"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'lasso', + 'Lasso', + 'SNK', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["lasso"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/lasso.cpp"]}'::jsonb + ), + ( + 'last-bank-v1-16', + 'Last Bank (v1.16)', + 'Excellent System', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["lastbank"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'last-battle-mega-tech', + 'Last Battle (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_lastb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'last-bronx', + 'Last Bronx', + 'Sega', + 1996, + array['Last Bronx (Export, Revision A)'], + array['Arcade'], + '{"mame":["lastbrnx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'last-duel', + 'Last Duel', + 'Capcom', + 1988, + array['Last Duel (US New Ver.)'], + array['Arcade'], + '{"mame":["lastduel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lastduel.cpp"]}'::jsonb + ), + ( + 'last-fighting', + 'Last Fighting', + 'Subsino', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["lastfght"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/lastfght.cpp"]}'::jsonb + ), + ( + 'last-fortress-toride', + 'Last Fortress - Toride', + 'Metro', + 1994, + array['Last Fortress - Toride (Japan, VG420 PCB)'], + array['Arcade'], + '{"mame":["lastfort"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'last-four-09-12-16-01-2001', + 'Last Four (09:12 16/01/2001)', + 'B.R.L.', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["lastfour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/galaxi.cpp"]}'::jsonb + ), + ( + 'last-hope', + 'Last Hope', + 'NG:DEV.TEAM', + 2005, + array['Last Hope (bootleg AES to MVS conversion, no coin support)'], + array['Arcade'], + '{"mame":["lasthope"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'last-km', + 'Last KM', + 'Gaelco / Zeus', + 1995, + array['Last KM (ver 1.0.0275, checksum 13bff751, prototype)'], + array['Arcade'], + '{"mame":["lastkm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp"]}'::jsonb + ), + ( + 'last-mission', + 'Last Mission', + 'Data East Corporation', + 1986, + array['Last Mission (World revision 8)'], + array['Arcade'], + '{"mame":["lastmisn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'last-resort', + 'Last Resort', + 'SNK', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["lresort"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'last-striker-kyuukyoku-no-striker', + 'Last Striker / Kyuukyoku no Striker', + 'East Technology', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["kyustrkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_x.cpp"]}'::jsonb + ), + ( + 'last-survivor-fd1094-317-0083', + 'Last Survivor (FD1094 317-0083)', + 'Sega', + 1989, + array['Last Survivor (Japan) (FD1094 317-0083)'], + array['Arcade'], + '{"mame":["lastsurv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'lazer-command', + 'Lazer Command', + 'Meadows Games, Inc.', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["lazercmd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/lazercmd.cpp"]}'::jsonb + ), + ( + 'ld-50', + 'LD-50', + 'Casio', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["ld50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/ld50.cpp"]}'::jsonb + ), + ( + 'le-grandchamps', + 'Le Grandchamps', + 'Isermatic France S.A.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["legrandc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/corona.cpp"]}'::jsonb + ), + ( + 'le-mans', + 'Le Mans', + 'Atari', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["lemans"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'le-mans-24', + 'Le Mans 24', + 'Sega', + 1997, + array['Le Mans 24 (Revision B)'], + array['Arcade'], + '{"mame":["lemans24"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'le-pendu', + 'Le Pendu', + 'Avenir Amusement Inc.', + null, + array['Le Pendu (Bilingue, Version 04)'], + array['Arcade'], + '{"mame":["lependu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/lependu.cpp"]}'::jsonb + ), + ( + 'le-super-pendu', + 'Le Super Pendu', + 'Voyageur de L''Espace Inc.', + null, + array['Le Super Pendu (V1, words set #1)', 'Le Super Pendu (V1, words set #2)'], + array['Arcade'], + '{"mame":["lespendu","lespenduj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'leader', + 'Leader', + 'bootleg', + 1995, + array['Leader (version Z 2E, Greece)'], + array['Arcade'], + '{"mame":["leader"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'leader-board-golf', + 'Leader Board Golf', + 'Arcadia Systems', + 1988, + array['Leader Board Golf (Arcadia, set 1, V 2.5)'], + array['Sports'], + '{"mame":["ar_ldrb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'league-bowling-ngm-019-ngh-019', + 'League Bowling (NGM-019 ~ NGH-019)', + 'SNK', + 1990, + '{}'::text[], + array['Sports'], + '{"mame":["lbowling"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'leappad', + 'LeapPad', + 'LeapFrog', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["leappad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/leappad.cpp"]}'::jsonb + ), + ( + 'leappad-plus-microphone', + 'LeapPad Plus Microphone', + 'LeapFrog', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["leappadmic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/leappad.cpp"]}'::jsonb + ), + ( + 'leapster', + 'Leapster', + 'LeapFrog', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["leapster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/leapster.cpp"]}'::jsonb + ), + ( + 'leapster-explorer', + 'Leapster Explorer', + 'LeapFrog', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["leapexpr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/leapster_explorer.cpp"]}'::jsonb + ), + ( + 'led-storm-rally-2011', + 'Led Storm Rally 2011', + 'Capcom', + 1988, + array['Led Storm Rally 2011 (World)'], + array['Arcade'], + '{"mame":["leds2011"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lastduel.cpp"]}'::jsonb + ), + ( + 'lee-trevino-s-fighting-golf', + 'Lee Trevino''s Fighting Golf', + 'SNK', + 1988, + array['Lee Trevino''s Fighting Golf (World?)'], + array['Sports'], + '{"mame":["fitegolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'legend', + 'Legend', + 'Kyugo / Sega', + 1986, + array['Legend (SNES bootleg)'], + array['Arcade'], + '{"mame":["legend","legendsb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/kyugo.cpp","nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'legend-of-hero-tonma', + 'Legend of Hero Tonma', + 'Irem', + 1989, + array['Legend of Hero Tonma (World)'], + array['Arcade'], + '{"mame":["loht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'legend-of-heroes', + 'Legend of Heroes', + 'Limenko', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["legendoh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/limenko.cpp"]}'::jsonb + ), + ( + 'legend-of-makai', + 'Legend of Makai', + 'Jaleco', + 1988, + array['Legend of Makai (World)'], + array['Arcade'], + '{"mame":["lomakai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'legend-of-success-joe-ashita-no-joe-densetsu', + 'Legend of Success Joe / Ashita no Joe Densetsu', + 'SNK / Wave', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["legendos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'legendary-wings', + 'Legendary Wings', + 'Capcom', + 1986, + array['Legendary Wings (US, rev. C)'], + array['Arcade'], + '{"mame":["lwings"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lwings.cpp"]}'::jsonb + ), + ( + 'legion-spinner-87', + 'Legion - Spinner-87', + 'Nichibutsu', + 1987, + array['Legion - Spinner-87 (World ver 2.03)'], + array['Arcade'], + '{"mame":["legion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/armedf.cpp"]}'::jsonb + ), + ( + 'legionnaire', + 'Legionnaire', + 'TAD Corporation', + 1992, + array['Legionnaire (World)'], + array['Arcade'], + '{"mame":["legionna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/legionna.cpp"]}'::jsonb + ), + ( + 'lemmings', + 'Lemmings', + 'Data East USA', + 1991, + array['Lemmings (US prototype)'], + array['Arcade'], + '{"mame":["lemmings"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/lemmings.cpp"]}'::jsonb + ), + ( + 'leprechaun', + 'Leprechaun', + 'Pacific Polytechnical Corp.', + 1982, + array['Leprechaun (set 1)'], + array['Arcade'], + '{"mame":["leprechn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/killcom.cpp"]}'::jsonb + ), + ( + 'leprechaun-s-gold', + 'Leprechaun''s Gold', + 'WMS', + 2001, + array['Leprechaun''s Gold (Russian)'], + array['Arcade'], + '{"mame":["leprgld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'lerncomputer-lc-80', + 'Lerncomputer LC 80', + 'VEB Mikroelektronik "Karl Marx" Erfurt', + 1984, + array['Lerncomputer LC 80 (set 1)'], + array['Arcade'], + '{"mame":["lc80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/lc80.cpp"]}'::jsonb + ), + ( + 'les-fiches', + 'Les Fiches', + 'Minivideo', + null, + array['Les Fiches (ver 1.3)'], + array['Arcade'], + '{"mame":["fiches"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/minivideo.cpp"]}'::jsonb + ), + ( + 'let-s-attack-crazy-cross', + 'Let''s Attack Crazy Cross', + 'Konami', + 1996, + array['Let''s Attack Crazy Cross (GV027 Asia 1.10)'], + array['Arcade'], + '{"mame":["lacrazyc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'let-s-dance', + 'Let''s Dance', + 'dgPIX Entertainment Inc.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["letsdnce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'let-s-go-jungle-export', + 'Let''s Go Jungle (Export)', + 'Sega', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["letsgoju"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'let-s-play-game-machine-240-in-1', + 'Let''s Play! Game Machine 240 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lpgm240"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'lethal-crash-race-bakuretsu-crash-race', + 'Lethal Crash Race / Bakuretsu Crash Race', + 'Video System Co.', + 1993, + array['Lethal Crash Race / Bakuretsu Crash Race (set 1)'], + array['Arcade'], + '{"mame":["crshrace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/crshrace.cpp"]}'::jsonb + ), + ( + 'lethal-enforcers', + 'Lethal Enforcers', + 'Konami', + 1992, + array['Lethal Enforcers (ver UAE, 11/19/92 15:04)'], + array['Light gun'], + '{"mame":["lethalen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/lethal.cpp"]}'::jsonb + ), + ( + 'lethal-enforcers-ii-gun-fighters', + 'Lethal Enforcers II: Gun Fighters', + 'Konami', + 1994, + array['Lethal Enforcers II: Gun Fighters (ver EAA)'], + array['Light gun'], + '{"mame":["le2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'lethal-justice', + 'Lethal Justice', + 'The Game Room', + 1996, + array['Lethal Justice (Version 2.3)'], + array['Arcade'], + '{"mame":["lethalj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/lethalj.cpp"]}'::jsonb + ), + ( + 'lethal-thunder', + 'Lethal Thunder', + 'Irem', + 1991, + array['Lethal Thunder (World)'], + array['Arcade'], + '{"mame":["lethalth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'lethal-weapon-nintendo-super-system', + 'Lethal Weapon (Nintendo Super System)', + 'Ocean', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_lwep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'levers', + 'Levers', + 'Rock-Ola', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["levers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'libble-rabble', + 'Libble Rabble', + 'Namco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["liblrabl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/toypop.cpp"]}'::jsonb + ), + ( + 'liberation', + 'Liberation', + 'Data East Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["liberate"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/liberate.cpp"]}'::jsonb + ), + ( + 'liberator', + 'Liberator', + 'Atari', + 1982, + array['Liberator (version 2)'], + array['Arcade'], + '{"mame":["liberatr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/liberatr.cpp"]}'::jsonb + ), + ( + 'libero-grande', + 'Libero Grande', + 'Namco', + 1997, + array['Libero Grande (World, LG2/VER.A)'], + array['Arcade'], + '{"mame":["lbgrande"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'life-of-luxury', + 'Life of Luxury', + 'WMS', + 2000, + array['Life of Luxury (Russian)'], + array['Arcade'], + '{"mame":["lol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'light-bringer', + 'Light Bringer', + 'Taito Corporation Japan', + 1993, + array['Light Bringer (Ver 2.2O 1994/04/08)'], + array['Arcade'], + '{"mame":["lightbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'lightning-fighters', + 'Lightning Fighters', + 'Konami', + 1990, + array['Lightning Fighters (World)'], + array['Arcade'], + '{"mame":["lgtnfght"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'lightning-swords', + 'Lightning Swords', + 'Irem', + 1991, + array['Lightning Swords (World)'], + array['Arcade'], + '{"mame":["ltswords"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'line-of-fire-bakudan-yarou-fd1094-317-0136', + 'Line of Fire / Bakudan Yarou (FD1094 317-0136)', + 'Sega', + 1989, + array['Line of Fire / Bakudan Yarou (World) (FD1094 317-0136)'], + array['Arcade'], + '{"mame":["loffire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'link-480z', + 'LINK 480Z', + 'Research Machines', + 1981, + array['LINK 480Z (set 1)'], + array['Arcade'], + '{"mame":["rm480z"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rm/rm480z.cpp"]}'::jsonb + ), + ( + 'linky-pipe', + 'Linky Pipe', + 'Eolith', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["linkypip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'linndrum', + 'LinnDrum', + 'Linn Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["linndrum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["linn/linndrum.cpp"]}'::jsonb + ), + ( + 'linux-4004', + 'Linux/4004', + 'Dmitry Grinberg', + 2024, + '{}'::text[], + array['Arcade'], + '{"mame":["lnux4004"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/linux4004.cpp"]}'::jsonb + ), + ( + 'liquid-kids', + 'Liquid Kids', + 'Taito Corporation Japan', + 1990, + array['Liquid Kids (World)'], + array['Arcade'], + '{"mame":["liquidk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'little-big-board-6000-series', + 'Little Big Board (6000 series)', + 'Pulsar', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["pulsarlb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/pulsar.cpp"]}'::jsonb + ), + ( + 'little-board-186', + 'Little Board/186', + 'Ampro Computers', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["lb186"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ampro/lb186.cpp"]}'::jsonb + ), + ( + 'little-board-pc', + 'Little Board/PC', + 'Ampro Computers', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["lbpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ampro/lbpc.cpp"]}'::jsonb + ), + ( + 'little-robin', + 'Little Robin', + 'TCH', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["littlerb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/littlerb.cpp"]}'::jsonb + ), + ( + 'little-touch-leappad', + 'Little Touch LeapPad', + 'LeapFrog', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["ltleappad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/leappad.cpp"]}'::jsonb + ), + ( + 'little-z80-board', + 'Little Z80 Board', + 'Ampro', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ampro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ampro/ampro.cpp"]}'::jsonb + ), + ( + 'live-gal', + 'Live Gal', + 'Central Denshi', + 1987, + array['Live Gal (Japan 870530)'], + array['Arcade'], + '{"mame":["livegal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'lizard-wizard', + 'Lizard Wizard', + 'Techstar (Sunn license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["lizwiz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'llc-1', + 'LLC-1', + 'SCCH', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["llc1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/llc1.cpp"]}'::jsonb + ), + ( + 'lock-on-philko', + 'Lock On (Philko)', + 'Philko', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["lockonph"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'lock-on', + 'Lock-On', + 'Tatsumi', + 1986, + array['Lock-On (rev. E)'], + array['Arcade'], + '{"mame":["lockon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/lockon.cpp"]}'::jsonb + ), + ( + 'lock-n-chase', + 'Lock''n''Chase', + 'Data East Corporation', + 1981, + array['Lock''n''Chase (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["clocknch","lnc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp","dataeast/btime.cpp"]}'::jsonb + ), + ( + 'locked-n-loaded', + 'Locked ''n Loaded', + 'Data East Corporation', + 1994, + array['Locked ''n Loaded (World)'], + array['Arcade'], + '{"mame":["lockload"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco32.cpp"]}'::jsonb + ), + ( + 'loco-motion', + 'Loco-Motion', + 'Konami (Centuri license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["locomotn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rallyx.cpp"]}'::jsonb + ), + ( + 'lode-runner', + 'Lode Runner', + 'Irem (licensed from Broderbund)', + 1984, + array['Lode Runner (set 1)'], + array['Arcade'], + '{"mame":["ldrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'lode-runner-the-dig-fight', + 'Lode Runner - The Dig Fight', + 'Psikyo', + 2000, + array['Lode Runner - The Dig Fight (ver. B)'], + array['Arcade'], + '{"mame":["loderndf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo4.cpp"]}'::jsonb + ), + ( + 'lode-runner-ii-the-bungeling-strikes-back', + 'Lode Runner II - The Bungeling Strikes Back', + 'Irem (licensed from Broderbund)', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["ldrun2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'lode-runner-iii-the-golden-labyrinth', + 'Lode Runner III - The Golden Labyrinth', + 'Irem (licensed from Broderbund)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ldrun3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'lode-runner-iv-teikoku-karano-dasshutsu', + 'Lode Runner IV - Teikoku Karano Dasshutsu', + 'Irem (licensed from Broderbund)', + 1986, + array['Lode Runner IV - Teikoku Karano Dasshutsu (Japan)'], + array['Arcade'], + '{"mame":["ldrun4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'logger', + 'Logger', + 'Century Electronics', + 1982, + array['Logger (Rev.3)'], + array['Arcade'], + '{"mame":["logger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'logic-pro-2', + 'Logic Pro 2', + 'Deniam', + 1997, + array['Logic Pro 2 (Japan)'], + array['Arcade'], + '{"mame":["logicpr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/deniam.cpp"]}'::jsonb + ), + ( + 'lola-8', + 'Lola 8', + 'Institut Ivo Lola Ribar', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["lola8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/lola8a.cpp"]}'::jsonb + ), + ( + 'long-beach', + 'Long Beach', + 'Seletron / Olympia', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["lbeach"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympia/lbeach.cpp"]}'::jsonb + ), + ( + 'long-hu-bang', + 'Long Hu Bang', + 'IGS', + 1995, + array['Long Hu Bang (China, V035C)'], + array['Arcade'], + '{"mame":["lhb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs011.cpp"]}'::jsonb + ), + ( + 'long-hu-da-manguan-v102c3m', + 'Long Hu Da Manguan (V102C3M)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["lhdmg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'long-hu-da-manguan-duizhan-jiaqiang-ban-v400c3m', + 'Long Hu Da Manguan Duizhan Jiaqiang Ban (V400C3M)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["lhdmgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'long-hu-feng-yun-gao-qing-ban-v206cn', + 'Long Hu Feng Yun Gao Qing Ban (V206CN)', + 'IGS', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["lhfy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'long-hu-tebie-ban-s101cn', + 'Long Hu Tebie Ban (S101CN)', + 'IGS', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["lhtb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba', + 'Long Hu Zhengba', + 'IGS', + 1998, + array['Long Hu Zhengba (China, VS105M, set 1)'], + array['Arcade'], + '{"mame":["lhzb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-2', + 'Long Hu Zhengba 2', + 'IGS', + 1998, + array['Long Hu Zhengba 2 (China, set 1)'], + array['Arcade'], + '{"mame":["lhzb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-4-v104cn', + 'Long Hu Zhengba 4 (V104CN)', + 'IGS', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["lhzb4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-4-dui-hua-ban-v203cn', + 'Long Hu Zhengba 4 Dui Hua Ban (V203CN)', + 'IGS', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["lhzb4dhb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-gao-qing-ban-v105cn', + 'Long Hu Zhengba Gao Qing Ban (V105CN)', + 'IGS', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["lhzbgqb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-iii-v400cn', + 'Long Hu Zhengba III (V400CN)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["lhzb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-iii-shengji-ban-v300c5', + 'Long Hu Zhengba III Shengji Ban (V300C5)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["lhzb3sjb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'long-hu-zhengba-san-he-yi-v100cn', + 'Long Hu Zhengba San He Yi (V100CN)', + 'IGS', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["lhzb3in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'long-teng-hu-yao-duizhan-jiaqiang-ban-s104cn', + 'Long Teng Hu Yao Duizhan Jiaqiang Ban (S104CN)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["lthyp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'looping', + 'Looping', + 'Video Games GmbH', + 1982, + array['Looping (Europe)'], + array['Arcade'], + '{"mame":["looping"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["videogames/looping.cpp"]}'::jsonb + ), + ( + 'loopy', + 'Loopy', + 'Casio', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["casloopy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/casloopy.cpp"]}'::jsonb + ), + ( + 'lord-of-gun', + 'Lord of Gun', + 'IGS', + 1994, + array['Lord of Gun (World)'], + array['Arcade'], + '{"mame":["lordgun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/lordgun.cpp"]}'::jsonb + ), + ( + 'lost-tomb-easy', + 'Lost Tomb (easy)', + 'Stern Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["losttomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'lost-treasure-v1-03', + 'Lost Treasure (V1.03)', + '', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["losttrea"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/chsuper.cpp"]}'::jsonb + ), + ( + 'lot-lot', + 'Lot Lot', + 'Irem (licensed from Tokuma Shoten)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["lotlot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'loto-play', + 'Loto-Play', + 'Gaelco / Covielsa', + null, + array['Loto-Play (MC68705, set 1)'], + array['Arcade'], + '{"mame":["lotoplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/lotoplay.cpp"]}'::jsonb + ), + ( + 'lotto-fun', + 'Lotto Fun', + 'HAR Management', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["lottofun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'lotto-fun-2', + 'Lotto Fun 2', + 'HAR Management', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["lottof2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dcheese.cpp"]}'::jsonb + ), + ( + 'love-and-berry-1st-2nd-collection', + 'Love And Berry - 1st-2nd Collection', + 'Sega', + 2006, + array['Love And Berry - 1st-2nd Collection (Export, Ver 2.000)'], + array['Arcade'], + '{"mame":["lovebery"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'love-and-berry-3rd-5th-collection-mda-c0042', + 'Love And Berry - 3rd-5th Collection (MDA-C0042)', + 'Sega', + 2007, + array['Love And Berry - 3rd-5th Collection (USA, Export, Ver 1.002) (MDA-C0042)'], + array['Arcade'], + '{"mame":["loveber3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'love-to-win', + 'Love To Win', + 'WMS', + 2001, + array['Love To Win (Russian)'], + array['Arcade'], + '{"mame":["lovewin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'lovely-cards', + 'Lovely Cards', + 'Tehkan', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["lvcards"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/lvcards.cpp"]}'::jsonb + ), + ( + 'lover-boy', + 'Lover Boy', + 'G.T Enterprise Inc', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["loverboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ), + ( + 'lsi-octopus', + 'LSI Octopus', + 'Digital Microsystems', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["octopus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["lsi/octopus.cpp"]}'::jsonb + ), + ( + 'lucky-and-wild', + 'Lucky & Wild', + 'Namco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["luckywld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'lucky-21', + 'Lucky 21', + 'Wing Co., Ltd.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["lucky21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky37.cpp"]}'::jsonb + ), + ( + 'lucky-21-d', + 'Lucky 21-D', + 'Wing Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lucky21d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky37.cpp"]}'::jsonb + ), + ( + 'lucky-25', + 'Lucky 25', + 'Wing Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lucky25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky37.cpp"]}'::jsonb + ), + ( + 'lucky-37', + 'Lucky 37', + 'Wing Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["lucky37"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky37.cpp"]}'::jsonb + ), + ( + 'lucky-7', + 'Lucky 7', + 'Impera', + 1991, + array['Lucky 7 (Impera, V04/91a, set 1)'], + array['Arcade'], + '{"mame":["lucky7i"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'lucky-74', + 'Lucky 74', + 'Wing Co., Ltd.', + 1988, + array['Lucky 74 (bootleg, set 1)'], + array['Arcade'], + '{"mame":["lucky74"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky74.cpp"]}'::jsonb + ), + ( + 'lucky-75', + 'Lucky 75', + 'Wing Co., Ltd.', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["lucky75"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky37.cpp"]}'::jsonb + ), + ( + 'lucky-88-wing', + 'Lucky 88 (Wing)', + 'Wing Co., Ltd.', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["lucky88w"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/lucky74.cpp"]}'::jsonb + ), + ( + 'lucky-9', + 'Lucky 9', + 'Nibble', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["l9nibble"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/nibble.cpp"]}'::jsonb + ), + ( + 'lucky-ball-96', + 'Lucky Ball 96', + 'Sielcon Games', + 1999, + array['Lucky Ball 96 (Ver 4.01)'], + array['Arcade'], + '{"mame":["luckybal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/luckybal.cpp"]}'::jsonb + ), + ( + 'lucky-bar-w-4-with-mc68705-mcu', + 'Lucky Bar (W-4 with MC68705 MCU)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["luckybar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'lucky-boom', + 'Lucky Boom', + 'Playmark', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["luckboom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'lucky-cross-v106sa', + 'Lucky Cross (V106SA)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["luckycrs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'lucky-fountain', + 'Lucky Fountain', + 'Konami', + null, + array['Lucky Fountain (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["luckfoun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'lucky-full-house', + 'Lucky Full House', + '', + 1996, + array['Lucky Full House (ver 1.16, data ver 1.05)'], + array['Arcade'], + '{"mame":["lfhouse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'lucky-girl-newer-z180-based-hardware', + 'Lucky Girl (newer Z180-based hardware)', + 'Wing Co., Ltd.', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["luckgrln"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/luckgrln.cpp"]}'::jsonb + ), + ( + 'lucky-girl-wing', + 'Lucky Girl (Wing)', + 'Wing Co., Ltd.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["luckygrl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/jangou.cpp"]}'::jsonb + ), + ( + 'lucky-haunter', + 'Lucky Haunter', + 'Igrosoft', + 2003, + array['Lucky Haunter (040825 World)'], + array['Arcade'], + '{"mame":["lhaunt_6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'lucky-lady-wing-encrypted', + 'Lucky Lady (Wing, encrypted)', + 'Wing Co., Ltd.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["luckylad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'lucky-lady-s-charm', + 'Lucky Lady''s Charm', + 'Novotech', + null, + array['Lucky Lady''s Charm (set 1)'], + array['Arcade'], + '{"mame":["llcharm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'lucky-line-iii', + 'Lucky Line III', + 'bootleg', + 1993, + array['Lucky Line III (ver 2.00, Wang QL-1 v3.03, set 1)'], + array['Arcade'], + '{"mame":["ll3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'lucky-pierrot', + 'Lucky Pierrot', + 'Cobra', + null, + array['Lucky Pierrot (Japan, v1.1.0B)'], + array['Arcade'], + '{"mame":["lpierrot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'lucky-roulette-plus-6-players-spanish', + 'Lucky Roulette Plus (6-players, Spanish)', + '', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["luckyrlt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/corona.cpp"]}'::jsonb + ), + ( + 'lucky-shell-ukraine-v-42-25', + 'Lucky Shell (Ukraine, V. 42.25)', + 'Extrema', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["luckshel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'lucky-spin-1999', + 'Lucky Spin 1999', + 'Astro Corp.', + 1999, + array['Lucky Spin 1999 (Ver. A.1)'], + array['Arcade'], + '{"mame":["luckys99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'lucky-star', + 'Lucky Star', + 'Wing Co., Ltd.', + 1991, + array['Lucky Star (newer Z180-based hardware, set 1)'], + array['Arcade'], + '{"mame":["luckstrn","luckystr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/luckgrln.cpp","wing/lucky37.cpp"]}'::jsonb + ), + ( + 'lucky-today', + 'Lucky Today', + 'Sigma', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["luctoday"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'luna', + 'Luna', + 'Omron', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["luna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omron/luna_68k.cpp"]}'::jsonb + ), + ( + 'luna-88k', + 'Luna 88K', + 'Omron', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["luna88k","luna88k2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omron/luna_88k.cpp"]}'::jsonb + ), + ( + 'luna-park', + 'Luna Park', + '', + 1998, + array['Luna Park (set 1, dual program)', 'Luna Park (ver. 1.2)'], + array['Arcade'], + '{"mame":["lunapark","lunaprk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp","misc/magic10.cpp"]}'::jsonb + ), + ( + 'lunar-lander', + 'Lunar Lander', + 'Atari', + 1979, + array['Lunar Lander (rev 2)'], + array['Arcade'], + '{"mame":["llander"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/asteroid.cpp"]}'::jsonb + ), + ( + 'lunar-rescue', + 'Lunar Rescue', + 'Taito', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["lrescue"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'lung-fu-bong-ii-hong-kong-v185h', + 'Lung Fu Bong II (Hong Kong, V185H)', + 'IGS', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["lhb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs011.cpp"]}'::jsonb + ), + ( + 'lupin-iii', + 'Lupin III', + 'Taito', + 1980, + array['Lupin III (set 1)'], + array['Arcade'], + '{"mame":["lupin3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'lupin-the-third-the-shooting-gds-0018a', + 'Lupin The Third - The Shooting (GDS-0018A)', + 'Sega / Eighting', + 2001, + array['Lupin The Third - The Shooting (Rev A) (GDS-0018A)'], + array['Arcade'], + '{"mame":["lupinsho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'lupin-the-third-the-typing-gds-0021a', + 'Lupin The Third - The Typing (GDS-0021A)', + 'Sega', + 2002, + array['Lupin The Third - The Typing (Rev A) (GDS-0021A)'], + array['Arcade'], + '{"mame":["luptype"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'lw-30', + 'LW-30', + 'Brother', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["lw30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/lw30.cpp"]}'::jsonb + ), + ( + 'lw-350', + 'LW-350', + 'Brother', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["lw350"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/lw350.cpp"]}'::jsonb + ), + ( + 'lw-450', + 'LW-450', + 'Brother', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["lw450"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/lw350.cpp"]}'::jsonb + ), + ( + 'lw-700i', + 'LW-700i', + 'Brother', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["lw700i"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/lw700i.cpp"]}'::jsonb + ), + ( + 'lw-840ic', + 'LW-840ic', + 'Brother', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["lw840"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/lw840.cpp"]}'::jsonb + ), + ( + 'lynx', + 'Lynx', + 'Atari', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["lynx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/lynx.cpp"]}'::jsonb + ), + ( + 'lynx-48k', + 'Lynx 48k', + 'Camputers', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["lynx48k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["camputers/camplynx.cpp"]}'::jsonb + ), + ( + 'm-4', + 'M-4', + 'Midway', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["m4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'm-79-ambush', + 'M-79 Ambush', + 'Ramtek', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["m79amb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/m79amb.cpp"]}'::jsonb + ), + ( + 'm-disk-comp-a', + 'M-Disk Comp.-A', + 'mupid', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mdisk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mupid/mdisk.cpp"]}'::jsonb + ), + ( + 'm-three', + 'M-THREE', + 'LSI', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["m3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["lsi/m3.cpp"]}'::jsonb + ), + ( + 'm-5', + 'm.5', + 'Sord', + 1983, + array['m.5 (Japan)'], + array['Arcade'], + '{"mame":["m5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sord/m5.cpp"]}'::jsonb + ), + ( + 'm-a-c-h-3', + 'M.A.C.H. 3', + 'Mylstar', + 1983, + array['M.A.C.H. 3 (set 1)'], + array['Arcade'], + '{"mame":["mach3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'm-i-a-missing-in-action', + 'M.I.A. - Missing in Action', + 'Konami', + 1989, + array['M.I.A. - Missing in Action (version T)'], + array['Arcade'], + '{"mame":["mia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt.cpp"]}'::jsonb + ), + ( + 'm1-music-workstation', + 'M1 Music Workstation', + 'Korg', + 1988, + array['M1 Music Workstation (Rev 19)'], + array['Arcade'], + '{"mame":["korgm1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgm1.cpp"]}'::jsonb + ), + ( + 'm3001', + 'M3001', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["m3001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segafruit.cpp"]}'::jsonb + ), + ( + 'm3004', + 'M3004', + 'Sega', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["m3004"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segafruit.cpp"]}'::jsonb + ), + ( + 'm4001', + 'M4001', + 'Sega', + 1990, + array['M4001 (rev. A)'], + array['Arcade'], + '{"mame":["m4001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segafruit.cpp"]}'::jsonb + ), + ( + 'm4002', + 'M4002', + 'Sega', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["m4002"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segafruit.cpp"]}'::jsonb + ), + ( + 'm5001', + 'M5001', + 'Sega', + null, + array['M5001 (rev. A)'], + array['Arcade'], + '{"mame":["m5001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segafruit.cpp"]}'::jsonb + ), + ( + 'm6800-exorciser-m68sdt', + 'M6800 EXORciser (M68SDT)', + 'Motorola', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["exorciser"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/exorciser.cpp"]}'::jsonb + ), + ( + 'm68hc05evs', + 'M68HC05EVS', + 'Motorola', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["m6805evs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/m6805evs.cpp"]}'::jsonb + ), + ( + 'm8-game-selectable-working-product-display', + 'M8 Game Selectable Working Product Display', + 'Nintendo', + 1986, + array['M8 Game Selectable Working Product Display (US, set 1)'], + array['Arcade'], + '{"mame":["nesm8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_m8.cpp"]}'::jsonb + ), + ( + 'm8120', + 'M8120', + 'Motorola', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["m8120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/m8120.cpp"]}'::jsonb + ), + ( + 'm82-game-selectable-working-product-display', + 'M82 Game Selectable Working Product Display', + 'Nintendo', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["m82"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_m82.cpp"]}'::jsonb + ), + ( + 'm912', + 'M912', + 'PC-Chips', + 1994, + array['M912 (UMC UM8498F & UM8496 chipset)'], + array['Arcade'], + '{"mame":["pccm912"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["umc/pc486vl.cpp"]}'::jsonb + ), + ( + 'mace-the-dark-age-boot-rom-1-0ce-hdd-1-0b', + 'Mace: The Dark Age (boot ROM 1.0ce, HDD 1.0b)', + 'Atari Games', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'mach-breakers', + 'Mach Breakers', + 'Namco', + 1995, + array['Mach Breakers (World, MB2)'], + array['Arcade'], + '{"mame":["machbrkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'macheonlu', + 'Macheonlu', + 'SemiCom / AceVer', + 1999, + array['Macheonlu (Korea)'], + array['Arcade'], + '{"mame":["mcheonru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'machinedrum-sps-1-mk2', + 'Machinedrum SPS-1 MK2', + 'Elektron', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["machdrum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektron/elektronmono.cpp"]}'::jsonb + ), + ( + 'macho-mouse', + 'Macho Mouse', + 'Techstar', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["machomou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'macross-plus', + 'Macross Plus', + 'MOSS / Banpresto', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["macrossp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/macrossp.cpp"]}'::jsonb + ), + ( + 'mad-alien', + 'Mad Alien', + 'Data East Corporation', + 1980, + array['Mad Alien (set 1)'], + array['Arcade'], + '{"mame":["madalien"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/madalien.cpp"]}'::jsonb + ), + ( + 'mad-ball-v2-0', + 'Mad Ball (V2.0)', + 'Yun Sung', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["madball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'mad-crasher', + 'Mad Crasher', + 'SNK', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["madcrash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'mad-dog-ii-the-lost-gold-3do-hardware', + 'Mad Dog II: The Lost Gold (3DO hardware)', + 'American Laser Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["md23do"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + 'mad-dog-ii-the-lost-gold-v2-04', + 'Mad Dog II: The Lost Gold (v2.04)', + 'American Laser Games', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["maddog2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'mad-dog-mccree', + 'Mad Dog McCree', + 'American Laser Games', + 1990, + array['Mad Dog McCree (v2.03 board rev.B)'], + array['Arcade'], + '{"mame":["maddog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'mad-donna', + 'Mad Donna', + 'Promat (Tuning license)', + 1995, + array['Mad Donna (Tuning, set 1)'], + array['Arcade'], + '{"mame":["maddonna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/oneshot.cpp"]}'::jsonb + ), + ( + 'mad-gear', + 'Mad Gear', + 'Capcom', + 1989, + array['Mad Gear (US)'], + array['Arcade'], + '{"mame":["madgear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lastduel.cpp"]}'::jsonb + ), + ( + 'mad-motor', + 'Mad Motor', + 'Mitchell', + 1989, + array['Mad Motor (prototype, set 1)'], + array['Arcade'], + '{"mame":["madmotor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/madmotor.cpp"]}'::jsonb + ), + ( + 'mad-planets', + 'Mad Planets', + 'Gottlieb', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mplanets"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'mad-shark', + 'Mad Shark', + 'Allumer', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["madshark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'mad-zoo', + 'Mad Zoo', + 'Bordun International', + 1995, + array['Mad Zoo (version U450C)'], + array['Arcade'], + '{"mame":["madzoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'mag-max', + 'Mag Max', + 'Nichibutsu', + 1985, + array['Mag Max (set 1)'], + array['Arcade'], + '{"mame":["magmax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/magmax.cpp"]}'::jsonb + ), + ( + 'magic-bomb', + 'Magic Bomb', + 'Astro Corp.', + 2000, + array['Magic Bomb (Ver. L3.5S)', 'Magic Bomb (Version 1)'], + array['Arcade'], + '{"mame":["magibomb","magicbom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp","misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'magic-bubble', + 'Magic Bubble', + 'Yun Sung', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["magicbub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsun16.cpp"]}'::jsonb + ), + ( + 'magic-card-v1-10-14-09-94', + 'Magic Card (v1.10 14.09.94)', + 'Impera', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["magicrd1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'magic-card-v2-01', + 'Magic Card (v2.01)', + 'Impera', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["magicard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'magic-card-export-94', + 'Magic Card Export 94', + 'Impera', + 1994, + array['Magic Card Export 94 (v2.11a, set 1)'], + array['Arcade'], + '{"mame":["magicrde"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'magic-card-ii-bulgarian', + 'Magic Card II (Bulgarian)', + 'Impera', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["magicrd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'magic-card-iii-jackpot-v4-01-6-98', + 'Magic Card III Jackpot (V4.01 6/98)', + 'Impera', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["magicrdj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'magic-class', + 'Magic Class', + '', + null, + array['Magic Class (Ver 2.2)'], + array['Arcade'], + '{"mame":["mclass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'magic-colors', + 'Magic Colors', + 'ABM Games', + 1999, + array['Magic Colors (ver. 1.7a)'], + array['Arcade'], + '{"mame":["mcolors"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'magic-drink', + 'Magic Drink', + '', + 2001, + array['Magic Drink (Ver 1.2)'], + array['Arcade'], + '{"mame":["mdrink"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'magic-fly', + 'Magic Fly', + 'P&A Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["magicfly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicfly.cpp"]}'::jsonb + ), + ( + 'magic-johnson-s-fast-break-arcadia-v-2-8', + 'Magic Johnson''s Fast Break (Arcadia, V 2.8)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_fast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'magic-joker-v1-25-10-2000', + 'Magic Joker (v1.25.10.2000)', + 'B.R.L.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["magjoker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/galaxi.cpp"]}'::jsonb + ), + ( + 'magic-lotto-export-5-03', + 'Magic Lotto Export (5.03)', + 'Impera', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["magicle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'magic-number', + 'Magic Number', + 'CD Express', + 1995, + array['Magic Number (Italian gambling game, Ver 1.5)'], + array['Arcade'], + '{"mame":["mgnumber","mnumitg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp","misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'magic-premium-v1-1', + 'Magic Premium (v1.1)', + 'CD Express', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mgprem11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'magic-purple', + 'Magic Purple', + 'Unico', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["magipur"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'magic-reels', + 'Magic Reels', + 'Play System', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["magreel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magreel.cpp"]}'::jsonb + ), + ( + 'magic-sticks', + 'Magic Sticks', + 'Playmark', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["magicstk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/powerbal.cpp"]}'::jsonb + ), + ( + 'magic-sword-heroic-fantasy', + 'Magic Sword: Heroic Fantasy', + 'Capcom', + 1990, + array['Magic Sword: Heroic Fantasy (World 900725)'], + array['Arcade'], + '{"mame":["msword"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'magic-the-gathering-armageddon', + 'Magic the Gathering: Armageddon', + 'Acclaim', + 1997, + array['Magic the Gathering: Armageddon (set 1)'], + array['Arcade'], + '{"mame":["magictg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magictg.cpp"]}'::jsonb + ), + ( + 'magic-touch-v-28-05', + 'Magic Touch (v. 28.05)', + 'Playmark', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["magictch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'magic-train', + 'Magic Train', + 'Subsino', + 1997, + array['Magic Train (Ver. 1.4)'], + array['Arcade'], + '{"mame":["mtrain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'magic-s-10', + 'Magic''s 10', + 'A.W.P. Games', + 1995, + array['Magic''s 10 (ver. 16.55)'], + array['Arcade'], + '{"mame":["magic10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'magic-s-10-2', + 'Magic''s 10 2', + 'ABM Games', + 1997, + array['Magic''s 10 2 (ver. 1.1)'], + array['Arcade'], + '{"mame":["magic102"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'magical-butterfly', + 'Magical Butterfly', + 'Bordun International', + 1999, + array['Magical Butterfly (version U350C, protected)'], + array['Arcade'], + '{"mame":["mbutrfly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'magical-cat-adventure', + 'Magical Cat Adventure', + 'Wintechno', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mcatadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mcatadv.cpp"]}'::jsonb + ), + ( + 'magical-crystals', + 'Magical Crystals', + 'Kaneko', + 1991, + array['Magical Crystals (World, 92/01/10)'], + array['Arcade'], + '{"mame":["mgcrystl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'magical-drop-ii', + 'Magical Drop II', + 'Data East Corporation', + 1996, + '{}'::text[], + array['Puzzle'], + '{"mame":["magdrop2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'magical-drop-iii', + 'Magical Drop III', + 'Data East Corporation', + 1997, + '{}'::text[], + array['Puzzle'], + '{"mame":["magdrop3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'magical-error-wo-sagase', + 'Magical Error wo Sagase', + 'Technosoft / Jaleco', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["magerror"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/hyprduel.cpp"]}'::jsonb + ), + ( + 'magical-jack-va-4-00', + 'Magical Jack (VA 4.00)', + 'Global', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["magjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jungleyo.cpp"]}'::jsonb + ), + ( + 'magical-jack-plus-va-6-03', + 'Magical Jack Plus (VA 6.03)', + 'Global', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["magjackp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/jungleyo.cpp"]}'::jsonb + ), + ( + 'magical-kengo-2005', + 'Magical Kengo 2005', + 'Herb Home', + 2005, + array['Magical Kengo 2005 (Ver. 1.2)'], + array['Arcade'], + '{"mame":["magkengo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/popobear.cpp"]}'::jsonb + ), + ( + 'magical-odds', + 'Magical Odds', + 'Pal Company / Micro Manufacturing Inc.', + 1992, + array['Magical Odds (set 1)'], + array['Arcade'], + '{"mame":["magodds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'magical-poppins', + 'Magical Poppins', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["magicpop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'magical-pumpkin-puroland-de-daibouken', + 'Magical Pumpkin: Puroland de Daibouken', + 'Capcom', + 1996, + array['Magical Pumpkin: Puroland de Daibouken (Japan 960712)'], + array['Arcade'], + '{"mame":["mpumpkin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'magical-speed', + 'Magical Speed', + 'Allumer', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["magspeed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'magical-spot', + 'Magical Spot', + 'Universal', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["magspot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmic.cpp"]}'::jsonb + ), + ( + 'magical-spot-ii', + 'Magical Spot II', + 'Universal', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["magspot2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmic.cpp"]}'::jsonb + ), + ( + 'magical-tetris-challenge', + 'Magical Tetris Challenge', + 'Capcom', + 1998, + array['Magical Tetris Challenge (981009 Japan)'], + array['Puzzle'], + '{"mame":["mtetrisc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'magical-tonic-part-2', + 'Magical Tonic Part 2', + 'Pal Company', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mtonic2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'magical-touch', + 'Magical Touch', + 'Micro Manufacturing', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["magtouch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magtouch.cpp"]}'::jsonb + ), + ( + 'magical-truck-adventure-export', + 'Magical Truck Adventure (Export)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["magtruck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'magical-zunou-power-j-961031-v1-000', + 'Magical Zunou Power (J 961031 V1.000)', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["magzun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'magicball-fighting', + 'Magicball Fighting', + 'SemiCom', + 1994, + array['Magicball Fighting (Korea)'], + array['Arcade'], + '{"mame":["magicbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'magician-lord-ngm-005', + 'Magician Lord (NGM-005)', + 'Alpha Denshi Co.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["maglord"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'magistr16', + 'Magistr16', + 'New Game', + 2001, + array['Magistr16 (Russia)'], + array['Arcade'], + '{"mame":["magistr16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/magistr16.cpp"]}'::jsonb + ), + ( + 'magix-rock', + 'Magix / Rock', + 'Yun Sung', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["magix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsung8.cpp"]}'::jsonb + ), + ( + 'magnet-system', + 'Magnet System', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["cedmag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'magnum', + 'Magnum', + 'Dulmont', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["magnum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/magnum.cpp"]}'::jsonb + ), + ( + 'magnum-3000', + 'Magnum 3000', + 'MIPS', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["rs3230"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mips/mips_r3030.cpp"]}'::jsonb + ), + ( + 'magnum-r4000-be', + 'Magnum R4000 (be)', + 'MIPS', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["mmr4000be"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microsoft/jazz.cpp"]}'::jsonb + ), + ( + 'magnum-r4000-le', + 'Magnum R4000 (le)', + 'MIPS', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["mmr4000le"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microsoft/jazz.cpp"]}'::jsonb + ), + ( + 'mahou-no-lamp-v-jaa02', + 'Mahou no Lamp (v. JAA02)', + 'BMC', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mjmaglmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/bmcpokr.cpp"]}'::jsonb + ), + ( + 'maikobana', + 'Maikobana', + 'Nichibutsu', + 1990, + array['Maikobana (Japan 900802)', 'Maikobana (Japan 900911, medal)'], + array['Arcade'], + '{"mame":["maiko","mmaiko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'main-event-1984', + 'Main Event (1984)', + 'SNK', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mainsnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/mainsnk.cpp"]}'::jsonb + ), + ( + 'majiang-xingyun-shenlong', + 'Majiang Xingyun Shenlong', + 'Dynax', + 1996, + array['Majiang Xingyun Shenlong (China, D121)'], + array['Arcade'], + '{"mame":["mjxysl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'majiang-zhengba-v103cn', + 'Majiang Zhengba (V103CN)', + 'IGS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["mjzb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_fear.cpp"]}'::jsonb + ), + ( + 'majiang-zhizun-s100cn', + 'Majiang Zhizun (S100CN)', + 'IGS', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["mjzhizun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'major-havoc', + 'Major Havoc', + 'Atari', + 1983, + array['Major Havoc (rev 3)'], + array['Arcade'], + '{"mame":["mhavoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/mhavoc.cpp"]}'::jsonb + ), + ( + 'major-league', + 'Major League', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mjleague"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'major-title', + 'Major Title', + 'Irem', + 1990, + array['Major Title (World)'], + array['Arcade'], + '{"mame":["majtitle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'major-title-2', + 'Major Title 2', + 'Irem', + 1992, + array['Major Title 2 (World, set 1, 017 sound CPU)'], + array['Arcade'], + '{"mame":["majtitl2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'makaijan', + 'Makaijan', + 'Dynax', + 1987, + array['Makaijan (Japan)'], + array['Arcade'], + '{"mame":["makaijan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'maldaliza', + 'Maldaliza', + 'Big A Korea', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["maldaiza"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'mallet-madness-v2-1', + 'Mallet Madness (v2.1)', + 'Hanaho Games (Capcom license)', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["maletmad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tickee.cpp"]}'::jsonb + ), + ( + 'malzak', + 'Malzak', + 'Kitronix', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["malzak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/malzak.cpp"]}'::jsonb + ), + ( + 'mambo-a-go-go', + 'Mambo A Go-Go', + 'Konami', + 2001, + array['Mambo A Go-Go (GQA40 VER. JAB)'], + array['Arcade'], + '{"mame":["mamboagg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'mamoru-kun-wa-norowarete-shimatta', + 'Mamoru-kun wa Norowarete Shimatta!', + 'G.Rev', + 2008, + array['Mamoru-kun wa Norowarete Shimatta! (Japan)'], + array['Arcade'], + '{"mame":["mamonoro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mang-chi', + 'Mang-Chi', + 'Afega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mangchi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'manguan-caishen', + 'Manguan Caishen', + 'IGS', + 1998, + array['Manguan Caishen (China, V103CS)'], + array['Arcade'], + '{"mame":["mgcs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'manguan-caishen-2', + 'Manguan Caishen 2', + 'IGS', + 1999, + array['Manguan Caishen 2 (link version, host)', 'Manguan Caishen 2 (link version, extension, S110CN)'], + array['Arcade'], + '{"mame":["mgcs2h","mgcs2l"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027_link.cpp"]}'::jsonb + ), + ( + 'manguan-caishen-3-v101cn', + 'Manguan Caishen 3 (V101CN)', + 'IGS', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["mgcs3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'manguan-daheng', + 'Manguan Daheng', + 'IGS', + 1997, + array['Manguan Daheng (Taiwan, V125T1)'], + array['Arcade'], + '{"mame":["mgdh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'manguan-fuxing-v104t', + 'Manguan Fuxing (V104T)', + 'IGS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mgfx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'manguan-zhizun-v101cn', + 'Manguan Zhizun (V101CN)', + 'IGS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["mgzz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'manhattan', + 'Manhattan', + 'Data East Corporation', + 1981, + array['Manhattan (DECO Cassette) (Japan)'], + array['Arcade'], + '{"mame":["cmanhat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'mania-challenge', + 'Mania Challenge', + 'Technos Japan (Taito America license)', + 1986, + array['Mania Challenge (set 1)'], + array['Arcade'], + '{"mame":["maniach"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/matmania.cpp"]}'::jsonb + ), + ( + 'maniac-square', + 'Maniac Square', + 'Gaelco', + 1992, + array['Maniac Square (ver 1.0, checksum b602, prototype)', 'Maniac Square (unprotected, version 1.0, checksum BB73)'], + array['Arcade'], + '{"mame":["maniacsp","maniacsq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp","gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'manic-panic-ghosts', + 'Manic Panic Ghosts!', + 'Sega', + 2007, + array['Manic Panic Ghosts! (USA, Export)'], + array['Arcade'], + '{"mame":["manicpnc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mann-oh-mann', + 'Mann, oh-Mann', + 'Merkur', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["manohman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/manohman.cpp"]}'::jsonb + ), + ( + 'manpuku-suizokukan', + 'Manpuku Suizokukan', + 'Sega', + 2013, + '{}'::text[], + array['Arcade'], + '{"mame":["manpuku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'manx-tt-superbike-dx-twin', + 'Manx TT Superbike - DX/Twin', + 'Sega', + 1995, + array['Manx TT Superbike - DX/Twin (Revision D)'], + array['Arcade'], + '{"mame":["manxtt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'many-block', + 'Many Block', + 'Bee-Oh', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["manybloc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'map-1010', + 'MAP-1010', + 'Seiko', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["map1010"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanyo/phc25.cpp"]}'::jsonb + ), + ( + 'mappy', + 'Mappy', + 'Namco', + 1983, + array['Mappy (US)'], + array['Arcade'], + '{"mame":["mappy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'maque-da-zhonghua-quan', + 'Maque Da Zhonghua Quan', + 'Dynax', + 1995, + array['Maque Da Zhonghua Quan (Taiwan, D111)'], + array['Arcade'], + '{"mame":["mjdchuka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'maque-wangchao-chaoji-da-manguan-2-jiaqiang-ban', + 'Maque Wangchao / Chaoji Da Manguan 2 - Jiaqiang Ban', + 'IGS', + 2000, + array['Maque Wangchao / Chaoji Da Manguan 2 - Jiaqiang Ban (China, V100C)'], + array['Arcade'], + '{"mame":["sdmg2p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'maque-zhonghua-ernu', + 'Maque Zhonghua Ernu', + 'Dynax', + 1998, + array['Maque Zhonghua Ernu (Taiwan)'], + array['Arcade'], + '{"mame":["mjchuuka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'marbella-vice', + 'Marbella Vice', + 'Picmatic', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["marvice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'marbella-vice-100hz-display', + 'Marbella Vice (100Hz display)', + 'Picmatic', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["marvice100hz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'marble-madness', + 'Marble Madness', + 'Atari Games', + 1984, + array['Marble Madness (set 1)'], + array['Arcade'], + '{"mame":["marble"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy1.cpp"]}'::jsonb + ), + ( + 'marble-madness-ii', + 'Marble Madness II', + 'Atari Games', + 1991, + array['Marble Madness II (prototype)'], + array['Arcade'], + '{"mame":["marblmd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/marblmd2.cpp"]}'::jsonb + ), + ( + 'marchen-maze', + 'Marchen Maze', + 'Namco', + 1988, + array['Marchen Maze (Japan)'], + array['Arcade'], + '{"mame":["mmaze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'marine-boy', + 'Marine Boy', + 'Orca', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["marineb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'marine-date', + 'Marine Date', + 'Taito', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["marinedt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/marinedt.cpp"]}'::jsonb + ), + ( + 'mariner', + 'Mariner', + 'Amenip', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mariner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'mario-bros', + 'Mario Bros.', + 'Nintendo of America', + 1983, + array['Mario Bros. (US, revision E)'], + array['Platformer'], + '{"mame":["mario"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/mario.cpp"]}'::jsonb + ), + ( + 'mario-bros-playchoice-10', + 'Mario Bros. (PlayChoice-10)', + 'Nintendo', + 1983, + '{}'::text[], + array['Platformer'], + '{"mame":["pc_mario"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'mario-kart-arcade-gp', + 'Mario Kart Arcade GP', + 'Namco / Nintendo', + 2005, + array['Mario Kart Arcade GP (Japan, MKA1 Ver.A1)'], + array['Arcade'], + '{"mame":["mkartagp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'mario-kart-arcade-gp-2', + 'Mario Kart Arcade GP 2', + 'Namco / Nintendo', + 2007, + array['Mario Kart Arcade GP 2 (Japan, MK21 Ver.A)'], + array['Arcade'], + '{"mame":["mkartag2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'mario-lemieux-hockey-mega-tech', + 'Mario Lemieux Hockey (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_mlh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'mario-roulette', + 'Mario Roulette', + 'Konami', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mariorou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'mario-s-open-golf-playchoice-10', + 'Mario''s Open Golf (PlayChoice-10)', + 'Nintendo', + 1991, + '{}'::text[], + array['Sports'], + '{"mame":["pc_moglf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'mark-1-forth-computer', + 'Mark 1 FORTH Computer', + 'Andrew Holme', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["mk1forth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/mk1forth.cpp"]}'::jsonb + ), + ( + 'markham', + 'Markham', + 'Sun Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["markham"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/markham.cpp"]}'::jsonb + ), + ( + 'mars', + 'Mars', + 'Artic', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'mars-matrix-hyper-solid-shooting', + 'Mars Matrix: Hyper Solid Shooting', + 'Takumi (Capcom license)', + 2000, + array['Mars Matrix: Hyper Solid Shooting (USA 000412)'], + array['Arcade'], + '{"mame":["mmatrix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'martial-beat', + 'Martial Beat', + 'Konami', + 2002, + array['Martial Beat (G*B47 VER. JBA)'], + array['Arcade'], + '{"mame":["mrtlbeat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'martial-champion', + 'Martial Champion', + 'Konami', + 1993, + array['Martial Champion (ver EAB)'], + array['Arcade'], + '{"mame":["mtlchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mystwarr.cpp"]}'::jsonb + ), + ( + 'martial-masters-xing-yi-quan', + 'Martial Masters / Xing Yi Quan', + 'IGS', + 2001, + array['Martial Masters / Xing Yi Quan (ver. 104, 102, 102US)'], + array['Arcade'], + '{"mame":["martmast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'maru-chan-de-goo-j-971216-v1-000', + 'Maru-Chan de Goo! (J 971216 V1.000)', + 'Sega / Toyosuisan', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["maruchan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'marvel-land', + 'Marvel Land', + 'Namco', + 1989, + array['Marvel Land (Japan)'], + array['Arcade'], + '{"mame":["marvland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'marvel-super-heroes', + 'Marvel Super Heroes', + 'Capcom', + 1995, + array['Marvel Super Heroes (Europe 951024)'], + array['Arcade'], + '{"mame":["msh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'marvel-super-heroes-vs-street-fighter', + 'Marvel Super Heroes Vs. Street Fighter', + 'Capcom', + 1997, + array['Marvel Super Heroes Vs. Street Fighter (Europe 970625)'], + array['Fighting'], + '{"mame":["mshvsf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'marvel-vs-capcom-2-new-age-of-heroes', + 'Marvel Vs. Capcom 2: New Age of Heroes', + 'Capcom / Marvel', + 2000, + array['Marvel Vs. Capcom 2: New Age of Heroes (Export, Korea, Rev A)'], + array['Fighting'], + '{"mame":["mvsc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'marvel-vs-capcom-clash-of-super-heroes', + 'Marvel Vs. Capcom: Clash of Super Heroes', + 'Capcom', + 1998, + array['Marvel Vs. Capcom: Clash of Super Heroes (Europe 980123)'], + array['Fighting'], + '{"mame":["mvsc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'marvin-s-maze', + 'Marvin''s Maze', + 'SNK', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["marvins"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'masked-riders-club-battle-race-kamen-rider-club-battle-racer', + 'Masked Riders Club Battle Race / Kamen Rider Club Battle Racer', + 'Banpresto', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["kamenrid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'maski-show-ukraine-v-43-10', + 'Maski Show (Ukraine V. 43.10)', + 'Extrema', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["maski"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'master-chess-king', + 'Master (Chess King)', + 'Chess King / Intelligent Software', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["master"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chessking/master.cpp"]}'::jsonb + ), + ( + 'master-boy', + 'Master Boy', + 'Gaelco', + 1991, + array['Master Boy (Spain, set 1, checksum E49B)', 'Master Boy (1987, Z80 hardware, Covielsa, set 1)'], + array['Arcade'], + '{"mame":["mastboy","mastboyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/mastboy.cpp","gaelco/mastboyo.cpp"]}'::jsonb + ), + ( + 'master-of-weapon', + 'Master of Weapon', + 'Taito Corporation Japan', + 1989, + array['Master of Weapon (World)'], + array['Arcade'], + '{"mame":["masterw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'master-s-fury', + 'Master''s Fury', + 'Unico', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mastfury"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/drgnmst.cpp"]}'::jsonb + ), + ( + 'master-s-golf', + 'Master''s Golf', + 'Nasco', + 1985, + '{}'::text[], + array['Sports'], + '{"mame":["mastrglf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nasco/crgolf.cpp"]}'::jsonb + ), + ( + 'mat-mania', + 'Mat Mania', + 'Technos Japan (Taito America license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["matmania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/matmania.cpp"]}'::jsonb + ), + ( + 'match-98', + 'Match ''98', + 'Amcoe', + 1998, + array['Match ''98 (ver. 1.33)'], + array['Arcade'], + '{"mame":["match98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'match-games', + 'Match Games', + 'Merit', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mgames"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/mgames.cpp"]}'::jsonb + ), + ( + 'match-it', + 'Match It', + 'Tamtex', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["matchit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m80.cpp"]}'::jsonb + ), + ( + 'match-it-ii', + 'Match It II', + 'Tamtex', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["matchit2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m90.cpp"]}'::jsonb + ), + ( + 'match-em-up-6221-51-u5-1', + 'Match''em Up (6221-51, U5-1)', + 'Merit', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["matchem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'matrimelee-shin-gouketsuji-ichizoku-toukon-ngm-2660-ngh-2660', + 'Matrimelee / Shin Gouketsuji Ichizoku Toukon (NGM-2660 ~ NGH-2660)', + 'Noise Factory / Atlus', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["matrim"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'matrix', + 'Matrix', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["matrix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/matrix.cpp"]}'::jsonb + ), + ( + 'mausuke-no-ojama-the-world-j-960314-v1-000', + 'Mausuke no Ojama the World (J 960314 V1.000)', + 'Data East Corporation', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mausuke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'maverik', + 'Maverik', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["maverik"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'max-rpm', + 'Max RPM', + 'Bally Midway', + 1986, + array['Max RPM (ver 2)'], + array['Arcade'], + '{"mame":["maxrpm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'max-a-flex', + 'Max-A-Flex', + 'Exidy', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["maxaflex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/maxaflex.cpp"]}'::jsonb + ), + ( + 'maxi-dealer', + 'Maxi-Dealer', + 'ACL Manufacturing', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["maxideal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/kingpin.cpp"]}'::jsonb + ), + ( + 'maximum-force-v1-05', + 'Maximum Force v1.05', + 'Atari Games', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["maxforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'maximum-speed', + 'Maximum Speed', + 'SIMS / Sammy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["maxspeed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'maya', + 'Maya', + 'Promat', + 1994, + array['Maya (set 1)'], + array['Arcade'], + '{"mame":["maya"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'mayday', + 'Mayday', + 'Hoei', + 1980, + array['Mayday (set 1)'], + array['Arcade'], + '{"mame":["mayday"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'mayhem-2002', + 'Mayhem 2002', + 'Cinematronics', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mayhem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'mayjinsen', + 'Mayjinsen', + 'Seta', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mayjinsn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'mayjinsen-2', + 'Mayjinsen 2', + 'Seta', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mayjisn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'mayjinsen-3', + 'Mayjinsen 3', + 'Seta / Able Corporation', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mayjin3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'mayo-no-21', + 'Mayo no 21', + 'Chang Yu Electronic', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["changyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/changyu.cpp"]}'::jsonb + ), + ( + 'mazan-flash-of-the-blade', + 'Mazan: Flash of the Blade', + 'Namco', + 2002, + array['Mazan: Flash of the Blade (World, MAZ2 Ver.A)'], + array['Arcade'], + '{"mame":["mazan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'maze-invaders', + 'Maze Invaders', + 'Atari', + 1981, + array['Maze Invaders (prototype)'], + array['Arcade'], + '{"mame":["mazeinv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/centiped.cpp"]}'::jsonb + ), + ( + 'maze-of-flott', + 'Maze of Flott', + 'Taito Corporation', + 1989, + array['Maze of Flott (Japan)'], + array['Arcade'], + '{"mame":["mofflott"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'mazer-blazer', + 'Mazer Blazer', + 'Stern Electronics', + 1983, + array['Mazer Blazer (set 1)'], + array['Arcade'], + '{"mame":["mazerbla"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/mazerbla.cpp"]}'::jsonb + ), + ( + 'mazin-wars-mazin-saga-mega-play', + 'Mazin Wars / Mazin Saga (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_mazin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'mazinger-z', + 'Mazinger Z', + 'Banpresto / Dynamic Pl. Toei Animation', + 1994, + array['Mazinger Z (World)'], + array['Arcade'], + '{"mame":["mazinger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'mb-s1', + 'MB-S1', + 'Hitachi', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mbs1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hitachi/mbs1.cpp"]}'::jsonb + ), + ( + 'mbc-200', + 'MBC-200', + 'Sanyo', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mbc200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanyo/mbc200.cpp"]}'::jsonb + ), + ( + 'mbc-55x', + 'MBC-55x', + 'Sanyo', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mbc55x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanyo/mbc55x.cpp"]}'::jsonb + ), + ( + 'mbc020-65-cpu-video-board-torque-systems-oem', + 'MBC020-65 CPU/Video Board (Torque Systems OEM)', + 'Sym Systems / Torque Systems', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mbc020"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["synertek/mbc020.cpp"]}'::jsonb + ), + ( + 'mc-1000', + 'MC-1000', + 'CCE', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mc1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cce/mc1000.cpp"]}'::jsonb + ), + ( + 'mc-68000-computer', + 'mc-68000-Computer', + 'mc / Franzis Verlag', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mc68000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mc/mc68000.cpp"]}'::jsonb + ), + ( + 'mc-80-21-22', + 'MC-80.21/22', + 'VEB Elektronik Gera', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc8020"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/mc8020.cpp"]}'::jsonb + ), + ( + 'mc-80-30-31', + 'MC-80.30/31', + 'VEB Elektronik Gera', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc8030"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/mc8030.cpp"]}'::jsonb + ), + ( + 'mc-cp-m-computer', + 'mc-CP/M-Computer', + 'GRAF Elektronik Systeme GmbH', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mccpm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mc/mccpm.cpp"]}'::jsonb + ), + ( + 'mc68705p5-programmer', + 'MC68705P5 Programmer', + 'Motorola', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["705p5prg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/m68705prg.cpp"]}'::jsonb + ), + ( + 'mc7105', + 'MC7105', + 'Elektronika', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mc7105"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt240.cpp"]}'::jsonb + ), + ( + 'mcb-216', + 'MCB-216', + 'Cromemco', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["mcb216"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cromemco/mcb216.cpp"]}'::jsonb + ), + ( + 'mcm-70', + 'MCM/70', + 'Micro Computer Machines', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["mcm70"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mcm70.cpp"]}'::jsonb + ), + ( + 'mcs-basic-52', + 'MCS BASIC 52', + 'Intel', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["basic52"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/basic52.cpp"]}'::jsonb + ), + ( + 'mcs-powerview-10', + 'MCS PowerView 10', + 'Compugraphic', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pwrview"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["compugraphic/pwrview.cpp"]}'::jsonb + ), + ( + 'mcs-51-system-design-kit', + 'MCS-51 System Design Kit', + 'Intel', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["sdk51"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/sdk51.cpp"]}'::jsonb + ), + ( + 'mcs-85-system-design-kit', + 'MCS-85 System Design Kit', + 'Intel', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["sdk85"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/sdk85.cpp"]}'::jsonb + ), + ( + 'mcs-86-system-design-kit', + 'MCS-86 System Design Kit', + 'Intel', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sdk86"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/sdk86.cpp"]}'::jsonb + ), + ( + 'meadows-4-in-1', + 'Meadows 4 in 1', + 'Meadows', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["mead4in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/meadwttl.cpp"]}'::jsonb + ), + ( + 'meadows-lanes', + 'Meadows Lanes', + 'Meadows Games, Inc.', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["medlanes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/lazercmd.cpp"]}'::jsonb + ), + ( + 'mechanized-attack', + 'Mechanized Attack', + 'SNK', + 1989, + array['Mechanized Attack (World)'], + array['Arcade'], + '{"mame":["mechatt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/mechatt.cpp"]}'::jsonb + ), + ( + 'mega-blast', + 'Mega Blast', + 'Taito Corporation Japan', + 1989, + array['Mega Blast (World)'], + array['Arcade'], + '{"mame":["megablst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'mega-bonus-star-ii-euro-millennium-edition', + 'Mega Bonus Star II (Euro, Millennium Edition)', + 'Auto-Data Graz', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["mbs2euro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'mega-card', + 'Mega Card', + 'Fun World', + 1993, + array['Mega Card (Ver.0210, encrypted)'], + array['Arcade'], + '{"mame":["megacard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'mega-double-strip', + 'Mega Double Strip', + 'Blitz Systems Inc.', + 1992, + array['Mega Double Strip (Ver. 1.10b)'], + array['Arcade'], + '{"mame":["megastrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'mega-duck-cougar-boy', + 'Mega Duck / Cougar Boy', + 'Welback Holdings (Timlex International) / Creatronic / Videojet / Cougar USA', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["megaduck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gb.cpp"]}'::jsonb + ), + ( + 'mega-katok-2', + 'Mega Katok 2', + 'Novotech', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["megakat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'mega-lines-wing-w-7-system', + 'Mega Lines (Wing W-7 System)', + 'Fun World', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["megaline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'mega-man-2-the-power-fighters', + 'Mega Man 2: The Power Fighters', + 'Capcom', + 1996, + array['Mega Man 2: The Power Fighters (USA 960708)'], + array['Arcade'], + '{"mame":["megaman2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'mega-man-iii-playchoice-10', + 'Mega Man III (PlayChoice-10)', + 'Capcom USA (Nintendo of America license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_mman3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'mega-man-the-power-battle', + 'Mega Man: The Power Battle', + 'Capcom', + 1995, + array['Mega Man: The Power Battle (CPS1, USA 951006)'], + array['Arcade'], + '{"mame":["megaman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'mega-phoenix', + 'Mega Phoenix', + 'Dinamic / Inder', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["megaphx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/megaphx.cpp"]}'::jsonb + ), + ( + 'mega-turbo-2', + 'Mega Turbo 2', + 'Premier Technology', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["megaturbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/megaturbo.cpp"]}'::jsonb + ), + ( + 'mega-twins', + 'Mega Twins', + 'Capcom', + 1990, + array['Mega Twins (World 900619)'], + array['Arcade'], + '{"mame":["mtwins"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'mega-zone', + 'Mega Zone', + 'Konami', + 1983, + array['Mega Zone (version L)'], + array['Arcade'], + '{"mame":["megazone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/megazone.cpp"]}'::jsonb + ), + ( + 'mega-tech', + 'Mega-Tech', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["megatech"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'megadon', + 'Megadon', + 'Epos Corporation (Photar Industries license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["megadon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'megapad-31-in-1', + 'Megapad 31-in-1', + 'Waixing', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["megapad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'megatack', + 'Megatack', + 'Centuri (Game Plan license)', + 1980, + array['Megatack (set 1)'], + array['Arcade'], + '{"mame":["megatack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/killcom.cpp"]}'::jsonb + ), + ( + 'megatouch-5', + 'Megatouch 5', + 'Merit', + 1997, + array['Megatouch 5 (9255-60-01 R0I, Standard version)'], + array['Arcade'], + '{"mame":["megat5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'megatouch-6', + 'Megatouch 6', + 'Merit', + 1998, + array['Megatouch 6 (9255-80-01 R0A, Standard version)'], + array['Arcade'], + '{"mame":["megat6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'megatouch-7-encore-edition', + 'Megatouch 7 Encore Edition', + 'Merit', + 2000, + array['Megatouch 7 Encore Edition (9255-90-01 R00, Standard version)'], + array['Arcade'], + '{"mame":["megat7e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'megatouch-iii', + 'Megatouch III', + 'Merit', + 1996, + array['Megatouch III (9255-20-01 R0N, Standard version)'], + array['Arcade'], + '{"mame":["megat3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'megatouch-iv', + 'Megatouch IV', + 'Merit', + 1996, + array['Megatouch IV (9255-40-01 R0E, Standard version)'], + array['Arcade'], + '{"mame":["megat4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'megatouch-xl', + 'MegaTouch XL', + 'Merit Industries', + 1997, + array['MegaTouch XL (Version R1, prototype?)'], + array['Arcade'], + '{"mame":["mtouchxl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/mtouchxl.cpp"]}'::jsonb + ), + ( + 'megatouch-xl-6000', + 'MegaTouch XL 6000', + 'Merit Industries', + 1999, + array['MegaTouch XL 6000 (Version r07)'], + array['Arcade'], + '{"mame":["mtchxl6k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/mtouchxl.cpp"]}'::jsonb + ), + ( + 'megatouch-xl-gold', + 'MegaTouch XL Gold', + 'Merit Industries', + 2000, + array['MegaTouch XL Gold (Version r01)'], + array['Arcade'], + '{"mame":["mtchxlgld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/mtouchxl.cpp"]}'::jsonb + ), + ( + 'megatouch-xl-super-5000', + 'MegaTouch XL Super 5000', + 'Merit Industries', + 1998, + array['MegaTouch XL Super 5000 (Version R5I)'], + array['Arcade'], + '{"mame":["mtchxl5k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/mtouchxl.cpp"]}'::jsonb + ), + ( + 'megatouch-xl-titanium', + 'MegaTouch XL Titanium', + 'bootleg', + 2002, + array['MegaTouch XL Titanium (Version r0?, cracked)'], + array['Arcade'], + '{"mame":["mtchxlti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/mtouchxl.cpp"]}'::jsonb + ), + ( + 'megumi-rescue', + 'Megumi Rescue', + 'Sega / Exa', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["megrescu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'meijinsen', + 'Meijinsen', + 'SNK', + 1986, + array['Meijinsen (set 1)'], + array['Arcade'], + '{"mame":["meijinsn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/meijinsn.cpp"]}'::jsonb + ), + ( + 'meikyu-jima', + 'Meikyu Jima', + 'Irem', + 1988, + array['Meikyu Jima (Japan)'], + array['Arcade'], + '{"mame":["kikcubic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/vigilant.cpp"]}'::jsonb + ), + ( + 'meikyuu-hunter-g', + 'Meikyuu Hunter G', + 'Data East Corporation', + 1987, + array['Meikyuu Hunter G (Japan)'], + array['Arcade'], + '{"mame":["meikyuh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'mek6800d1', + 'MEK6800D1', + 'Motorola', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["mekd1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/mekd1.cpp"]}'::jsonb + ), + ( + 'mek6800d2', + 'MEK6800D2', + 'Motorola', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["mekd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/mekd2.cpp"]}'::jsonb + ), + ( + 'mek6802d3', + 'MEK6802D3', + 'Motorola', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["mekd3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/mekd3.cpp"]}'::jsonb + ), + ( + 'mek6802d4', + 'MEK6802D4', + 'Motorola', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["mekd4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/mekd4.cpp"]}'::jsonb + ), + ( + 'mek6802d5', + 'MEK6802D5', + 'Motorola', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["mekd5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/mekd5.cpp"]}'::jsonb + ), + ( + 'melty-blood-act-cadenza-ver-a-gdl-0028c', + 'Melty Blood Act Cadenza Ver. A (GDL-0028C)', + 'Ecole Software', + 2005, + array['Melty Blood Act Cadenza Ver. A (Japan) (GDL-0028C)'], + array['Arcade'], + '{"mame":["meltybld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'melty-blood-act-cadenza-version-b2-gdl-0039a', + 'Melty Blood Act Cadenza Version B2 (GDL-0039A)', + 'Ecole Software', + 2006, + array['Melty Blood Act Cadenza Version B2 (Japan) (GDL-0039A)'], + array['Arcade'], + '{"mame":["meltyb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'melty-blood-actress-again-version-a', + 'Melty Blood Actress Again Version A', + 'Type-Moon / Ecole', + 2008, + array['Melty Blood Actress Again Version A (Japan, Rev A)'], + array['Arcade'], + '{"mame":["mbaa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'memorymoog', + 'Memorymoog', + 'Moog Music', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["memorymoog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["moog/memorymoog.cpp"]}'::jsonb + ), + ( + 'meng-hong-lou', + 'Meng Hong Lou', + 'Sealy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["menghong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/menghong.cpp"]}'::jsonb + ), + ( + 'mentor-16', + 'Mentor 16', + 'Novag Industries / Intelligent Heuristic Programming', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mentor16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/mentor16.cpp"]}'::jsonb + ), + ( + 'meosis-magic', + 'Meosis Magic', + 'Sammy', + null, + array['Meosis Magic (Japan)'], + array['Arcade'], + '{"mame":["meosism"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'mephisto', + 'Mephisto', + 'Hegener + Glaser', + 1980, + array['Mephisto (set 1)'], + array['Arcade'], + '{"mame":["mephisto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/brikett.cpp"]}'::jsonb + ), + ( + 'mephisto-1x', + 'Mephisto 1X', + 'Hegener + Glaser', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mephisto1x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/brikett.cpp"]}'::jsonb + ), + ( + 'mephisto-academy-english-04-10-88', + 'Mephisto Academy (English, 04-10-88)', + 'Hegener + Glaser', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["academy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/academy.cpp"]}'::jsonb + ), + ( + 'mephisto-almeria-32-bit-v0-12', + 'Mephisto Almeria 32 Bit (v0.12?)', + 'Hegener + Glaser', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["alm32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modular.cpp"]}'::jsonb + ), + ( + 'mephisto-amsterdam', + 'Mephisto Amsterdam', + 'Hegener + Glaser', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["amsterd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/amsterdam.cpp"]}'::jsonb + ), + ( + 'mephisto-berlin-68000-v0-03', + 'Mephisto Berlin 68000 (v0.03)', + 'Hegener + Glaser', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["berl16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/berlin.cpp"]}'::jsonb + ), + ( + 'mephisto-berlin-professional-68020', + 'Mephisto Berlin Professional 68020', + 'Hegener + Glaser', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["berlinp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/berlin.cpp"]}'::jsonb + ), + ( + 'mephisto-blitz-und-probleml-sungs-modul', + 'Mephisto Blitz- und Problemlösungs-Modul', + 'Hegener + Glaser', + 1985, + array['Mephisto Blitz- und Problemlösungs-Modul (set 1)'], + array['Arcade'], + '{"mame":["bup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-dallas-68020', + 'Mephisto Dallas 68020', + 'Hegener + Glaser', + 1986, + array['Mephisto Dallas 68020 (set 1)'], + array['Arcade'], + '{"mame":["dallas32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/amsterdam.cpp"]}'::jsonb + ), + ( + 'mephisto-esb-ii-esb-6000-board', + 'Mephisto ESB II (ESB 6000 board)', + 'Hegener + Glaser', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mephistoe2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/brikett.cpp"]}'::jsonb + ), + ( + 'mephisto-europa', + 'Mephisto Europa', + 'Hegener + Glaser', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["europa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/europa.cpp"]}'::jsonb + ), + ( + 'mephisto-excalibur', + 'Mephisto Excalibur', + 'Hegener + Glaser', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["excal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/excalibur.cpp"]}'::jsonb + ), + ( + 'mephisto-genius-68030-v4-01', + 'Mephisto Genius 68030 (v4.01)', + 'Hegener + Glaser', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["gen32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modular.cpp"]}'::jsonb + ), + ( + 'mephisto-ii', + 'Mephisto II', + 'Hegener + Glaser', + 1981, + array['Mephisto II (set 1)'], + array['Arcade'], + '{"mame":["mephisto2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/brikett.cpp"]}'::jsonb + ), + ( + 'mephisto-iii', + 'Mephisto III', + 'Hegener + Glaser', + 1983, + array['Mephisto III (set 1)'], + array['Arcade'], + '{"mame":["mephisto3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/brikett.cpp"]}'::jsonb + ), + ( + 'mephisto-iii-s-glasgow', + 'Mephisto III-S Glasgow', + 'Hegener + Glaser', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["glasgow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/glasgow.cpp"]}'::jsonb + ), + ( + 'mephisto-junior', + 'Mephisto Junior', + 'Hegener + Glaser', + 1982, + array['Mephisto Junior (1982 version)'], + array['Arcade'], + '{"mame":["mephistoj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/brikett.cpp"]}'::jsonb + ), + ( + 'mephisto-london-32-bit', + 'Mephisto London 32 Bit', + 'Richard Lang', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["lond32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modular.cpp"]}'::jsonb + ), + ( + 'mephisto-lyon-32-bit-v2-07', + 'Mephisto Lyon 32 Bit (v2.07)', + 'Hegener + Glaser', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["lyon32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modular.cpp"]}'::jsonb + ), + ( + 'mephisto-mega-iv', + 'Mephisto Mega IV', + 'Hegener + Glaser', + 1988, + array['Mephisto Mega IV (set 1)'], + array['Arcade'], + '{"mame":["mega4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/smondial.cpp"]}'::jsonb + ), + ( + 'mephisto-milano-v1-02', + 'Mephisto Milano (v1.02)', + 'Hegener + Glaser', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["milano"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/milano.cpp"]}'::jsonb + ), + ( + 'mephisto-mirage', + 'Mephisto Mirage', + 'Hegener + Glaser', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mmirage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm1.cpp"]}'::jsonb + ), + ( + 'mephisto-mm-i', + 'Mephisto MM I', + 'Hegener + Glaser', + 1983, + array['Mephisto MM I (ver. B)'], + array['Arcade'], + '{"mame":["mm1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm1.cpp"]}'::jsonb + ), + ( + 'mephisto-mm-ii', + 'Mephisto MM II', + 'Hegener + Glaser', + 1985, + array['Mephisto MM II (set 1, v4.00)'], + array['Arcade'], + '{"mame":["mm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-mm-ii-nona-program-doccc-1985-leiden-tm', + 'Mephisto MM II (Nona program, DOCCC 1985 Leiden TM)', + 'Hegener + Glaser', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mm2nona"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-mm-iv-rebel-program-wmccc-1989-portorose-tm', + 'Mephisto MM IV (Rebel program, WMCCC 1989 Portorose TM)', + 'Hegener + Glaser', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mm4rebel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-mm-iv-v7-10', + 'Mephisto MM IV (v7.10)', + 'Hegener + Glaser', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mm4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-mm-v-v5-1', + 'Mephisto MM V (v5.1)', + 'Hegener + Glaser', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mm5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-modena', + 'Mephisto Modena', + 'Hegener + Glaser', + 1992, + array['Mephisto Modena (set 1)'], + array['Arcade'], + '{"mame":["modena"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modena.cpp"]}'::jsonb + ), + ( + 'mephisto-mondial', + 'Mephisto Mondial', + 'Hegener + Glaser', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mondial"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mondial.cpp"]}'::jsonb + ), + ( + 'mephisto-mondial-68000xl', + 'Mephisto Mondial 68000XL', + 'Hegener + Glaser', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mondl68k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mondial68k.cpp"]}'::jsonb + ), + ( + 'mephisto-mondial-ii', + 'Mephisto Mondial II', + 'Hegener + Glaser', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mondial2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mondial2.cpp"]}'::jsonb + ), + ( + 'mephisto-monte-carlo', + 'Mephisto Monte Carlo', + 'Hegener + Glaser', + 1987, + array['Mephisto Monte Carlo (ver. MC3)'], + array['Arcade'], + '{"mame":["montec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/montec.cpp"]}'::jsonb + ), + ( + 'mephisto-monte-carlo-iv', + 'Mephisto Monte Carlo IV', + 'Hegener + Glaser', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["montec4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/montec.cpp"]}'::jsonb + ), + ( + 'mephisto-montreal-68000', + 'Mephisto Montreal 68000', + 'Hegener + Glaser', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["montreal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/roma2.cpp"]}'::jsonb + ), + ( + 'mephisto-nigel-short', + 'Mephisto Nigel Short', + 'Hegener + Glaser', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["nshort"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/milano.cpp"]}'::jsonb + ), + ( + 'mephisto-polgar-v1-50', + 'Mephisto Polgar (v1.50)', + 'Hegener + Glaser', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["polgar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/polgar.cpp"]}'::jsonb + ), + ( + 'mephisto-portorose-32-bit-v1-04', + 'Mephisto Portorose 32 Bit (v1.04)', + 'Hegener + Glaser', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["port32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modular.cpp"]}'::jsonb + ), + ( + 'mephisto-rebell-5-0', + 'Mephisto Rebell 5,0', + 'Hegener + Glaser', + 1986, + array['Mephisto Rebell 5,0 (set 1)'], + array['Arcade'], + '{"mame":["rebel5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/mm2.cpp"]}'::jsonb + ), + ( + 'mephisto-risc-1mb-v1-2', + 'Mephisto Risc 1MB (v1.2)', + 'Hegener + Glaser / Tasc', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["mrisc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/risc.cpp"]}'::jsonb + ), + ( + 'mephisto-risc-ii', + 'Mephisto Risc II', + 'Hegener + Glaser / Tasc', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mrisc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/risc.cpp"]}'::jsonb + ), + ( + 'mephisto-roma-68020', + 'Mephisto Roma 68020', + 'Hegener + Glaser', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["roma32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/amsterdam.cpp"]}'::jsonb + ), + ( + 'mephisto-roma-ii', + 'Mephisto Roma II', + 'Hegener + Glaser', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["roma2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/roma2.cpp"]}'::jsonb + ), + ( + 'mephisto-super-mondial', + 'Mephisto Super Mondial', + 'Hegener + Glaser', + 1986, + array['Mephisto Super Mondial (ver. A)'], + array['Arcade'], + '{"mame":["smondial"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/smondial.cpp"]}'::jsonb + ), + ( + 'mephisto-super-mondial-ii', + 'Mephisto Super Mondial II', + 'Hegener + Glaser', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["smondial2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/smondial.cpp"]}'::jsonb + ), + ( + 'mephisto-vancouver-32-bit', + 'Mephisto Vancouver 32 Bit', + 'Hegener + Glaser', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["van32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hegenerglaser/modular.cpp"]}'::jsonb + ), + ( + 'mera-79152-pc', + 'MERA 79152 PC', + 'Mera-Elzab', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["m79152pc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mera/m79152pc.cpp"]}'::jsonb + ), + ( + 'mercs', + 'Mercs', + 'Capcom', + 1990, + array['Mercs (World 900302)'], + array['Arcade'], + '{"mame":["mercs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'merkur-service-testger-t', + 'Merkur Service Testgerät', + 'ADP', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["servicet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/servicetastatur.cpp"]}'::jsonb + ), + ( + 'merlin-s-money-maze', + 'Merlin''s Money Maze', + 'Zilec-Zenitone', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["merlinmm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/pingpong.cpp"]}'::jsonb + ), + ( + 'mermaid', + 'Mermaid', + 'Sanritsu / Rock-Ola', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mermaid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/mermaid.cpp"]}'::jsonb + ), + ( + 'merry-circus', + 'Merry Circus', + 'Amcoe', + 2009, + array['Merry Circus (Version 1.0.2)'], + array['Arcade'], + '{"mame":["mcircus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'meta-fox', + 'Meta Fox', + 'Jordan I.S. / Seta', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["metafox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'metabee-shot', + 'Metabee Shot', + 'Natsume / Banpresto', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["metabee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'metal-black', + 'Metal Black', + 'Taito Corporation Japan', + 1991, + array['Metal Black (World)'], + array['Arcade'], + '{"mame":["metalb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'metal-clash', + 'Metal Clash', + 'Data East Corporation', + 1985, + array['Metal Clash (Japan)'], + array['Arcade'], + '{"mame":["metlclsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/metlclsh.cpp"]}'::jsonb + ), + ( + 'metal-freezer', + 'Metal Freezer', + 'Seibu Kaihatsu', + 1989, + array['Metal Freezer (Japan)'], + array['Arcade'], + '{"mame":["metlfrzr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/metlfrzr.cpp"]}'::jsonb + ), + ( + 'metal-hawk', + 'Metal Hawk', + 'Namco', + 1988, + array['Metal Hawk (Rev C)'], + array['Arcade'], + '{"mame":["metlhawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'metal-maniax', + 'Metal Maniax', + 'Atari Games', + 1994, + array['Metal Maniax (prototype)'], + array['Arcade'], + '{"mame":["metalmx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/metalmx.cpp"]}'::jsonb + ), + ( + 'metal-saver', + 'Metal Saver', + 'First Amusement', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["metlsavr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'metal-slug-super-vehicle-001', + 'Metal Slug - Super Vehicle-001', + 'Nazca', + 1996, + '{}'::text[], + array['Shooter'], + '{"mame":["mslug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'metal-slug-2-super-vehicle-001-ii-ngm-2410-ngh-2410', + 'Metal Slug 2 - Super Vehicle-001/II (NGM-2410 ~ NGH-2410)', + 'SNK', + 1998, + '{}'::text[], + array['Shooter'], + '{"mame":["mslug2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'metal-slug-3-ngm-2560', + 'Metal Slug 3 (NGM-2560)', + 'SNK', + 2000, + '{}'::text[], + array['Shooter'], + '{"mame":["mslug3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'metal-slug-4-ngm-2630', + 'Metal Slug 4 (NGM-2630)', + 'Mega / Noise Factory / Playmore', + 2002, + '{}'::text[], + array['Shooter'], + '{"mame":["mslug4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'metal-slug-5-jamma-pcb', + 'Metal Slug 5 (JAMMA PCB)', + 'SNK Playmore', + 2003, + '{}'::text[], + array['Shooter'], + '{"mame":["ms5pcb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neopcb.cpp"]}'::jsonb + ), + ( + 'metal-slug-5-ngm-2680', + 'Metal Slug 5 (NGM-2680)', + 'SNK Playmore', + 2003, + '{}'::text[], + array['Shooter'], + '{"mame":["mslug5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'metal-slug-6', + 'Metal Slug 6', + 'Sega / SNK Playmore', + 2006, + '{}'::text[], + array['Shooter'], + '{"mame":["mslug6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'metal-slug-x-super-vehicle-001-ngm-2500-ngh-2500', + 'Metal Slug X - Super Vehicle-001 (NGM-2500 ~ NGH-2500)', + 'SNK', + 1999, + '{}'::text[], + array['Shooter'], + '{"mame":["mslugx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'metal-soldier-isaac-ii', + 'Metal Soldier Isaac II', + 'Taito Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["msisaac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/msisaac.cpp"]}'::jsonb + ), + ( + 'metamoqester', + 'Metamoqester', + 'Banpresto / Pandorabox', + 1995, + array['Metamoqester (World)'], + array['Arcade'], + '{"mame":["metmqstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'metamorphic-force', + 'Metamorphic Force', + 'Konami', + 1993, + array['Metamorphic Force (ver EAA)'], + array['Arcade'], + '{"mame":["metamrph"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mystwarr.cpp"]}'::jsonb + ), + ( + 'metro-cross', + 'Metro-Cross', + 'Namco', + 1985, + array['Metro-Cross (set 1)'], + array['Arcade'], + '{"mame":["metrocrs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/baraduke.cpp"]}'::jsonb + ), + ( + 'metroid-playchoice-10', + 'Metroid (PlayChoice-10)', + 'Nintendo', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_mtoid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'mg-1', + 'MG-1', + 'Whitechapel Computer Works', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mg1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mg1/mg1.cpp"]}'::jsonb + ), + ( + 'michael-jackson-s-moonwalker-fd1094-8751-317-0159', + 'Michael Jackson''s Moonwalker (FD1094/8751 317-0159)', + 'Sega', + 1990, + array['Michael Jackson''s Moonwalker (World) (FD1094/8751 317-0159)'], + array['Arcade'], + '{"mame":["mwalk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'michael-jackson-s-moonwalker-mega-tech', + 'Michael Jackson''s Moonwalker (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_mwalk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'michigan-super-draw-2131-16-u5-2', + 'Michigan Super Draw (2131-16, U5-2)', + 'Big Apple Games / Merit', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["misdraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'micon-kit-part-ii', + 'Micon-Kit Part II', + 'SNK', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["micon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/miconkit.cpp"]}'::jsonb + ), + ( + 'micro-arcade-250-in-1', + 'Micro Arcade 250-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["micac250"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'micro-chess', + 'Micro Chess', + 'Novag Industries', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["nmicro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/micro.cpp"]}'::jsonb + ), + ( + 'micro-chroma-68', + 'Micro Chroma 68', + 'Motorola', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["uchroma68"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/uchroma68.cpp"]}'::jsonb + ), + ( + 'micro-decision-md-2', + 'Micro Decision MD-2', + 'Morrow Designs', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["md2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["morrow/microdec.cpp"]}'::jsonb + ), + ( + 'micro-ii-novag', + 'Micro II (Novag)', + 'Novag Industries / Heuristic Software', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["nmicro2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/micro2.cpp"]}'::jsonb + ), + ( + 'micro-professor-1', + 'Micro-Professor 1', + 'Multitech', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mpf1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["multitech/mpf1.cpp"]}'::jsonb + ), + ( + 'micro-professor-1-plus', + 'Micro-Professor 1 Plus', + 'Multitech', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mpf1p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["multitech/mpf1p.cpp"]}'::jsonb + ), + ( + 'micro-professor-i-88', + 'Micro-Professor I/88', + 'Multitech', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mpf1_88"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["multitech/mpf1_88.cpp"]}'::jsonb + ), + ( + 'micro-term-420', + 'Micro-Term 420', + 'Micro-Term', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["mt420"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microterm/mt420.cpp"]}'::jsonb + ), + ( + 'micro-term-440', + 'Micro-Term 440', + 'Micro-Term', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["mt440"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microterm/mt440.cpp"]}'::jsonb + ), + ( + 'microbee-16k-standard', + 'Microbee 16k Standard', + 'Applied Technology', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mbee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/mbee.cpp"]}'::jsonb + ), + ( + 'microbox-ii', + 'Microbox II', + 'Micro Concepts', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["microbx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/microbox2.cpp"]}'::jsonb + ), + ( + 'microkit09', + 'Microkit09', + 'Multitech', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mkit09"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["multitech/mkit09.cpp"]}'::jsonb + ), + ( + 'microkorg-synthesizer-vocoder', + 'microKORG Synthesizer/Vocoder', + 'Korg', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["microkorg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/microkorg.cpp"]}'::jsonb + ), + ( + 'microman-battle-charge-j-990326-v1-000', + 'Microman Battle Charge (J 990326 V1.000)', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["micrombc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'microtan-65', + 'Microtan 65', + 'Tangerine', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["mt65"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tangerine/microtan.cpp"]}'::jsonb + ), + ( + 'microterm-5510', + 'Microterm 5510', + 'Microterm', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mt5510"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microterm/mt5510.cpp"]}'::jsonb + ), + ( + 'microvax-3100-model-10', + 'MicroVAX 3100 Model 10', + 'Digital Equipment Corporation', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mv3100m10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/uvax3100.cpp"]}'::jsonb + ), + ( + 'microvax-3400', + 'MicroVAX 3400', + 'Digital Equipment Corporation', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mv3400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/uvax3.cpp"]}'::jsonb + ), + ( + 'microvax-3500', + 'MicroVAX 3500', + 'Digital Equipment Corporation', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mv3500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/uvax3.cpp"]}'::jsonb + ), + ( + 'microvax-i', + 'MicroVAX I', + 'Digital Equipment Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["uvax1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/uvax1.cpp"]}'::jsonb + ), + ( + 'microvax-ii', + 'MicroVAX II', + 'Digital Equipment Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["uvax2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/uvax2.cpp"]}'::jsonb + ), + ( + 'microvision', + 'Microvision', + 'Milton Bradley', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["microvsn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["miltonbradley/microvsn.cpp"]}'::jsonb + ), + ( + 'midcoin-juke-box-24cd', + 'Midcoin Juke Box 24CD', + 'Midcoin', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["24cdjuke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midcoin/24cdjuke.cpp"]}'::jsonb + ), + ( + 'midi2cv8', + 'midi2cv8', + 'PAiA Electronics', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["midi2cv8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["paia/midi2cv8.cpp"]}'::jsonb + ), + ( + 'midi2cv8-v-hz', + 'midi2cv8 V/Hz', + 'PAiA Electronics', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["midi2cv8_vhz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["paia/midi2cv8.cpp"]}'::jsonb + ), + ( + 'midnight-landing-germany', + 'Midnight Landing (Germany)', + 'Taito America Corporation', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mlanding"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/mlanding.cpp"]}'::jsonb + ), + ( + 'midnight-resistance', + 'Midnight Resistance', + 'Data East Corporation', + 1989, + array['Midnight Resistance (World, set 1)'], + array['Arcade'], + '{"mame":["midres"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'midnight-run-road-fighter-2-eaa-euro-v1-11', + 'Midnight Run: Road Fighter 2 (EAA, Euro v1.11)', + 'Konami', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["midnrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/zr107.cpp"]}'::jsonb + ), + ( + 'mighty-guy', + 'Mighty Guy', + 'Nichibutsu', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["mightguy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cop01.cpp"]}'::jsonb + ), + ( + 'mighty-monkey', + 'Mighty Monkey', + 'Universal Video Games', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mimonkey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'mighty-warriors-24-1', + 'Mighty Warriors (24/1)', + 'Elettronica Video-Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mwarr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/mwarr.cpp"]}'::jsonb + ), + ( + 'mighty-pang', + 'Mighty! Pang', + 'Mitchell (Capcom license)', + 2000, + array['Mighty! Pang (Europe 001010)'], + array['Arcade'], + '{"mame":["mpang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'mike-tyson-s-punch-out-playchoice-10', + 'Mike Tyson''s Punch-Out!! (PlayChoice-10)', + 'Nintendo', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_miket"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'mikie', + 'Mikie', + 'Konami', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mikie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mikie.cpp"]}'::jsonb + ), + ( + 'mille-miglia-2-great-1000-miles-rally-95-05-24', + 'Mille Miglia 2: Great 1000 Miles Rally (95/05/24)', + 'Kaneko', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["gtmr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'millennium-nuovo-4000', + 'Millennium Nuovo 4000', + 'Sure Milano', + 2000, + array['Millennium Nuovo 4000 (Version 2.0)'], + array['Arcade'], + '{"mame":["mil4000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mil4000.cpp"]}'::jsonb + ), + ( + 'millennium-sun', + 'Millennium Sun', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["millsun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'millipede', + 'Millipede', + 'Atari', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["milliped"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/centiped.cpp"]}'::jsonb + ), + ( + 'minasan-no-okagesamadesu-dai-sugoroku-taikai-mom-001-moh-001', + 'Minasan no Okagesamadesu! Dai Sugoroku Taikai (MOM-001 ~ MOH-001)', + 'Monolith Corp.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["minasan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'mindset-personal-computer', + 'Mindset Personal Computer', + 'Mindset Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mindset"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mindset.cpp"]}'::jsonb + ), + ( + 'minefield', + 'Minefield', + 'Stern Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["minefld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scobra.cpp"]}'::jsonb + ), + ( + 'minesweeper', + 'Minesweeper', + 'Amutech', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["mineswpr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/blockade.cpp"]}'::jsonb + ), + ( + 'ming-xing-100-star-100', + 'Ming Xing 100 (Star 100)', + 'Sang Ho', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["star100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'mingxing-san-que-yi', + 'Mingxing San Que Yi', + 'IGS', + 2003, + array['Mingxing San Que Yi (China, V201CN)'], + array['Arcade'], + '{"mame":["mxsqy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027_023vid.cpp"]}'::jsonb + ), + ( + 'mini-game-player-48-in-1', + 'Mini Game Player 48-in-1', + 'Jungle''s Soft', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gcs2mgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'mini-golf', + 'Mini Golf', + 'Atari', + 1978, + array['Mini Golf (Atari, prototype)', 'Mini Golf (set 1)'], + array['Sports'], + '{"mame":["mgolf","minigolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/mgolf.cpp","midway/balsente.cpp"]}'::jsonb + ), + ( + 'mini-sensory-chess-challenger', + 'Mini Sensory Chess Challenger', + 'Fidelity Electronics', + 1982, + array['Mini Sensory Chess Challenger (MCS-48 version)'], + array['Arcade'], + '{"mame":["miniscc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc6.cpp"]}'::jsonb + ), + ( + 'mini-vaders', + 'Mini Vaders', + 'Taito Corporation', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["minivadr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/minivadr.cpp"]}'::jsonb + ), + ( + 'mini-vegas-4in1', + 'Mini Vegas 4in1', + 'Entertainment Enterprises, Ltd.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mv4in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ltcasino.cpp"]}'::jsonb + ), + ( + 'mini-boy-7', + 'Mini-Boy 7', + 'Bonanza Enterprises, Ltd', + 1983, + array['Mini-Boy 7 (set 1)'], + array['Arcade'], + '{"mame":["miniboy7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miniboy7.cpp"]}'::jsonb + ), + ( + 'minib-computer', + 'MiniB Computer', + 'Sprow', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["minib"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/minib.cpp"]}'::jsonb + ), + ( + 'minicom-iv-1997-08-11', + 'Minicom IV (1997-08-11)', + 'Ultratec', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["minicom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ultratec/minicom.cpp"]}'::jsonb + ), + ( + 'minicom-iv-2002-04-19', + 'Minicom IV (2002-04-19)', + 'Ultratec', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["mcom4_02"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ultratec/minicom.cpp"]}'::jsonb + ), + ( + 'miniforce', + 'miniFORCE', + 'Force Computers', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["miniforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["force/miniforce.cpp"]}'::jsonb + ), + ( + 'minitel-2-nfz-400', + 'Minitel 2 NFZ 400', + 'Philips', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["minitel2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/minitel_2_rpic.cpp"]}'::jsonb + ), + ( + 'minky-monkey', + 'Minky Monkey', + 'Technos Japan / Roller Tron', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mmonkey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'minna-atsumare-dodge-hero', + 'Minna Atsumare! Dodge Hero', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["dodghero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'minna-de-kitaeru-zenno-training', + 'Minna de Kitaeru Zenno Training', + 'Namco', + 2007, + array['Minna de Kitaeru Zenno Training (Ver. 1.50)'], + array['Arcade'], + '{"mame":["minnadk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'minna-ganbare-dash-hero', + 'Minna Ganbare! Dash Hero', + 'Sigma', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["dashhero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'miracle-derby', + 'Miracle Derby', + 'Home Data / Ascot', + 1988, + array['Miracle Derby (Japan)'], + array['Arcade'], + '{"mame":["mirderby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mirderby.cpp"]}'::jsonb + ), + ( + 'miracle-seven-heaven-s-gate', + 'Miracle Seven - Heaven''s Gate', + 'Excellent System', + 1996, + array['Miracle Seven - Heaven''s Gate (Japan, v1.0.2)'], + array['Arcade'], + '{"mame":["mir7hg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'miracle-seven-heaven-s-gate-turbo', + 'Miracle Seven - Heaven''s Gate Turbo', + 'Excellent System', + 1996, + array['Miracle Seven - Heaven''s Gate Turbo (Japan, v2.0.0)'], + array['Arcade'], + '{"mame":["mir7hgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'mirage-dms-8', + 'Mirage DMS-8', + 'Ensoniq', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["enmirage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/enmirage.cpp"]}'::jsonb + ), + ( + 'mirage-world-satellite', + 'Mirage World (satellite)', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["mirworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'mirage-youjuu-mahjongden', + 'Mirage Youjuu Mahjongden', + 'Mitchell', + 1994, + array['Mirage Youjuu Mahjongden (Japan)'], + array['Arcade'], + '{"mame":["mirage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/mirage.cpp"]}'::jsonb + ), + ( + 'mirai-ninja', + 'Mirai Ninja', + 'Namco', + 1988, + array['Mirai Ninja (Japan, set 1)'], + array['Arcade'], + '{"mame":["mirninja"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'mirax', + 'Mirax', + 'Current Technology, Inc.', + 1985, + array['Mirax (set 1)'], + array['Arcade'], + '{"mame":["mirax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mirax.cpp"]}'::jsonb + ), + ( + 'miss-bubble-ii', + 'Miss Bubble II', + 'Alpha Co.', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["missb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/missb2.cpp"]}'::jsonb + ), + ( + 'miss-puzzle', + 'Miss Puzzle', + 'Min Corp.', + 1994, + '{}'::text[], + array['Puzzle'], + '{"mame":["mspuzzle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gumbo.cpp"]}'::jsonb + ), + ( + 'miss-world-96-nude', + 'Miss World ''96 (Nude)', + 'Comad', + 1996, + array['Miss World ''96 (Nude) (C-3000A PCB, set 1)'], + array['Arcade'], + '{"mame":["missw96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'miss-world-2002', + 'Miss World 2002', + 'Comad', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["missw02"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'missile-command', + 'Missile Command', + 'Atari', + 1980, + array['Missile Command (rev 3, A035467-02/04 PCBs)'], + array['Arcade'], + '{"mame":["missile"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/missile.cpp"]}'::jsonb + ), + ( + 'missile-x', + 'Missile-X', + 'Taito', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["missilex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 'missing-in-action', + 'Missing In Action', + 'Vegas', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["miaction"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'mission-660', + 'Mission 660', + 'Wood Place Co. Ltd. (Taito America Corporation license)', + 1986, + array['Mission 660 (US)'], + array['Arcade'], + '{"mame":["m660"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tsamurai.cpp"]}'::jsonb + ), + ( + 'mission-craft', + 'Mission Craft', + 'Sun', + 2000, + array['Mission Craft (version 2.7)'], + array['Arcade'], + '{"mame":["misncrft"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'mission-x', + 'Mission-X', + 'Data East Corporation', + 1982, + array['Mission-X (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cmissnx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'mister-viking-315-5041', + 'Mister Viking (315-5041)', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mrviking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'miuchiz-bratz-cloe', + 'Miuchiz Bratz Cloe', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcb_cloe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miuchiz-bratz-yasmin', + 'Miuchiz Bratz Yasmin', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcb_yasmin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miuchiz-monsterz-creeper', + 'Miuchiz Monsterz Creeper', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcm_creeper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miuchiz-monsterz-inferno', + 'Miuchiz Monsterz Inferno', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcm_inferno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miuchiz-monsterz-roc', + 'Miuchiz Monsterz Roc', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcm_roc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miuchiz-pawz-dash', + 'Miuchiz Pawz Dash', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcp_dash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miuchiz-pawz-spike', + 'Miuchiz Pawz Spike', + 'MGA Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["mcp_spike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miuchiz.cpp"]}'::jsonb + ), + ( + 'miwi2-16-in-1-drum-master', + 'MiWi2 16-in-1 + Drum Master', + 'Macro Winners', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["miwi2_16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'miwi2-7-in-1-sports', + 'MiWi2 7-in-1 Sports', + 'Macro Winners', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["miwi2_7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam', + 'Mobile Suit Gundam', + 'Banpresto / Allumer', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["msgundam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-0079-card-builder-cdv-10010', + 'Mobile Suit Gundam 0079 Card Builder (CDV-10010)', + 'Banpresto', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["gundcb79"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-0083-card-builder-cdv-10030', + 'Mobile Suit Gundam 0083 Card Builder (CDV-10030)', + 'Banpresto', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["gundcb83"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-ex-revue', + 'Mobile Suit Gundam EX Revue', + 'Banpresto', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["gundamex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-final-shooting', + 'Mobile Suit Gundam Final Shooting', + 'Banpresto', + 1995, + array['Mobile Suit Gundam Final Shooting (Japan)'], + array['Arcade'], + '{"mame":["gdfs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-federation-vs-zeon', + 'Mobile Suit Gundam: Federation Vs. Zeon', + 'Banpresto / Capcom', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gundmct"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-federation-vs-zeon-gdl-0001', + 'Mobile Suit Gundam: Federation Vs. Zeon (GDL-0001)', + 'Capcom / Banpresto', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["gundmgd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mobile-suit-gundam-federation-vs-zeon-dx-gdl-0006', + 'Mobile Suit Gundam: Federation Vs. Zeon DX (GDL-0006)', + 'Capcom', + 2001, + array['Mobile Suit Gundam: Federation Vs. Zeon DX (USA, Japan) (GDL-0006)'], + array['Arcade'], + '{"mame":["gundmxgd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mobile-suit-z-gundam-a-e-u-g-vs-titans', + 'Mobile Suit Z-Gundam: A.E.U.G. vs Titans', + 'Capcom / Banpresto', + 2003, + array['Mobile Suit Z-Gundam: A.E.U.G. vs Titans (ZGA1 Ver. A)'], + array['Arcade'], + '{"mame":["zgundm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'mobile-suit-z-gundam-a-e-u-g-vs-titans-dx', + 'Mobile Suit Z-Gundam: A.E.U.G. vs Titans DX', + 'Capcom / Banpresto', + 2004, + array['Mobile Suit Z-Gundam: A.E.U.G. vs Titans DX (ZDX1 Ver. A)'], + array['Arcade'], + '{"mame":["zgundmdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'mocap-boxing', + 'Mocap Boxing', + 'Konami', + 2001, + array['Mocap Boxing (ver AAB)'], + array['Arcade'], + '{"mame":["mocapb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'mocap-golf', + 'Mocap Golf', + 'Konami', + 2001, + array['Mocap Golf (ver EAA:B)'], + array['Sports'], + '{"mame":["mocapglf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'modern-cart', + 'Modern Cart', + 'Subsino', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["modcart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino_kr_h8.cpp"]}'::jsonb + ), + ( + 'moeru-casinyo-gdl-0013', + 'Moeru Casinyo (GDL-0013)', + 'Altron', + 2002, + array['Moeru Casinyo (Japan) (GDL-0013)'], + array['Arcade'], + '{"mame":["moeru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mogis-m320-246-in-1-handheld', + 'MOGIS M320 246 in 1 Handheld', + 'MOGIS', + 2016, + '{}'::text[], + array['Arcade'], + '{"mame":["mog_m320"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'mogu-chan', + 'Mogu Chan', + 'Orca (Eastern Commerce Inc. license)', + 1982, + array['Mogu Chan (bootleg?)'], + array['Arcade'], + '{"mame":["moguchan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/zodiack.cpp"]}'::jsonb + ), + ( + 'mogu-mogu-hammer', + 'Mogu Mogu Hammer', + 'Amuzy Corporation', + 2008, + array['Mogu Mogu Hammer (Japan, ver 1.01)'], + array['Arcade'], + '{"mame":["mmhammer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'mogura-desse', + 'Mogura Desse', + 'Konami', + 1991, + array['Mogura Desse (Japan)'], + array['Arcade'], + '{"mame":["mogura"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mogura.cpp"]}'::jsonb + ), + ( + 'mohican-sun', + 'Mohican Sun', + 'Konami', + null, + array['Mohican Sun (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["mohicans"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'mole-attack', + 'Mole Attack', + 'Yachiyo Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mole"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yachiyo/mole.cpp"]}'::jsonb + ), + ( + 'momoko-120', + 'Momoko 120%', + 'Jaleco', + 1986, + array['Momoko 120% (Japanese text)'], + array['Arcade'], + '{"mame":["momoko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/momoko.cpp"]}'::jsonb + ), + ( + 'monaco-gp', + 'Monaco GP', + 'Sega', + 1980, + array['Monaco GP (set 1)'], + array['Arcade'], + '{"mame":["monacogp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/monacogp.cpp"]}'::jsonb + ), + ( + 'money-in-the-bank', + 'Money In The Bank', + 'Konami', + null, + array['Money In The Bank (NSW, Australia)'], + array['Arcade'], + '{"mame":["moneybnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'money-machine', + 'Money Machine', + 'Amcoe', + 2005, + array['Money Machine (Version 1.7E Dual)'], + array['Arcade'], + '{"mame":["moneymac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'money-money', + 'Money Money', + 'Zaccaria', + 1983, + array['Money Money (set 1)'], + array['Arcade'], + '{"mame":["monymony"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/zaccaria.cpp"]}'::jsonb + ), + ( + 'money-puzzle-exchanger-money-idol-exchanger', + 'Money Puzzle Exchanger / Money Idol Exchanger', + 'Face', + 1997, + '{}'::text[], + array['Puzzle'], + '{"mame":["miexchng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'money-to-burn-english', + 'Money To Burn (English)', + 'WMS', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["mtburn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'mongolfier-new-italian', + 'Mongolfier New (Italian)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mongolnw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'monita-to-rimoko-no-head-on-channel', + 'Monita to Rimoko no Head On Channel', + 'hack', + 1994, + array['Monita to Rimoko no Head On Channel (prototype, hack)'], + array['Arcade'], + '{"mame":["headonch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'monkey-ball-gds-0008', + 'Monkey Ball (GDS-0008)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["monkeyba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'monkey-land', + 'Monkey Land', + 'Astro Corp.', + 2005, + array['Monkey Land (Ver. AA.21.A)'], + array['Arcade'], + '{"mame":["monkeyl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'monkey-magic', + 'Monkey Magic', + 'Nintendo', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["mmagic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/mmagic.cpp"]}'::jsonb + ), + ( + 'monkey-mole-panic', + 'Monkey Mole Panic', + 'Nakanihon / East Technology (Taito license)', + 1992, + array['Monkey Mole Panic (USA)'], + array['Arcade'], + '{"mame":["mmpanic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'monkgomery-monkey', + 'Monkgomery Monkey', + 'Hasbro / Tiger Electronics', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["monkmonk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tiger/bingobear.cpp"]}'::jsonb + ), + ( + 'monkichicchi-no-fuwafuwa-puzzle', + 'Monkichicchi no Fuwafuwa Puzzle', + 'Sunwise', + 1995, + array['Monkichicchi no Fuwafuwa Puzzle (Japan, prototype?)'], + array['Puzzle'], + '{"mame":["monkichi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/sunwise.cpp"]}'::jsonb + ), + ( + 'monomachine-sfx6-mk2', + 'Monomachine SFX6 MK2', + 'Elektron', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["monomach"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["elektron/elektronmono.cpp"]}'::jsonb + ), + ( + 'monon-color', + 'Monon Color', + 'M&D', + 2014, + '{}'::text[], + array['Arcade'], + '{"mame":["mononcol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/monon_color.cpp"]}'::jsonb + ), + ( + 'monster-bash', + 'Monster Bash', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["monsterb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80r.cpp"]}'::jsonb + ), + ( + 'monster-maulers', + 'Monster Maulers', + 'Konami', + 1993, + array['Monster Maulers (ver EAA)'], + array['Arcade'], + '{"mame":["mmaulers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mystwarr.cpp"]}'::jsonb + ), + ( + 'monster-slider', + 'Monster Slider', + 'Visco / Datt Japan', + 1997, + array['Monster Slider (Japan)'], + array['Arcade'], + '{"mame":["mslider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'monster-zero', + 'Monster Zero', + 'Nihon Game', + 1982, + array['Monster Zero (set 1)'], + array['Arcade'], + '{"mame":["monsterz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'monsters-world', + 'Monsters World', + 'bootleg (TCH)', + 1994, + array['Monsters World (bootleg of Super Pang)'], + array['Arcade'], + '{"mame":["mstworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'montana-super-draw-4436-05-u5-0', + 'Montana Super Draw (4436-05, U5-0)', + 'Merit', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mosdraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'monte-carlo', + 'Monte Carlo', + 'Atari', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["montecar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/firetrk.cpp"]}'::jsonb + ), + ( + 'monza-gp', + 'Monza GP', + 'Olympia', + 1981, + array['Monza GP (set 1)'], + array['Arcade'], + '{"mame":["monzagp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympia/monzagp.cpp"]}'::jsonb + ), + ( + 'moog-source', + 'Moog Source', + 'Moog Music', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["moogsource"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["moog/source.cpp"]}'::jsonb + ), + ( + 'moon-alien-part-2', + 'Moon Alien Part 2', + 'Namco / Nichibutsu', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["moonal2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'moon-cresta-nichibutsu', + 'Moon Cresta (Nichibutsu)', + 'Nichibutsu', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["mooncrst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'moon-patrol', + 'Moon Patrol', + 'Irem', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mpatrol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m52.cpp"]}'::jsonb + ), + ( + 'moon-quasar', + 'Moon Quasar', + 'Nichibutsu', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["moonqsr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'moon-raker', + 'Moon Raker', + 'Nichibutsu', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["mraker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'moon-shuttle', + 'Moon Shuttle', + 'Nichibutsu', + 1981, + array['Moon Shuttle (US? set 1)'], + array['Arcade'], + '{"mame":["mshuttle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'moon-war', + 'Moon War', + 'Stern Electronics', + 1981, + array['Moon War (prototype on Frenzy hardware)'], + array['Arcade'], + '{"mame":["moonwarp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/berzerk.cpp"]}'::jsonb + ), + ( + 'moonquake', + 'Moonquake', + 'Sente', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mquake"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/mquake.cpp"]}'::jsonb + ), + ( + 'moonwar', + 'Moonwar', + 'Stern Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["moonwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'mortal-kombat', + 'Mortal Kombat', + 'Midway', + 1992, + array['Mortal Kombat (rev 5.0 T-Unit 03/19/93)'], + array['Fighting'], + '{"mame":["mk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midtunit.cpp"]}'::jsonb + ), + ( + 'mortal-kombat-3', + 'Mortal Kombat 3', + 'Midway', + 1994, + array['Mortal Kombat 3 (rev 2.1)', 'Mortal Kombat 3 (scrambled bootleg of Mega Drive version)', 'Mortal Kombat 3 (SNES bootleg with timer)'], + array['Fighting'], + '{"mame":["mk3","mk3mdb","mk3snes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwunit.cpp","sega/megadriv_acbl.cpp","nintendo/snesb51.cpp"]}'::jsonb + ), + ( + 'mortal-kombat-4', + 'Mortal Kombat 4', + 'Midway', + 1997, + array['Mortal Kombat 4 (version 3.0)'], + array['Fighting'], + '{"mame":["mk4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midzeus.cpp"]}'::jsonb + ), + ( + 'mortal-kombat-ii', + 'Mortal Kombat II', + 'Midway', + 1993, + array['Mortal Kombat II (rev L3.1)'], + array['Fighting'], + '{"mame":["mk2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midtunit.cpp"]}'::jsonb + ), + ( + 'mortal-race', + 'Mortal Race', + 'New Dream Games', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["mortalr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/stlforce.cpp"]}'::jsonb + ), + ( + 'mosaic', + 'Mosaic', + 'Space', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mosaic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mosaic.cpp"]}'::jsonb + ), + ( + 'mosaic-f2-system', + 'Mosaic (F2 System)', + 'F2 System', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["mosaicf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/f-32.cpp"]}'::jsonb + ), + ( + 'moto-frenzy', + 'Moto Frenzy', + 'Atari Games', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["motofren"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarigx2.cpp"]}'::jsonb + ), + ( + 'motocross-go', + 'Motocross Go!', + 'Namco', + 1997, + array['Motocross Go! (World, MG3 Ver. A)'], + array['Arcade'], + '{"mame":["motoxgo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'motogp-mgp1004-na-b', + 'MotoGP (MGP1004-NA-B)', + 'Namco', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["motogp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'motor-raid-twin', + 'Motor Raid - Twin', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["motoraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'motorcycle-30-in-1', + 'Motorcycle 30-in-1', + 'WinFun / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["wfmotor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'motos', + 'Motos', + 'Namco', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["motos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'mouja', + 'Mouja', + 'Etona', + 1996, + array['Mouja (Japan)'], + array['Arcade'], + '{"mame":["mouja"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'mouse-attack', + 'Mouse Attack', + 'ICE', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mouseatk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tickee.cpp"]}'::jsonb + ), + ( + 'mouse-de-click-anpanman-color-pc', + 'Mouse de Click Anpanman Color PC', + 'Bandai', + 2012, + array['Mouse de Click Anpanman Color PC (Japan)'], + array['Arcade'], + '{"mame":["anpnvt12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'mouse-shooter-gogo', + 'Mouse Shooter GoGo', + 'Metro', + 1995, + '{}'::text[], + array['Shooter'], + '{"mame":["msgogo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'mouse-trap', + 'Mouse Trap', + 'Exidy', + 1981, + array['Mouse Trap (version 5)'], + array['Arcade'], + '{"mame":["mtrap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'mouser', + 'Mouser', + 'UPL', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mouser"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/mouser.cpp"]}'::jsonb + ), + ( + 'movie-card', + 'Movie Card', + 'Golden Games / C+M Technics AG', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["moviecrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldngam.cpp"]}'::jsonb + ), + ( + 'mpc-2000xl', + 'MPC 2000XL', + 'Akai / Roger Linn', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mpc2000xl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/mpc2000.cpp"]}'::jsonb + ), + ( + 'mpc3000', + 'MPC3000', + 'Akai / Roger Linn', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mpc3000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/mpc3000.cpp"]}'::jsonb + ), + ( + 'mpc60-midi-production-center', + 'MPC60 MIDI Production Center', + 'Akai Electric', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mpc60"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/mpc60.cpp"]}'::jsonb + ), + ( + 'mpz80', + 'MPZ80', + 'Morrow Designs', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["mpz80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["morrow/mpz80.cpp"]}'::jsonb + ), + ( + 'mr-61-workstation', + 'MR-61 Workstation', + 'Ensoniq', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mr61"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqmr.cpp"]}'::jsonb + ), + ( + 'mr-rack', + 'MR-Rack', + 'Ensoniq', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mrrack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqmr.cpp"]}'::jsonb + ), + ( + 'mr-dig', + 'Mr. Dig', + 'Sun', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mrdig"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'mr-do', + 'Mr. Do!', + 'Universal', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mrdo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/mrdo.cpp"]}'::jsonb + ), + ( + 'mr-do-s-castle', + 'Mr. Do''s Castle', + 'Universal', + 1983, + array['Mr. Do''s Castle (set 1)'], + array['Arcade'], + '{"mame":["docastle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/docastle.cpp"]}'::jsonb + ), + ( + 'mr-do-s-wild-ride', + 'Mr. Do''s Wild Ride', + 'Universal', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dowild"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/docastle.cpp"]}'::jsonb + ), + ( + 'mr-driller', + 'Mr. Driller', + 'Namco', + 1999, + array['Mr. Driller (US, DRI3/VER.A2)'], + array['Arcade'], + '{"mame":["mrdrillr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'mr-driller-2', + 'Mr. Driller 2', + 'Namco', + 2000, + array['Mr. Driller 2 (World, DR22 Ver.A)'], + array['Arcade'], + '{"mame":["mrdrilr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'mr-driller-g', + 'Mr. Driller G', + 'Namco', + 2001, + array['Mr. Driller G (Japan, DRG1 Ver.A)'], + array['Arcade'], + '{"mame":["mrdrilrg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'mr-goemon', + 'Mr. Goemon', + 'Konami', + 1986, + array['Mr. Goemon (Japan)'], + array['Arcade'], + '{"mame":["mrgoemon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gberet.cpp"]}'::jsonb + ), + ( + 'mr-jong', + 'Mr. Jong', + 'Sanritsu / Kiwako', + 1983, + array['Mr. Jong (Japan)'], + array['Arcade'], + '{"mame":["mrjong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/mrjong.cpp"]}'::jsonb + ), + ( + 'mr-kicker-f-e1-16-010-pcb', + 'Mr. Kicker (F-E1-16-010 PCB)', + 'SemiCom', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["mrkicker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'mr-kougar', + 'Mr. Kougar', + 'ATW', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mrkougar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'mr-tnt', + 'Mr. TNT', + 'Techstar (Telko license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mrtnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'mrs-dynamite', + 'Mrs. Dynamite', + 'Universal', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mrsdyna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/sraider.cpp"]}'::jsonb + ), + ( + 'ms-pac-man-twin', + 'Ms Pac Man Twin', + 'hack (Susilu)', + 1992, + array['Ms Pac Man Twin (Argentina, set 1)'], + array['Classic'], + '{"mame":["mspactwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'ms-pac-man', + 'Ms. Pac-Man', + 'Midway / General Computer Corporation', + 1981, + '{}'::text[], + array['Classic'], + '{"mame":["mspacman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'ms-pac-man-galaga-20th-anniversary-class-of-1981-reunion-v1-08', + 'Ms. Pac-Man/Galaga - 20th Anniversary Class of 1981 Reunion (V1.08)', + 'Namco / Cosmodog', + 2000, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["20pacgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/20pacgal.cpp"]}'::jsonb + ), + ( + 'msbc-1', + 'MSBC-1', + 'Omnibyte', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["msbc1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omnibyte/msbc1.cpp"]}'::jsonb + ), + ( + 'mtu-130', + 'MTU-130', + 'Micro Technology Unlimited', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["mtu130"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mtu130.cpp"]}'::jsonb + ), + ( + 'mtx-512', + 'MTX 512', + 'Memotech Ltd', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mtx512"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["memotech/mtx.cpp"]}'::jsonb + ), + ( + 'mu-5', + 'MU-5', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mu5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu5.cpp"]}'::jsonb + ), + ( + 'mu10', + 'MU10', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mu10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu10.cpp"]}'::jsonb + ), + ( + 'mu100', + 'MU100', + 'Yamaha', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["mu100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu100.cpp"]}'::jsonb + ), + ( + 'mu128', + 'MU128', + 'Yamaha', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["mu128"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu128.cpp"]}'::jsonb + ), + ( + 'mu15', + 'MU15', + 'Yamaha', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["mu15"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu15.cpp"]}'::jsonb + ), + ( + 'mu50', + 'MU50', + 'Yamaha', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["mu50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu50.cpp"]}'::jsonb + ), + ( + 'mu500', + 'MU500', + 'Yamaha', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mu500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu2000.cpp"]}'::jsonb + ), + ( + 'mu80', + 'MU80', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["mu80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu80.cpp"]}'::jsonb + ), + ( + 'mu90', + 'MU90', + 'Yamaha', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["mu90"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymmu90.cpp"]}'::jsonb + ), + ( + 'muchi-muchi-pork', + 'Muchi Muchi Pork!', + 'Cave (AMI license)', + 2007, + array['Muchi Muchi Pork! (Japan, 2007/ 4/17 MASTER VER.)'], + array['Arcade'], + '{"mame":["mmpork"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'mug-smashers', + 'Mug Smashers', + 'Electronic Devices Italy / 3D Games England', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mugsmash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/mugsmash.cpp"]}'::jsonb + ), + ( + 'muhanseungbu-semicom-baseball', + 'MuHanSeungBu (SemiCom Baseball)', + 'SemiCom / DMD', + 1997, + array['MuHanSeungBu (SemiCom Baseball) (Korea)'], + array['Sports'], + '{"mame":["semibase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'multi-16-ii-mp-1645', + 'MULTI 16-II MP-1645', + 'Mitsubishi', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["multi16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mitsubishi/multi16.cpp"]}'::jsonb + ), + ( + 'multi-5-new-multi-game-5', + 'Multi 5 / New Multi Game 5', + 'Yun Sung', + 1998, + array['Multi 5 / New Multi Game 5 (set 1)'], + array['Arcade'], + '{"mame":["nmg5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp"]}'::jsonb + ), + ( + 'multi-8-mitsubishi', + 'Multi 8 (Mitsubishi)', + 'Mitsubishi', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["multi8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mitsubishi/multi8.cpp"]}'::jsonb + ), + ( + 'multi-champ', + 'Multi Champ', + 'ESD', + 1999, + array['Multi Champ (World, ver. 9.6)'], + array['Arcade'], + '{"mame":["multchmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'multi-champ-deluxe', + 'Multi Champ Deluxe', + 'ESD', + 2000, + array['Multi Champ Deluxe (ver. 0106, 06/01/2000)'], + array['Arcade'], + '{"mame":["mchampdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'multi-fish-040316', + 'Multi Fish (040316)', + 'Igrosoft', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["mfish_13"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'multi-game', + 'Multi Game', + '', + 1992, + array['Multi Game (set 1)'], + array['Arcade'], + '{"mame":["multigam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/multigam.cpp"]}'::jsonb + ), + ( + 'multi-game-tung-sheng-electronics', + 'Multi Game (Tung Sheng Electronics)', + 'Tung Sheng Electronics', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["multigmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/multigam.cpp"]}'::jsonb + ), + ( + 'multi-game-v398', + 'Multi Game ) (V398?)', + 'EGD', + 1997, + array['Multi Game (Italian, Versione 4.0.3 - 1.5.7, 05-FEV-99(397)) (V398?)'], + array['Arcade'], + '{"mame":["gambl186"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gambl186.cpp"]}'::jsonb + ), + ( + 'multi-game-2', + 'Multi Game 2', + 'Seo Jin', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["multigm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/multigam.cpp"]}'::jsonb + ), + ( + 'multi-game-i-v-ger-2-4', + 'Multi Game I (V.Ger 2.4)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg24"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-i-v-stm-2-7', + 'Multi Game I (V.Stm 2.7)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg24a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-iii', + 'Multi Game III', + 'Seo Jin', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["multigm3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/multigam.cpp"]}'::jsonb + ), + ( + 'multi-game-iii-s-ita-3-5', + 'Multi Game III (S.Ita 3.5)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg35i"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-iii-v-ger-3-5', + 'Multi Game III (V.Ger 3.5)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg3g"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-iii-v-ger-3-64', + 'Multi Game III (V.Ger 3.64)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg3ga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-iii-v-int-3-63', + 'Multi Game III (V.Int 3.63)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-iv-amgsk-va3-85', + 'Multi Game IV (AMGSK_VA3.85)', + 'Amatic Trading GmbH', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg4sk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-iv-v-ger-3-44', + 'Multi Game IV (V.Ger 3.44)', + 'Amatic Trading GmbH', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg4v"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-game-player-gamepad', + 'Multi Game Player Gamepad', + 'Bandai', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["bandgpad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'multi-game-v-amghu-vb3-65', + 'Multi Game V (AMGHU_VB3.65)', + 'Amatic Trading GmbH', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["am_mg5hu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'multi-spin-v1-0', + 'Multi Spin (v1.0)', + 'Excellent System', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["multspin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/es9501.cpp"]}'::jsonb + ), + ( + 'multi-win', + 'Multi Win', + 'Fun World', + 1992, + array['Multi Win (Ver.0167, encrypted)'], + array['Arcade'], + '{"mame":["multiwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'multi-action-6710-13', + 'Multi-Action 6710-13', + 'Merit', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["ma6710"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-6710-21', + 'Multi-Action 6710-21', + 'Merit', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["ma6710a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-6711-14-r0a', + 'Multi-Action 6711-14-R0A', + 'Merit', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ma6711"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-7551-20-r3t', + 'Multi-Action 7551-20-R3T', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma7551t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-7551-21-r2p', + 'Multi-Action 7551-21-R2P', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma7551p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-7556-00-r2', + 'Multi-Action 7556-00-R2', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma7556"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-7558-01-r0', + 'Multi-Action 7558-01-R0', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma7558r0"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-7558-01-r4', + 'Multi-Action 7558-01-R4', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma7558r4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-8340-01-r1', + 'Multi-Action 8340-01-R1', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma8340"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-8350-00-r1', + 'Multi-Action 8350-00-R1', + 'Merit', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ma8350"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multi-action-9800-20-r0', + 'Multi-Action 9800-20-R0', + 'Merit', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ma9800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit3xx.cpp"]}'::jsonb + ), + ( + 'multipede-centipede-millipede-multigame-kit', + 'Multipede (Centipede/Millipede multigame kit)', + 'hack (Braze Technologies)', + 2002, + '{}'::text[], + array['Classic'], + '{"mame":["multiped"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/centiped.cpp"]}'::jsonb + ), + ( + 'multistation-5550', + 'Multistation 5550', + 'International Business Machines', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ibm5550"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/ibm5550.cpp"]}'::jsonb + ), + ( + 'multitel-fe-ap-90-1-1', + 'Multitel Fe Ap 90-1.1', + 'Siemens', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["feap90"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["siemens/bitel.cpp"]}'::jsonb + ), + ( + 'mundial-mondial-italian-french', + 'Mundial/Mondial (Italian/French)', + '', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pokermon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'muroge-monaco', + 'Muroge Monaco', + '', + null, + array['Muroge Monaco (set 1)'], + array['Arcade'], + '{"mame":["murogem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/murogem.cpp"]}'::jsonb + ), + ( + 'musapey-s-choco-marker-gdl-0014a', + 'Musapey''s Choco Marker (GDL-0014A)', + 'Ecole Software', + 2002, + array['Musapey''s Choco Marker (Rev A) (GDL-0014A)'], + array['Arcade'], + '{"mame":["chocomk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'muscle-bomber-duo-ultimate-team-battle', + 'Muscle Bomber Duo: Ultimate Team Battle', + 'Capcom', + 1993, + array['Muscle Bomber Duo: Ultimate Team Battle (World 931206)'], + array['Arcade'], + '{"mame":["mbombrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'muscle-master', + 'Muscle Master', + 'Inter Geo', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["musclem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/musclem.cpp"]}'::jsonb + ), + ( + 'muscle-ranking-kinniku-banzuke-spray-hitter', + 'Muscle Ranking Kinniku Banzuke Spray Hitter', + 'Konami / TBS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["musclhit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigs.cpp"]}'::jsonb + ), + ( + 'mushihime-sama', + 'Mushihime-Sama', + 'Cave (AMI license)', + 2004, + array['Mushihime-Sama (Japan, 2004/10/12.MASTER VER.)'], + array['Arcade'], + '{"mame":["mushisam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'mushihime-sama-futari-black-label-another-ver', + 'Mushihime-Sama Futari Black Label - Another Ver', + 'Cave (AMI license)', + 2007, + array['Mushihime-Sama Futari Black Label - Another Ver (World, 2009/11/27 INTERNATIONAL BL)'], + array['Arcade'], + '{"mame":["futaribl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'mushihime-sama-futari-ver-1-5', + 'Mushihime-Sama Futari Ver 1.5', + 'Cave (AMI license)', + 2006, + array['Mushihime-Sama Futari Ver 1.5 (Japan, 2006/12/8.MASTER VER. 1.54.)'], + array['Arcade'], + '{"mame":["futari15"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetle', + 'Mushiking The King Of Beetle', + 'Sega', + 2004, + array['Mushiking The King Of Beetle (2K3 2ND Ver. 1.003-, World)'], + array['Arcade'], + '{"mame":["mushike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-mushiking-ii-iii-iii', + 'Mushiking The King Of Beetles - Mushiking II / III / III+', + 'Sega', + 2005, + array['Mushiking The King Of Beetles - Mushiking II / III / III+ (Ver. 2.001) (World)'], + array['Arcade'], + '{"mame":["mushik2e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-mushiking-iv-v-vi', + 'Mushiking The King Of Beetles - Mushiking IV / V / VI', + 'Sega', + 2007, + array['Mushiking The King Of Beetles - Mushiking IV / V / VI (World)'], + array['Arcade'], + '{"mame":["mushik4e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-2003-second', + 'Mushiking The King Of Beetles 2003 Second', + 'Sega', + 2003, + array['Mushiking The King Of Beetles 2003 Second (Japan)'], + array['Arcade'], + '{"mame":["mushi2k3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-2004-second', + 'Mushiking The King Of Beetles 2004 Second', + 'Sega', + 2004, + array['Mushiking The King Of Beetles 2004 Second (Japan)'], + array['Arcade'], + '{"mame":["mushi2k4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-2005-first', + 'Mushiking The King Of Beetles 2005 First', + 'Sega', + 2005, + array['Mushiking The King Of Beetles 2005 First (Japan)'], + array['Arcade'], + '{"mame":["mushi2k5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-2006-first', + 'Mushiking The King Of Beetles 2006 First', + 'Sega', + 2006, + array['Mushiking The King Of Beetles 2006 First (Japan)'], + array['Arcade'], + '{"mame":["mushi2k61"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushiking-the-king-of-beetles-2006-second', + 'Mushiking The King Of Beetles 2006 Second', + 'Sega', + 2006, + array['Mushiking The King Of Beetles 2006 Second (Japan)'], + array['Arcade'], + '{"mame":["mushi2k62"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'mushroom-magic-atronic', + 'Mushroom Magic (Atronic)', + 'Atronic', + 2002, + array['Mushroom Magic (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["mushmagi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'music-ball', + 'Music Ball', + 'Tecfri / Desystem S.A.', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["musicbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/speedbal.cpp"]}'::jsonb + ), + ( + 'music-sort', + 'Music Sort', + 'ABM Games', + 1995, + array['Music Sort (ver. 2.02)'], + array['Arcade'], + '{"mame":["musicsrt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'musoubana', + 'Musoubana', + 'Nichibutsu / Yubis', + 1995, + array['Musoubana (Japan)'], + array['Arcade'], + '{"mame":["musobana"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nyanpai.cpp"]}'::jsonb + ), + ( + 'must-shoot-tv', + 'Must Shoot TV', + 'Incredible Technologies', + null, + array['Must Shoot TV (prototype)'], + array['Arcade'], + '{"mame":["shoottv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'mustache-boy', + 'Mustache Boy', + 'Seibu Kaihatsu (March license)', + 1987, + array['Mustache Boy (Japan)'], + array['Arcade'], + '{"mame":["mustache"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/mustache.cpp"]}'::jsonb + ), + ( + 'mutant-fighter', + 'Mutant Fighter', + 'Data East Corporation', + 1991, + array['Mutant Fighter (World ver EM-5)'], + array['Arcade'], + '{"mame":["mutantf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cninja.cpp"]}'::jsonb + ), + ( + 'mutant-night', + 'Mutant Night', + 'UPL', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mnight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/ninjakd2.cpp"]}'::jsonb + ), + ( + 'mutation-nation-ngm-014-ngh-014', + 'Mutation Nation (NGM-014 ~ NGH-014)', + 'SNK', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["mutnat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'mvme-162', + 'MVME-162', + 'Motorola', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mvme162"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/mvme162.cpp"]}'::jsonb + ), + ( + 'mvp-fd1094-317-0143', + 'MVP (FD1094 317-0143)', + 'Sega', + 1989, + array['MVP (set 2, US) (FD1094 317-0143)'], + array['Arcade'], + '{"mame":["mvp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'mvs-temp-subsystem-ver1-4-nazca-development-board', + 'MVS-TEMP ''SubSystem Ver1.4'' (Nazca development board)', + 'Nazca', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mvstemp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'mx5000', + 'MX5000', + 'Konami', + 1987, + array['MX5000 (version U)'], + array['Arcade'], + '{"mame":["mx5000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/flkatck.cpp"]}'::jsonb + ), + ( + 'my-first-leappad', + 'My First LeapPad', + 'LeapFrog', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["mfleappad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/leappad.cpp"]}'::jsonb + ), + ( + 'my-hero', + 'My Hero', + 'Coreland / Sega', + 1985, + array['My Hero (US, not encrypted)'], + array['Arcade'], + '{"mame":["myhero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'my-magic-diary-jd-5000', + 'My Magic Diary (JD-5000)', + 'Casio', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["jd5000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/superjr.cpp"]}'::jsonb + ), + ( + 'my-vision-kh-1000', + 'My Vision (KH-1000)', + 'Nichibutsu', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["myvision"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/myvision.cpp"]}'::jsonb + ), + ( + 'mybrain-3000', + 'MyBrain 3000', + 'Matsushita', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["myb3k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["matsushita/myb3k.cpp"]}'::jsonb + ), + ( + 'mysterious-stones-dr-john-s-adventure', + 'Mysterious Stones - Dr. John''s Adventure', + 'Technos Japan', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mystston"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/mystston.cpp"]}'::jsonb + ), + ( + 'mystery-j-and-b-v1-3g', + 'Mystery J & B (V1.3G)', + 'Dyna', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["mystjb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'mystery-number', + 'Mystery Number', + 'BRL Bologna', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mnumber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'mystic-defender-mega-tech', + 'Mystic Defender (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["mt_mystd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'mystic-marathon', + 'Mystic Marathon', + 'Williams', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["mysticm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'mystic-riders', + 'Mystic Riders', + 'Irem', + 1992, + array['Mystic Riders (World)'], + array['Arcade'], + '{"mame":["mysticri"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'mystic-warriors', + 'Mystic Warriors', + 'Konami', + 1993, + array['Mystic Warriors (ver EAA)'], + array['Arcade'], + '{"mame":["mystwarr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mystwarr.cpp"]}'::jsonb + ), + ( + 'n-sub-upright', + 'N-Sub (upright)', + 'Sega', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["nsub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'n-y-captor', + 'N.Y. Captor', + 'Taito', + 1985, + array['N.Y. Captor (rev 2)'], + array['Arcade'], + '{"mame":["nycaptor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/nycaptor.cpp"]}'::jsonb + ), + ( + 'nabu-pc', + 'NABU PC', + 'NABU', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["nabupc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/nabupc.cpp"]}'::jsonb + ), + ( + 'nagano-winter-olympics-98-gx720-eaa', + 'Nagano Winter Olympics ''98 (GX720 EAA)', + 'Konami', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["nagano98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'nam-1975-ngm-001-ngh-001', + 'NAM-1975 (NGM-001 ~ NGH-001)', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["nam1975"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'namco-classic-collection-vol-1', + 'Namco Classic Collection Vol.1', + 'Namco', + 1995, + '{}'::text[], + array['Classic'], + '{"mame":["ncv1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcond1.cpp"]}'::jsonb + ), + ( + 'namco-classic-collection-vol-2', + 'Namco Classic Collection Vol.2', + 'Namco', + 1996, + '{}'::text[], + array['Classic'], + '{"mame":["ncv2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcond1.cpp"]}'::jsonb + ), + ( + 'namco-stars', + 'Namco Stars', + 'Namco', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["namcostr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'name-club-j-960315-v1-000', + 'Name Club (J 960315 V1.000)', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["nameclub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'name-club-disney-j-980614-v1-000', + 'Name Club Disney (J 980614 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["nclubdis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'name-club-ver-2-j-960315-v1-000', + 'Name Club Ver.2 (J 960315 V1.000)', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["nclubv2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'name-club-ver-3-j-970723-v1-000', + 'Name Club Ver.3 (J 970723 V1.000)', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["nclubv3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'name-club-ver-4-j-971202-v1-000', + 'Name Club Ver.4 (J 971202 V1.000)', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["nclubv4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'name-that-tune-bally-3-31-86', + 'Name That Tune (Bally, 3/31/86)', + 'Bally/Sente', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["nametune"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'namennayo', + 'Namennayo', + 'Cat''s', + 1982, + array['Namennayo (Japan)'], + array['Arcade'], + '{"mame":["namenayo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'naname-de-magic', + 'Naname de Magic!', + 'Atlus', + 1994, + array['Naname de Magic! (Japan)'], + array['Arcade'], + '{"mame":["naname"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/ohmygod.cpp"]}'::jsonb + ), + ( + 'nandemo-seal-iinkai', + 'Nandemo Seal Iinkai', + 'I''Max / Jaleco', + 1997, + array['Nandemo Seal Iinkai (ver 1.3)'], + array['Arcade'], + '{"mame":["nndmseal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'nanos', + 'NANOS', + 'Ingenieurhochschule fur Seefahrt Warnemunde/Wustrow', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["nanos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/nanos.cpp"]}'::jsonb + ), + ( + 'naomi-dimm-firmware-update-for-cf-box-4-01-gds-0042a', + 'Naomi DIMM Firmware Update for CF-BOX (4.01) (GDS-0042A)', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["ndcfboxa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'naomi-dimm-firmware-updater-2-13-gds-0023a', + 'Naomi DIMM Firmware Updater (2.13) (GDS-0023A)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ngdup23a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'naomi-dimm-firmware-updater-2-17-gds-0023c', + 'Naomi DIMM Firmware Updater (2.17) (GDS-0023C)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ngdup23c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'naomi-dimm-firmware-updater-3-17-gds-0023e', + 'Naomi DIMM Firmware Updater (3.17) (GDS-0023E)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ngdup23e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'narc', + 'Narc', + 'Williams', + 1988, + array['Narc (rev 7.00)'], + array['Arcade'], + '{"mame":["narc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'nascar-arcade', + 'NASCAR Arcade', + 'Sega / Electronic Arts', + 2000, + array['NASCAR Arcade (Rev A)'], + array['Arcade'], + '{"mame":["sgnascar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'nascom-1', + 'Nascom 1', + 'Nascom Microcomputers', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["nascom1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nascom/nascom1.cpp"]}'::jsonb + ), + ( + 'nascom-2', + 'Nascom 2', + 'Nascom Microcomputers', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["nascom2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nascom/nascom1.cpp"]}'::jsonb + ), + ( + 'nastar', + 'Nastar', + 'Taito Corporation Japan', + 1988, + array['Nastar (World)'], + array['Arcade'], + '{"mame":["nastar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'nato-defense', + 'NATO Defense', + 'Pacific Novelty', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["natodef"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacific/thief.cpp"]}'::jsonb + ), + ( + 'naughty-boy', + 'Naughty Boy', + 'Jaleco', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["naughtyb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["phoenix/naughtyb.cpp"]}'::jsonb + ), + ( + 'naughty-mouse', + 'Naughty Mouse', + 'Amenip (Palcom Queen River)', + 1981, + array['Naughty Mouse (set 1)'], + array['Arcade'], + '{"mame":["nmouse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'navarone', + 'Navarone', + 'Namco', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["navarone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'nba-hangtime', + 'NBA Hangtime', + 'Midway', + 1996, + array['NBA Hangtime (ver L1.3 10/10/96)'], + array['Sports'], + '{"mame":["nbahangt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwunit.cpp"]}'::jsonb + ), + ( + 'nba-jam', + 'NBA Jam', + 'Midway', + 1993, + array['NBA Jam (rev 3.01 4/07/93)'], + array['Sports'], + '{"mame":["nbajam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midtunit.cpp"]}'::jsonb + ), + ( + 'nba-jam-tournament-edition', + 'NBA Jam Tournament Edition', + 'Midway', + 1994, + array['NBA Jam Tournament Edition (rev 4.0 3/23/94)'], + array['Sports'], + '{"mame":["nbajamte"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midtunit.cpp"]}'::jsonb + ), + ( + 'nba-play-by-play', + 'NBA Play By Play', + 'Konami', + 1998, + array['NBA Play By Play (ver UAB)'], + array['Arcade'], + '{"mame":["nbapbp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hornet.cpp"]}'::jsonb + ), + ( + 'nba-showtime-nba-on-nbc', + 'NBA Showtime NBA on NBC', + 'Midway Games', + 1999, + array['NBA Showtime NBA on NBC (ver 2.0, Apr 25 1999)'], + array['Arcade'], + '{"mame":["nbashowt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'ncaa-basketball-nintendo-super-system', + 'NCAA Basketball (Nintendo Super System)', + 'Sculptured Software Inc.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_ncaa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'nebula-uk', + 'Nebula (UK)', + 'Data East Corporation', + 1981, + array['Nebula (DECO Cassette) (UK)'], + array['Arcade'], + '{"mame":["cnebula"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'nebulas-ray', + 'Nebulas Ray', + 'Namco', + 1994, + array['Nebulas Ray (World, NR2)'], + array['Arcade'], + '{"mame":["nebulray"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'neck-n-neck-v1-2', + 'Neck-N-Neck (v1.2)', + 'Bundra Games / Incredible Technologies', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["neckneck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'need-for-speed-4-cab-link-2-discs', + 'Need for Speed - 4 Cab Link (2 Discs)', + 'Global VR', + 2003, + array['Need for Speed - 4 Cab Link (2 Discs) (v1.0.1 Rev B)'], + array['Arcade'], + '{"mame":["nfs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'need-for-speed-gt-hard-drive-2-discs', + 'Need for Speed GT (Hard Drive+2 Discs)', + 'Global VR', + 2004, + array['Need for Speed GT (Hard Drive+2 Discs) (v1.1.0 Rev C)'], + array['Arcade'], + '{"mame":["nfsgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'need-for-speed-underground-install-2-discs-v1-1', + 'Need For Speed: Underground Install (2 Discs) (v1.1)', + 'Global VR', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["nfsug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/globalvr.cpp"]}'::jsonb + ), + ( + 'nekketsu-grand-prix-gal', + 'Nekketsu Grand-Prix Gal', + 'Nichibutsu', + 1991, + array['Nekketsu Grand-Prix Gal (Japan)'], + array['Arcade'], + '{"mame":["ngpgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj9195.cpp"]}'::jsonb + ), + ( + 'nemesis', + 'Nemesis', + 'Konami', + 1985, + array['Nemesis (ROM version)'], + array['Arcade'], + '{"mame":["nemesis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'nemo', + 'Nemo', + 'Capcom', + 1990, + array['Nemo (World 901130)'], + array['Arcade'], + '{"mame":["nemo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'neo-bomberman', + 'Neo Bomberman', + 'Hudson', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["neobombe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-drift-out-new-technology', + 'Neo Drift Out - New Technology', + 'Visco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["neodrift"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-mania-portugal', + 'Neo Mania (Portugal)', + 'bootleg (Hyper M.A.R.)', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["neomania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neomania.cpp"]}'::jsonb + ), + ( + 'neo-mr-do', + 'Neo Mr. Do!', + 'Visco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["neomrdo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-print-98-neopri-best-44-t4i-3-07', + 'Neo Print - ''98 NeoPri Best 44 (T4i 3.07)', + 'SNK', + 1998, + array['Neo Print - ''98 NeoPri Best 44 (Japan) (T4i 3.07)'], + array['Arcade'], + '{"mame":["98best44"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-chicken-ramen', + 'Neo Print - Chicken Ramen', + 'SNK', + 1996, + array['Neo Print - Chicken Ramen (Japan)'], + array['Arcade'], + '{"mame":["npcramen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-european-version-t4i-2-00', + 'Neo Print - European Version (T4i 2.00)', + 'SNK', + 1997, + array['Neo Print - European Version (World) (T4i 2.00)'], + array['Arcade'], + '{"mame":["npeurver"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-european-version-ii-t4i-3-07', + 'Neo Print - European Version II (T4i 3.07)', + 'SNK', + 1996, + array['Neo Print - European Version II (World) (T4i 3.07)'], + array['Arcade'], + '{"mame":["npeurver2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-fairy-tales-t4i-3-07', + 'Neo Print - Fairy Tales (T4i 3.07)', + 'SNK', + 1999, + array['Neo Print - Fairy Tales (World) (T4i 3.07)'], + array['Arcade'], + '{"mame":["npft"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-fuyu-pri-iitoko-dori-t4i-3-07', + 'Neo Print - Fuyu Pri Iitoko-dori (T4i 3.07)', + 'SNK', + 1999, + array['Neo Print - Fuyu Pri Iitoko-dori (Japan) (T4i 3.07)'], + array['Arcade'], + '{"mame":["npfpit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-millennium-multi-shot-edition-t4i-3-07', + 'Neo Print - Millennium Multi Shot Edition (T4i 3.07)', + 'SNK', + 1999, + array['Neo Print - Millennium Multi Shot Edition (World) (T4i 3.07)'], + array['Arcade'], + '{"mame":["npmillen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-otogibanashi-t4i-3-00', + 'Neo Print - Otogibanashi (T4i 3.00)', + 'SNK', + 1997, + array['Neo Print - Otogibanashi (Japan) (T4i 3.00)'], + array['Arcade'], + '{"mame":["npotogib"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-popeye-t4i-3-04', + 'Neo Print - Popeye (T4i 3.04)', + 'SNK', + 1997, + array['Neo Print - Popeye (Japan) (T4i 3.04)'], + array['Arcade'], + '{"mame":["nppopeye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-senyou-cassette-ver-1', + 'Neo Print - Senyou Cassette Ver. 1', + 'SNK', + 1996, + array['Neo Print - Senyou Cassette Ver. 1 (Japan)'], + array['Arcade'], + '{"mame":["npscv1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-spring-98-t4i-3-07', + 'Neo Print - Spring ''98 (T4i 3.07)', + 'SNK', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["npsprg98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-spring-ver-4-t4f-1-00', + 'Neo Print - Spring Ver. 4 (T4f 1.00)', + 'SNK', + 1997, + array['Neo Print - Spring Ver. 4 (Japan) (T4f 1.00)'], + array['Arcade'], + '{"mame":["npsprgv4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-suizokukan-version-t4i-2-00', + 'Neo Print - Suizokukan Version (T4i 2.00)', + 'SNK', + 1997, + array['Neo Print - Suizokukan Version (Japan) (T4i 2.00)'], + array['Arcade'], + '{"mame":["npskv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-usagi-frame-t4i-3-07', + 'Neo Print - Usagi Frame (T4i 3.07)', + 'SNK', + 1997, + array['Neo Print - Usagi Frame (Japan) (T4i 3.07)'], + array['Arcade'], + '{"mame":["npusagif"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-t2d', + 'Neo Print (T2d)', + 'SNK', + 1996, + array['Neo Print (Japan) (T2d)'], + array['Arcade'], + '{"mame":["neoprint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-sp-super-collection-version', + 'Neo Print SP! Super Collection Version', + 'SNK', + 1997, + array['Neo Print SP! Super Collection Version (Japan)'], + array['Arcade'], + '{"mame":["npspscv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-special-sekai-ryokou-2', + 'Neo Print Special: Sekai Ryokou 2', + 'SNK', + 1996, + array['Neo Print Special: Sekai Ryokou 2 (Japan)'], + array['Arcade'], + '{"mame":["npssr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-print-v1-e1a', + 'Neo Print V1 (E1a)', + 'SNK', + 1996, + array['Neo Print V1 (World) (E1a)'], + array['Arcade'], + '{"mame":["npcartv1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neo-turf-masters-big-tournament-golf', + 'Neo Turf Masters / Big Tournament Golf', + 'Nazca', + 1996, + '{}'::text[], + array['Sports'], + '{"mame":["turfmast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-geo-aes-ntsc', + 'Neo-Geo AES (NTSC)', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["aes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-geo-cdz', + 'Neo-Geo CDZ', + 'SNK', + 1996, + array['Neo-Geo CDZ (US)'], + array['Arcade'], + '{"mame":["neocdz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeocd.cpp"]}'::jsonb + ), + ( + 'neo-geo-cup-98-the-road-to-the-victory', + 'Neo-Geo Cup ''98 - The Road to the Victory', + 'SNK', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["neocup98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-geo-mv-1', + 'Neo-Geo MV-1', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ng_mv1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-geo-mv-2f', + 'Neo-Geo MV-2F', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ng_mv2f"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-geo-mv-4f', + 'Neo-Geo MV-4F', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ng_mv4f"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neo-geo-mv-6f', + 'Neo-Geo MV-6F', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["neogeo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'neogeo-battle-coliseum', + 'NeoGeo Battle Coliseum', + 'Sammy / SNK Playmore', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["ngbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'neogeo-pocket', + 'NeoGeo Pocket', + 'SNK', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["ngp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/ngp.cpp"]}'::jsonb + ), + ( + 'neoprisp-retro-collection', + 'NeopriSP Retro Collection', + 'SNK', + 1996, + array['NeopriSP Retro Collection (Japan)'], + array['Arcade'], + '{"mame":["nprsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/neoprint.cpp"]}'::jsonb + ), + ( + 'neptune-s-pearls-2', + 'Neptune''s Pearls 2', + 'Unidesa/Cirsa', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["neptunp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cirsa/neptunp2.cpp"]}'::jsonb + ), + ( + 'nerae-super-goal-j-981218-v1-000', + 'Nerae! Super Goal (J 981218 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["supgoal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'neraidoula', + 'Neraidoula', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["neraidou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'neratte-chu', + 'Neratte Chu', + 'Seta', + 1996, + array['Neratte Chu (ver. 1.10)'], + array['Arcade'], + '{"mame":["nratechu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'net-wars', + 'Net Wars', + 'Orca (Esco Trading Co license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["netwars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/espial.cpp"]}'::jsonb + ), + ( + 'net-select-horse-racing-victory-furlong', + 'Net@Select: Horse Racing - Victory Furlong', + 'Progress / Sammy', + 2005, + '{}'::text[], + array['Racing'], + '{"mame":["vfurlong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'net-select-salaryman-kintaro', + 'Net@Select: Salaryman Kintaro', + 'Yuki Enterprise / Sammy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["salmankt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'netchuu-pro-yakyuu-2002', + 'Netchuu Pro Yakyuu 2002', + 'Namco', + 2002, + array['Netchuu Pro Yakyuu 2002 (NPY1 Ver. C)'], + array['Arcade'], + '{"mame":["netchu02c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'nettou-gekitou-quiztou', + 'Nettou! Gekitou! Quiztou!!', + 'Namco', + 1993, + array['Nettou! Gekitou! Quiztou!! (Japan)'], + array['Arcade'], + '{"mame":["quiztou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'nevada-french-encrypted', + 'Nevada (French, encrypted)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["nevadafw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'new-2001', + 'New 2001', + 'Subsino', + 2000, + array['New 2001 (Italy, Ver. 200N)'], + array['Arcade'], + '{"mame":["new2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'new-carrera-version-2000', + 'New Carrera - Version 2000', + 'bootleg (J.T.)', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ncarrera"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ncarrera.cpp"]}'::jsonb + ), + ( + 'new-champion-skill-v100n-2000', + 'New Champion Skill (v100n 2000)', + 'IGS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["igs_ncs2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspoker.cpp"]}'::jsonb + ), + ( + 'new-champion-skill-v100n', + 'New Champion Skill (v100n)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["igs_ncs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspoker.cpp"]}'::jsonb + ), + ( + 'new-cherry-96', + 'New Cherry ''96', + 'bootleg', + 1996, + array['New Cherry ''96 (ver 3.7, 1997/01/04, bootleg)'], + array['Arcade'], + '{"mame":["cherry96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'new-cherry-96-special-edition-v3-63-c1-pcb', + 'New Cherry ''96 Special Edition (v3.63, C1 PCB)', + 'Amcoe', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["nc96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'new-cherry-98', + 'New Cherry ''98', + 'bootleg', + 1998, + array['New Cherry ''98 (v4.3 1998/09/07, Gamemax bootleg, set 1)'], + array['Arcade'], + '{"mame":["cherry98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'new-cross-pang', + 'New Cross Pang', + 'F2 System', + 1999, + array['New Cross Pang (set 1)'], + array['Arcade'], + '{"mame":["newxpang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'new-dongmuldongmul', + 'New DongmulDongmul', + 'Hyoja Game', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["ndongmul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'new-dongmuldongmul-2-v1-2n', + 'New DongmulDongmul 2 (V1.2N)', + 'Dyna', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["ndongmul2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'new-fantasia-1995-copyright', + 'New Fantasia (1995 copyright)', + 'Comad & New Japan System', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["newfant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'new-hidden-catch-new-tul-lin-gu-lim-chat-ki-98', + 'New Hidden Catch / New Tul Lin Gu Lim Chat Ki ''98', + 'Eolith', + 1999, + array['New Hidden Catch (World) / New Tul Lin Gu Lim Chat Ki ''98 (Korea) (pcb ver 3.02)'], + array['Arcade'], + '{"mame":["nhidctch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'new-hyperman-3-in-1-with-cookie-and-bibi-and-hyperman', + 'New HyperMan (3-in-1 with Cookie & Bibi & HyperMan)', + 'SemiCom / XESS', + 1998, + array['New HyperMan (3-in-1 with Cookie & Bibi & HyperMan) (set 1)'], + array['Arcade'], + '{"mame":["3in1semi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'new-lucky-8-lines', + 'New Lucky 8 Lines', + 'Wing Co., Ltd.', + 1989, + array['New Lucky 8 Lines (set 1, W-4)'], + array['Arcade'], + '{"mame":["lucky8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'new-lucky-8-lines-new-super-8-lines-w-4', + 'New Lucky 8 Lines / New Super 8 Lines (W-4)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ns8lines"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'new-magic-card', + 'New Magic Card', + 'High Video', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["newmcard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'new-moero-pro-yakyuu-homerun-kyousou', + 'NEW Moero!! Pro Yakyuu Homerun Kyousou', + 'Jaleco', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["nhomerun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/homerun.cpp"]}'::jsonb + ), + ( + 'new-mondo-plus-v0-6i', + 'New Mondo Plus (V0.6I)', + 'Dyna', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["nmondop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'new-rally-x', + 'New Rally X', + 'Namco', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["nrallyx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rallyx.cpp"]}'::jsonb + ), + ( + 'new-sinbad-7', + 'New Sinbad 7', + 'ATW USA, Inc.', + 1983, + array['New Sinbad 7 (set 1)'], + array['Arcade'], + '{"mame":["newsin7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'new-york-joker', + 'New York Joker', + 'High Video', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["nyjoker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'new-york-new-york', + 'New York! New York!', + 'Sigma Enterprises Inc.', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["nyny"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/nyny.cpp"]}'::jsonb + ), + ( + 'new-cherry-plus', + 'New! Cherry Plus', + 'Cadillac Jack', + 1999, + array['New! Cherry Plus (Ver. 3.10)'], + array['Arcade'], + '{"mame":["cjplus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'newbrain-ad', + 'NewBrain AD', + 'Grundy Business Systems Ltd', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["newbrain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["grundy/newbrain.cpp"]}'::jsonb + ), + ( + 'news', + 'News', + 'Poby / Virus', + 1993, + array['News (set 1)'], + array['Arcade'], + '{"mame":["news"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/news.cpp"]}'::jsonb + ), + ( + 'next-computer', + 'NeXT Computer', + 'Next Software Inc', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["next"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["next/next.cpp"]}'::jsonb + ), + ( + 'nextstation', + 'NeXTstation', + 'Next Software Inc', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["nexts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["next/next.cpp"]}'::jsonb + ), + ( + 'nextstation-turbo', + 'NeXTstation Turbo', + 'Next Software Inc', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["nextst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["next/next.cpp"]}'::jsonb + ), + ( + 'nf500a', + 'NF500A', + 'China State-owned 830 Factory', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["nf500a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/h01x.cpp"]}'::jsonb + ), + ( + 'nfl', + 'NFL', + 'Advanced Video Technology', + 1989, + array['NFL (ver 109)'], + array['Arcade'], + '{"mame":["avtnfl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/avt.cpp"]}'::jsonb + ), + ( + 'nfl-blitz', + 'NFL Blitz', + 'Midway Games', + 1997, + array['NFL Blitz (ver 1.21, Dec 5 1997)'], + array['Sports'], + '{"mame":["blitz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'nfl-blitz-99', + 'NFL Blitz ''99', + 'Midway Games', + 1998, + array['NFL Blitz ''99 (ver 1.30, Sep 22 1998)'], + array['Sports'], + '{"mame":["blitz99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'nfl-blitz-2000-gold-edition', + 'NFL Blitz 2000 Gold Edition', + 'Midway Games', + 1999, + array['NFL Blitz 2000 Gold Edition (ver 1.2, Sep 22 1999)'], + array['Sports'], + '{"mame":["blitz2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'nfl-classic-football', + 'NFL Classic Football', + 'Namco / Metro', + 2003, + array['NFL Classic Football (US, NCF3 Ver.A.)'], + array['Sports', 'Classic'], + '{"mame":["nflclsfb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'nfl-football', + 'NFL Football', + 'Bally Midway', + 1983, + '{}'::text[], + array['Sports'], + '{"mame":["nflfoot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'nhl-open-ice-2-on-2-challenge', + 'NHL Open Ice: 2 on 2 Challenge', + 'Midway', + 1995, + array['NHL Open Ice: 2 on 2 Challenge (rev 1.21)'], + array['Arcade'], + '{"mame":["openice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwunit.cpp"]}'::jsonb + ), + ( + 'nibbler', + 'Nibbler', + 'Rock-Ola', + 1982, + array['Nibbler (rev 9, set 1)'], + array['Arcade'], + '{"mame":["nibbler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk6502.cpp"]}'::jsonb + ), + ( + 'night-bunny', + 'Night Bunny', + 'Nichibutsu', + 1984, + array['Night Bunny (Japan 840601 MRN 2-10)'], + array['Arcade'], + '{"mame":["ngtbunny"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nightgal.cpp"]}'::jsonb + ), + ( + 'night-driver', + 'Night Driver', + 'Atari', + 1976, + '{}'::text[], + array['Racing'], + '{"mame":["nitedrvr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/nitedrvr.cpp"]}'::jsonb + ), + ( + 'night-gal', + 'Night Gal', + 'Nichibutsu', + 1984, + array['Night Gal (Japan 840920 AG 1-00)'], + array['Arcade'], + '{"mame":["nightgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nightgal.cpp"]}'::jsonb + ), + ( + 'night-gal-summer', + 'Night Gal Summer', + 'Nichibutsu', + 1985, + array['Night Gal Summer (Japan 850702 NGS 0-01)'], + array['Arcade'], + '{"mame":["ngalsumr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nightgal.cpp"]}'::jsonb + ), + ( + 'night-love', + 'Night Love', + 'Central Denshi', + 1986, + array['Night Love (Japan 860705)'], + array['Arcade'], + '{"mame":["nightlov"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'night-mare-spain', + 'Night Mare (Spain)', + 'E.F.O.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["nightmare"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/nightmare.cpp"]}'::jsonb + ), + ( + 'night-slashers', + 'Night Slashers', + 'Data East Corporation', + 1994, + array['Night Slashers (Korea Rev 1.3, DE-0397-0 PCB)'], + array['Arcade'], + '{"mame":["nslasher"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco32.cpp"]}'::jsonb + ), + ( + 'night-star', + 'Night Star', + 'Data East Corporation', + 1983, + array['Night Star (DECO Cassette) (US) (set 1)'], + array['Arcade'], + '{"mame":["cnightst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'night-stocker-10-6-86', + 'Night Stocker (10/6/86)', + 'Bally/Sente', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["nstocker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'night-striker', + 'Night Striker', + 'Taito Corporation Japan', + 1989, + array['Night Striker (World)'], + array['Arcade'], + '{"mame":["nightstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'night-warriors-darkstalkers-revenge', + 'Night Warriors: Darkstalkers'' Revenge', + 'Capcom', + 1995, + array['Night Warriors: Darkstalkers'' Revenge (Europe 950316)'], + array['Fighting'], + '{"mame":["nwarr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'nightmare-in-the-dark', + 'Nightmare in the Dark', + 'Eleven / Gavaking', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["nitd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'nihonzenkoku-katochan-no-kurukuru-ressya-de-pe', + 'Nihonzenkoku-katochan-no-kurukuru-ressya-de-Pe!', + 'Capcom', + 2004, + array['Nihonzenkoku-katochan-no-kurukuru-ressya-de-Pe! (Ver.1.00, 2004/10/24)'], + array['Arcade'], + '{"mame":["katochan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'nimbus', + 'Nimbus', + 'Research Machines', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["nimbus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rm/rmnimbus.cpp"]}'::jsonb + ), + ( + 'ninja-assault', + 'Ninja Assault', + 'Namco', + 2000, + array['Ninja Assault (World, NJA2 Ver.A)'], + array['Arcade'], + '{"mame":["ninjaslt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'ninja-baseball-bat-man', + 'Ninja Baseball Bat Man', + 'Irem', + 1993, + array['Ninja Baseball Bat Man (World)'], + array['Sports'], + '{"mame":["nbbatman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'ninja-clowns-27-oct-91', + 'Ninja Clowns (27 oct 91)', + 'Strata / Incredible Technologies', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["ninclown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'ninja-combat-ngm-009', + 'Ninja Combat (NGM-009)', + 'Alpha Denshi Co.', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ncombat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ninja-commando', + 'Ninja Commando', + 'Alpha Denshi Co.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ncommand"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ninja-emaki', + 'Ninja Emaki', + 'Nichibutsu', + 1986, + array['Ninja Emaki (US)'], + array['Arcade'], + '{"mame":["ninjemak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/galivan.cpp"]}'::jsonb + ), + ( + 'ninja-gaiden-playchoice-10', + 'Ninja Gaiden (PlayChoice-10)', + 'Tecmo (Nintendo of America license)', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_ngaid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'ninja-gaiden-episode-ii-the-dark-sword-of-chaos-playchoice-10', + 'Ninja Gaiden Episode II: The Dark Sword of Chaos (PlayChoice-10)', + 'Tecmo (Nintendo of America license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_ngai2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'ninja-gaiden-episode-iii-the-ancient-ship-of-doom-playchoice-10', + 'Ninja Gaiden Episode III: The Ancient Ship of Doom (PlayChoice-10)', + 'Tecmo (Nintendo of America license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_ngai3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'ninja-kazan', + 'Ninja Kazan', + 'Jaleco', + 1988, + array['Ninja Kazan (World)'], + array['Arcade'], + '{"mame":["kazan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'ninja-master-s-haoh-ninpo-cho', + 'Ninja Master''s - Haoh-ninpo-cho', + 'ADK / SNK', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["ninjamas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ninja-mission', + 'Ninja Mission', + 'Arcadia Systems', + 1987, + array['Ninja Mission (Arcadia, set 1, V 2.5)'], + array['Arcade'], + '{"mame":["ar_ninj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'ninja-spirit', + 'Ninja Spirit', + 'Irem', + 1988, + array['Ninja Spirit (World)'], + array['Arcade'], + '{"mame":["nspirit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'ninja-kid-ii-ninjakun-ashura-no-shou', + 'Ninja-Kid II / NinjaKun Ashura no Shou', + 'UPL', + 1987, + array['Ninja-Kid II / NinjaKun Ashura no Shou (set 1)'], + array['Arcade'], + '{"mame":["ninjakd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/ninjakd2.cpp"]}'::jsonb + ), + ( + 'ninjakun-majou-no-bouken', + 'Ninjakun Majou no Bouken', + 'UPL (Taito license)', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["ninjakun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/nova2001.cpp"]}'::jsonb + ), + ( + 'nintendo-64-ntsc', + 'Nintendo 64 (NTSC)', + 'Nintendo', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["n64"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/n64.cpp"]}'::jsonb + ), + ( + 'nintendo-world-cup-playchoice-10', + 'Nintendo World Cup (PlayChoice-10)', + 'Technos Japan (Nintendo license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_wcup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'nitro-ball', + 'Nitro Ball', + 'Data East Corporation', + 1992, + array['Nitro Ball (World, set 1)'], + array['Arcade'], + '{"mame":["nitrobal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/rohga.cpp"]}'::jsonb + ), + ( + 'nittere-shiki-mirai-yosou-studio-ntv-future-forecast-studio', + 'Nittere Shiki! Mirai Yosou Studio / NTV Future Forecast Studio', + 'Sega / NTV', + 2000, + array['Nittere Shiki! Mirai Yosou Studio / NTV Future Forecast Studio (Japan, Rev A)'], + array['Arcade'], + '{"mame":["ntvmys"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'nj-pocket-60-in-1-handheld-x-zero-ntsc', + 'NJ Pocket 60-in-1 handheld ''X zero'' (NTSC)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["njp60in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'noah-s-ark', + 'Noah''s Ark', + 'Enter-Tech, Ltd.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["noahsark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tugboat.cpp"]}'::jsonb + ), + ( + 'noboranka', + 'Noboranka', + 'Coreland / Data East Corporation', + 1986, + array['Noboranka (Japan)'], + array['Arcade'], + '{"mame":["nob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'noddy-s-tv-console', + 'Noddy''s TV Console', + 'Lexibook', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["lxnoddy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'nostradamus', + 'Nostradamus', + 'Face', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["nost"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mcatadv.cpp"]}'::jsonb + ), + ( + 'nostromo', + 'Nostromo', + 'bootleg', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["nostromo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'note-chance', + 'Note Chance', + 'Banpresto', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["notechan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/notechan.cpp"]}'::jsonb + ), + ( + 'notetaker', + 'NoteTaker', + 'Xerox', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["notetakr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["xerox/notetaker.cpp"]}'::jsonb + ), + ( + 'noukone-puzzle-takoron-gdl-0042', + 'Noukone Puzzle Takoron (GDL-0042)', + 'Compile Heart', + 2006, + array['Noukone Puzzle Takoron (Japan) (GDL-0042)'], + array['Puzzle'], + '{"mame":["takoron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'nouryoku-koujou-iinkai', + 'Nouryoku Koujou Iinkai', + 'Tecmo', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["nouryoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'nova-2001', + 'Nova 2001', + 'UPL', + 1983, + array['Nova 2001 (Japan)'], + array['Arcade'], + '{"mame":["nova2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/nova2001.cpp"]}'::jsonb + ), + ( + 'novo-play-multi-card-club-card', + 'Novo Play Multi Card / Club Card', + 'Admiral / Novomatic', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["novoplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'ntcash', + 'NtCash', + '', + 1999, + array['NtCash (set 1)'], + array['Arcade'], + '{"mame":["ntcash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'nubsup-mini-game-fan', + 'NubSup Mini Game Fan', + '', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["nubsupmf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'numan-athletics', + 'Numan Athletics', + 'Namco', + 1993, + array['Numan Athletics (World)'], + array['Arcade'], + '{"mame":["numanath"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'number-crash', + 'Number Crash', + 'Hanshin Goraku / Peni', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["numcrash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'number-one', + 'Number One', + 'San Remo Games', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["number1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sanremo.cpp"]}'::jsonb + ), + ( + 'nurete-mitaino-net-idol-hen', + 'Nurete Mitaino... - Net Idol Hen', + 'Nichibutsu/Love Factory', + 2000, + array['Nurete Mitaino... - Net Idol Hen (Japan)'], + array['Arcade'], + '{"mame":["nuretemi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'nuwang-feng-new-queen-bee-new', + 'Nuwang Feng New / Queen Bee New', + 'Subsino', + 2002, + array['Nuwang Feng New / Queen Bee New (China, Ver. 1.10)'], + array['Arcade'], + '{"mame":["queenbn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'nyanpai', + 'Nyanpai', + 'Nichibutsu', + 1996, + array['Nyanpai (Japan)'], + array['Arcade'], + '{"mame":["nyanpai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nyanpai.cpp"]}'::jsonb + ), + ( + 'ob68k1a-single-board-computer', + 'OB68K1A Single Board Computer', + 'Omnibyte', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["ob68k1a"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omnibyte/ob68k1a.cpp"]}'::jsonb + ), + ( + 'ob8', + 'OB8', + 'Oberheim', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ob8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["oberheim/ob8.cpp"]}'::jsonb + ), + ( + 'ocean-paradise', + 'Ocean Paradise', + 'IGS', + 1999, + array['Ocean Paradise (V105US)'], + array['Arcade'], + '{"mame":["oceanpar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'odeon-twister-v1-4', + 'Odeon Twister (v1.4)', + 'CD Express', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["odeontw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'odeon-twister-2-v202-19', + 'Odeon Twister 2 (v202.19)', + 'CD Express', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["odeontw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/cubo.cpp"]}'::jsonb + ), + ( + 'odyssey', + 'Odyssey', + 'Silicon Gaming', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["odyssey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/odyssey.cpp"]}'::jsonb + ), + ( + 'off-road-challenge-v1-63', + 'Off Road Challenge (v1.63)', + 'Midway', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["offroadc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midvunit.cpp"]}'::jsonb + ), + ( + 'off-the-charts', + 'Off The Charts', + 'WMS', + 2000, + array['Off The Charts (Russian)'], + array['Arcade'], + '{"mame":["otchart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'off-the-wall-2-3-player-upright', + 'Off the Wall (2/3-player upright)', + 'Atari Games', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["offtwall"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/offtwall.cpp"]}'::jsonb + ), + ( + 'off-the-wall-sente-10-16-84', + 'Off the Wall (Sente) (10/16/84)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["otwalls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'office-yeoin-cheonha', + 'Office Yeoin Cheonha', + 'Danbi', + 2001, + array['Office Yeoin Cheonha (version 1.2)'], + array['Arcade'], + '{"mame":["officeye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'offroad-thunder', + 'Offroad Thunder', + 'Midway Games', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["offrthnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midqslvr.cpp"]}'::jsonb + ), + ( + 'oh-my-god', + 'Oh My God!', + 'Atlus', + 1993, + array['Oh My God! (Japan)'], + array['Arcade'], + '{"mame":["ohmygod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/ohmygod.cpp"]}'::jsonb + ), + ( + 'oh-paipee', + 'Oh! Paipee', + 'Nichibutsu', + 1989, + array['Oh! Paipee (Japan 890227)'], + array['Arcade'], + '{"mame":["ohpaipee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8900.cpp"]}'::jsonb + ), + ( + 'oinori-daimyoujin-matsuri', + 'Oinori-daimyoujin Matsuri', + 'Sega', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["oinori"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'oishii-puzzle-ha-irimasenka', + 'Oishii Puzzle Ha Irimasenka', + 'Sunsoft / Atlus', + 1993, + '{}'::text[], + array['Puzzle'], + '{"mame":["oisipuzl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'ojamajo-doremi-no-tv-de-magical-cooking', + 'Ojamajo Doremi no TV de Magical Cooking', + 'Bandai', + 2001, + array['Ojamajo Doremi no TV de Magical Cooking (Japan)'], + array['Arcade'], + '{"mame":["bancook"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'ojanko-club', + 'Ojanko Club', + 'V-System Co.', + 1986, + array['Ojanko Club (Japan, Program Ver. 1.3, set 1)'], + array['Arcade'], + '{"mame":["ojankoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/ojankohs.cpp"]}'::jsonb + ), + ( + 'ojanko-high-school', + 'Ojanko High School', + 'V-System Co.', + 1988, + array['Ojanko High School (Japan)'], + array['Arcade'], + '{"mame":["ojankohs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/ojankohs.cpp"]}'::jsonb + ), + ( + 'ojanko-yakata', + 'Ojanko Yakata', + 'V-System Co.', + 1986, + array['Ojanko Yakata (Japan)'], + array['Arcade'], + '{"mame":["ojankoy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/ojankohs.cpp"]}'::jsonb + ), + ( + 'ojanko-yakata-2bankan', + 'Ojanko Yakata 2bankan', + 'V-System Co.', + 1987, + array['Ojanko Yakata 2bankan (Japan)'], + array['Arcade'], + '{"mame":["ojanko2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/ojankohs.cpp"]}'::jsonb + ), + ( + 'ojousan', + 'Ojousan', + 'Nichibutsu', + 1987, + array['Ojousan (Japan 871204)'], + array['Arcade'], + '{"mame":["ojousan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'oli-boo-chu', + 'Oli-Boo-Chu', + 'Irem (GDI license)', + 1981, + array['Oli-Boo-Chu (USA)'], + array['Arcade'], + '{"mame":["olibochu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/olibochu.cpp"]}'::jsonb + ), + ( + 'olivetti-l1-m20', + 'Olivetti L1 M20', + 'Olivetti', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["m20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olivetti/m20.cpp"]}'::jsonb + ), + ( + 'olivetti-l1-m44', + 'Olivetti L1 M44', + 'Olivetti', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["m44"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olivetti/m20.cpp"]}'::jsonb + ), + ( + 'ollie-king-gdx-0007', + 'Ollie King (GDX-0007)', + 'Sega / Amusement Vision', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["ollie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'olympia-boss-d', + 'Olympia BOSS D', + 'Olympia International', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["olybossd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympiaint/olyboss.cpp"]}'::jsonb + ), + ( + 'olympia-olytext-20', + 'Olympia Olytext 20', + 'Olympia International', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["olytext"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympiaint/olytext.cpp"]}'::jsonb + ), + ( + 'olympian-games', + 'Olympian Games', + 'Astro Corp.', + 2005, + array['Olympian Games (Russia)'], + array['Arcade'], + '{"mame":["oligam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'olympic-5', + 'Olympic 5', + 'IGS', + 2005, + array['Olympic 5 (V112US)'], + array['Arcade'], + '{"mame":["olympic5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'olympic-hot-stuff-tas-5-reel-system', + 'Olympic Hot Stuff (TAS 5 Reel System)', + 'Olympic Video Gaming', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hotstuff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/hotstuff.cpp"]}'::jsonb + ), + ( + 'olympus', + 'Olympus', + 'Z Games', + null, + array['Olympus (Z Games, version 10)'], + array['Arcade'], + '{"mame":["olymp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'omar-i', + 'Omar I', + 'Tryom', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["omar1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tryom/omar.cpp"]}'::jsonb + ), + ( + 'omar-ii', + 'Omar II', + 'Tryom', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["omar2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tryom/omar.cpp"]}'::jsonb + ), + ( + 'omatsuri-yasan-ganso-takoyaki', + 'Omatsuri Yasan: Ganso Takoyaki', + 'Cave', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["oygt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/fstgfish.cpp"]}'::jsonb + ), + ( + 'omega', + 'Omega', + 'Nihon System', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["omega"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freekick.cpp"]}'::jsonb + ), + ( + 'omega-fighter', + 'Omega Fighter', + 'UPL', + 1989, + array['Omega Fighter (set 1)'], + array['Arcade'], + '{"mame":["omegaf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/ninjakd2.cpp"]}'::jsonb + ), + ( + 'omega-race', + 'Omega Race', + 'Midway', + 1981, + array['Omega Race (set 1)'], + array['Arcade'], + '{"mame":["omegrace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/omegrace.cpp"]}'::jsonb + ), + ( + 'omotesandou', + 'Omotesandou', + 'Anime Tec', + 1989, + array['Omotesandou (Japan 890215)'], + array['Arcade'], + '{"mame":["omotesnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'ondra', + 'Ondra', + 'Tesla', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["ondrat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tesla/ondra.cpp"]}'::jsonb + ), + ( + 'one-two', + 'One + Two', + 'Barko', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["onetwo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dgrm/onetwo.cpp"]}'::jsonb + ), + ( + 'one-shot-one-kill', + 'One Shot One Kill', + 'Promat', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["oneshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/oneshot.cpp"]}'::jsonb + ), + ( + 'onna-sanshirou-typhoon-gal', + 'Onna Sanshirou - Typhoon Gal', + 'Taito', + 1985, + array['Onna Sanshirou - Typhoon Gal (rev 1)'], + array['Arcade'], + '{"mame":["onna34ro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/flstory.cpp"]}'::jsonb + ), + ( + 'ooparts', + 'OOPArts', + 'hack', + 1992, + array['OOPArts (prototype, joystick hack)'], + array['Arcade'], + '{"mame":["ooparts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'oozumou-the-grand-sumo', + 'Oozumou - The Grand Sumo', + 'Data East Corporation', + 1984, + array['Oozumou - The Grand Sumo (DECO Cassette) (Japan)'], + array['Arcade'], + '{"mame":["coozumou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'opa-opa-mc-8123-317-0042', + 'Opa Opa (MC-8123, 317-0042)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["opaopa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'open-5-cards', + 'Open 5 Cards', + 'MNG', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["op5cards"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'operation-thunder-hurricane', + 'Operation Thunder Hurricane', + 'Konami', + 1997, + array['Operation Thunder Hurricane (ver EAA)'], + array['Arcade'], + '{"mame":["thunderh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gticlub.cpp"]}'::jsonb + ), + ( + 'operation-thunderbolt', + 'Operation Thunderbolt', + 'Taito Corporation Japan', + 1988, + array['Operation Thunderbolt (World, rev 1)'], + array['Arcade'], + '{"mame":["othunder"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/othunder.cpp"]}'::jsonb + ), + ( + 'operation-wolf', + 'Operation Wolf', + 'Taito Corporation Japan', + 1987, + array['Operation Wolf (World, rev 2, set 1)'], + array['Light gun'], + '{"mame":["opwolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/opwolf.cpp"]}'::jsonb + ), + ( + 'operation-wolf-3', + 'Operation Wolf 3', + 'Taito Corporation Japan', + 1994, + array['Operation Wolf 3 (World)'], + array['Light gun'], + '{"mame":["opwolf3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/slapshot.cpp"]}'::jsonb + ), + ( + 'opinion-rx-850', + 'Opinion (RX-850)', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rx850"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'orange-club-maruhi-kagai-jugyou', + 'Orange Club - Maruhi Kagai Jugyou', + 'Daiichi Denshi', + 1988, + array['Orange Club - Maruhi Kagai Jugyou (Japan 880213)'], + array['Arcade'], + '{"mame":["orangec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'orao-102', + 'Orao 102', + 'PEL Varazdin', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["orao"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/orao.cpp"]}'::jsonb + ), + ( + 'orbatak', + 'Orbatak', + 'American Laser Games', + 1995, + array['Orbatak (prototype)'], + array['Arcade'], + '{"mame":["orbatak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + 'orbit', + 'Orbit', + 'Atari', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["orbit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/orbit.cpp"]}'::jsonb + ), + ( + 'orbit-9090-the-dance-planet', + 'Orbit 9090 - The Dance Planet', + 'E-mu Systems', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["orbit9090"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'orbite', + 'Orbite', + 'Model Racing', + null, + array['Orbite (prototype)'], + array['Arcade'], + '{"mame":["orbite"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'orbitron', + 'Orbitron', + 'Comsoft (Signatron USA license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["orbitron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'orbs', + 'Orbs', + 'American Sammy', + 1994, + array['Orbs (10/7/94 prototype?)'], + array['Arcade'], + '{"mame":["orbs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'ordyne', + 'Ordyne', + 'Namco', + 1988, + array['Ordyne (World)'], + array['Arcade'], + '{"mame":["ordyne"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'oric-1', + 'Oric-1', + 'Tangerine', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["oric1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tangerine/oric.cpp"]}'::jsonb + ), + ( + 'oriental-legend-xiyou-shi-e-zhuan', + 'Oriental Legend / Xiyou Shi E Zhuan', + 'IGS', + 1997, + array['Oriental Legend / Xiyou Shi E Zhuan (ver. 126)'], + array['Arcade'], + '{"mame":["orlegend"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'oriental-legend-2', + 'Oriental Legend 2', + 'IGS', + 2007, + array['Oriental Legend 2 (V104, Oversea)'], + array['Arcade'], + '{"mame":["orleg2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm2.cpp"]}'::jsonb + ), + ( + 'oriental-legend-2-xiyou-shi-e-zhuan-qunmoluanwu-oriental-ex', + 'Oriental Legend 2 / Xiyou Shi E Zhuan Qunmoluanwu [Oriental Ex]', + 'IGS', + 2004, + array['Oriental Legend 2 (Korea) / Xiyou Shi E Zhuan Qunmoluanwu (World, China, Japan, Hong Kong, Taiwan) (ver. 205) [Oriental Ex]'], + array['Arcade'], + '{"mame":["oldsplus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'oriental-legend-super-xiyou-shi-e-zhuan-super', + 'Oriental Legend Super / Xiyou Shi E Zhuan Super', + 'IGS', + 1998, + array['Oriental Legend Super / Xiyou Shi E Zhuan Super (ver. 101, Korean Board)'], + array['Arcade'], + '{"mame":["olds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'ormatu-2001', + 'Ormatu 2001', + 'Ormatu Electronics', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ormatu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["arcadia/arcadia.cpp"]}'::jsonb + ), + ( + 'osborne-1', + 'Osborne-1', + 'Osborne', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["osborne1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["osborne/osborne1.cpp"]}'::jsonb + ), + ( + 'osman', + 'Osman', + 'Mitchell', + 1996, + array['Osman (World)'], + array['Arcade'], + '{"mame":["osman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/simpl156.cpp"]}'::jsonb + ), + ( + 'otakara-itadaki-luffy-kaizoku-dan', + 'Otakara Itadaki Luffy Kaizoku-Dan!', + 'Banpresto / Eiichiro Oda / Shueisha - Fuji TV - Toho Animation', + 2001, + array['Otakara Itadaki Luffy Kaizoku-Dan! (Japan, v1.02)'], + array['Arcade'], + '{"mame":["lufykzku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'othello', + 'Othello', + 'Success', + 1984, + array['Othello (version 3.0)'], + array['Arcade'], + '{"mame":["othello"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/othello.cpp"]}'::jsonb + ), + ( + 'othello-derby', + 'Othello Derby', + 'Sunwise', + 1995, + array['Othello Derby (Japan)'], + array['Arcade'], + '{"mame":["othldrby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/sunwise.cpp"]}'::jsonb + ), + ( + 'othello-shiyouyo-j-980423-v1-002', + 'Othello Shiyouyo (J 980423 V1.002)', + 'Success', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["othellos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'otomedius', + 'Otomedius', + 'Konami', + 2007, + array['Otomedius (ver GGG:J:A:A:2008041801)'], + array['Arcade'], + '{"mame":["otomedius"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/otomedius.cpp"]}'::jsonb + ), + ( + 'out-run', + 'Out Run', + 'Sega', + 1986, + array['Out Run (sitdown/upright, Rev B)'], + array['Arcade'], + '{"mame":["outrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaorun.cpp"]}'::jsonb + ), + ( + 'out-run-mega-tech-sms-based', + 'Out Run (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_orun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'out-zone', + 'Out Zone', + 'Toaplan', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["outzone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/toaplan1.cpp"]}'::jsonb + ), + ( + 'outlaw', + 'Outlaw', + 'Atari', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["outlaw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'outrun-2-gdx-0004a', + 'OutRun 2 (GDX-0004A)', + 'Sega', + 2003, + array['OutRun 2 (Rev A) (GDX-0004A)'], + array['Racing'], + '{"mame":["outr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'outrun-2-sp-sdx', + 'OutRun 2 SP SDX', + 'Sega', + 2006, + '{}'::text[], + array['Racing'], + '{"mame":["outr2sdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'outrun-2-special-tours-gdx-0014a', + 'OutRun 2 Special Tours (GDX-0014A)', + 'Sega', + 2004, + array['OutRun 2 Special Tours (Rev A) (GDX-0014A)'], + array['Racing'], + '{"mame":["outr2st"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'outrunners', + 'OutRunners', + 'Sega', + 1992, + array['OutRunners (World)'], + array['Arcade'], + '{"mame":["orunners"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'outtrigger', + 'OutTrigger', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["otrigger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'over-drive', + 'Over Drive', + 'Konami', + 1990, + array['Over Drive (set 1)'], + array['Arcade'], + '{"mame":["overdriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/overdriv.cpp"]}'::jsonb + ), + ( + 'over-rev', + 'Over Rev', + 'Jaleco', + 1997, + array['Over Rev (Model 2C, Revision A)'], + array['Arcade'], + '{"mame":["overrev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'over-top', + 'Over Top', + 'ADK', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["overtop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ozma-wars', + 'Ozma Wars', + 'SNK', + 1979, + array['Ozma Wars (set 1)'], + array['Arcade'], + '{"mame":["ozmawars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'ozon-i', + 'Ozon I', + 'Proma', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ozon1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'p-47-aces', + 'P-47 Aces', + 'Jaleco', + 1995, + array['P-47 Aces (ver 1.1)'], + array['Arcade'], + '{"mame":["p47aces"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'p-47-the-phantom-fighter', + 'P-47: The Phantom Fighter', + 'Jaleco', + 1988, + array['P-47: The Phantom Fighter (World)'], + array['Arcade'], + '{"mame":["p47"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'p-i-m-p-s', + 'P.I.M.P.S.', + 'Henry Colford', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pimps"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/pimps.cpp"]}'::jsonb + ), + ( + 'p-o-w-prisoners-of-war', + 'P.O.W. - Prisoners of War', + 'SNK', + 1988, + array['P.O.W. - Prisoners of War (US version 1)'], + array['Arcade'], + '{"mame":["pow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk68.cpp"]}'::jsonb + ), + ( + 'p-s-attack', + 'P''s Attack', + 'Uniana', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["psattack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/psattack.cpp"]}'::jsonb + ), + ( + 'p112', + 'P112', + 'Dave Brooks', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["p112"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/p112.cpp"]}'::jsonb + ), + ( + 'p5tx-la-i430tx', + 'P5TX-LA (i430TX)', + 'ECS', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["p5txla"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitowlf.cpp"]}'::jsonb + ), + ( + 'pac-and-pal', + 'Pac & Pal', + 'Namco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pacnpal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'pac-carnival', + 'Pac-Carnival', + 'Namco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["paccarn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'pac-eight', + 'Pac-Eight', + 'Namco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["paceight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'pac-land', + 'Pac-Land', + 'Namco', + 1984, + array['Pac-Land (World)'], + array['Arcade'], + '{"mame":["pacland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/pacland.cpp"]}'::jsonb + ), + ( + 'pac-man-25th-anniversary-edition', + 'Pac-Man - 25th Anniversary Edition', + 'Namco / Cosmodog', + 2006, + array['Pac-Man - 25th Anniversary Edition (Rev 3.00)'], + array['Classic'], + '{"mame":["25pacman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/20pacgal.cpp"]}'::jsonb + ), + ( + 'pac-man-arcade-in-a-tin', + 'Pac-Man Arcade in a Tin', + 'Fizz Creations', + 2021, + '{}'::text[], + array['Classic'], + '{"mame":["pactin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'pac-man-battle-royale', + 'Pac-Man Battle Royale', + 'Namco', + 2011, + array['Pac-Man Battle Royale (US, PBR1022-NA-A)'], + array['Classic'], + '{"mame":["pacmanbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'pac-man-plus', + 'Pac-Man Plus', + 'Namco (Midway license)', + 1982, + '{}'::text[], + array['Classic'], + '{"mame":["pacplus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'pac-man-s-arcade-party-pmaam12-na-a', + 'Pac-Man''s Arcade Party (PMAAM12-NA-A)', + 'Namco', + 2010, + '{}'::text[], + array['Classic'], + '{"mame":["pacmanap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'pac-mania', + 'Pac-Mania', + 'Namco', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pacmania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'paca-paca-passion', + 'Paca Paca Passion', + 'Produce / Namco', + 1998, + array['Paca Paca Passion (Japan, PPP1/VER.A2)'], + array['Arcade'], + '{"mame":["pacapp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'paca-paca-passion-2', + 'Paca Paca Passion 2', + 'Produce / Namco', + 1999, + array['Paca Paca Passion 2 (Japan, PKS1/VER.A)'], + array['Arcade'], + '{"mame":["pacapp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'paca-paca-passion-special', + 'Paca Paca Passion Special', + 'Produce / Namco', + 1999, + array['Paca Paca Passion Special (Japan, PSP1/VER.A)'], + array['Arcade'], + '{"mame":["pacappsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'pachifever', + 'Pachifever', + 'Sanki Denshi Kogyo', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pachifev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pachifev.cpp"]}'::jsonb + ), + ( + 'pack-n-bang-bang', + 'Pack''n Bang Bang', + 'Kaneko', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["packbang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'pacman-ball', + 'Pacman BALL', + 'Namco', + 2003, + array['Pacman BALL (PMB2 Ver.A.)'], + array['Arcade'], + '{"mame":["pacmball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'pacman-club-club-lambada-argentina', + 'Pacman Club / Club Lambada (Argentina)', + 'hack (Miky SRL)', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["clubpacm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'paddle-mania', + 'Paddle Mania', + 'SNK', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["paddlema"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k_i.cpp"]}'::jsonb + ), + ( + 'paint-n-puzzle', + 'Paint ''N Puzzle', + 'Century Vending', + 1993, + '{}'::text[], + array['Puzzle'], + '{"mame":["pntnpuzl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pntnpuzl.cpp"]}'::jsonb + ), + ( + 'paint-n-puzzle-super', + 'Paint ''N Puzzle Super', + 'Century Vending / Green Concepts International', + 1994, + '{}'::text[], + array['Puzzle'], + '{"mame":["pntnpuzls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pntnpuzls.cpp"]}'::jsonb + ), + ( + 'pairs-italian-gambling-game', + 'Pairs (Italian gambling game)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pairsh8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'pairs-nichibutsu', + 'Pairs (Nichibutsu)', + 'Nichibutsu', + 1989, + array['Pairs (Nichibutsu) (Japan 890822)'], + array['Arcade'], + '{"mame":["pairsnb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8891.cpp"]}'::jsonb + ), + ( + 'pairs-v1-2-09-30-94', + 'Pairs (V1.2, 09/30/94)', + 'Strata / Incredible Technologies', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pairs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'pairs-love', + 'Pairs Love', + 'Athena / Nihon System', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["pairlove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'pairs-redemption-v1-0-10-25-94', + 'Pairs Redemption (V1.0, 10/25/94)', + 'Strata / Incredible Technologies', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pairsred"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'palamedes', + 'Palamedes', + 'Hot-B Co., Ltd.', + 1990, + array['Palamedes (US)'], + array['Arcade'], + '{"mame":["palamed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'palladium-video-computer-game', + 'Palladium Video-Computer-Game', + 'Neckermann', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["plldium"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["arcadia/arcadia.cpp"]}'::jsonb + ), + ( + 'palm-top-pc-110', + 'Palm Top PC-110', + 'International Business Machines', + 1995, + array['Palm Top PC-110 (Japan)'], + array['Arcade'], + '{"mame":["ptpc110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/ptpc110.cpp"]}'::jsonb + ), + ( + 'panda-train-novamatic-1-7', + 'Panda Train (Novamatic 1.7)', + 'Subsino', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["ptrain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'pandora-s-palace', + 'Pandora''s Palace', + 'Konami / Interlogic', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pandoras"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/pandoras.cpp"]}'::jsonb + ), + ( + 'panel-and-variety-akamaru-q-joushou-dont-r', + 'Panel & Variety Akamaru Q Joushou Dont-R', + 'Dynax (Nakanihon license)', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["akamaru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'pang', + 'Pang', + 'Mitchell', + 1989, + array['Pang (World)'], + array['Arcade'], + '{"mame":["pang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'pang-pang', + 'Pang Pang', + 'Dong Gue La Mi Ltd.', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pangpang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'pang-pom-s', + 'Pang Pom''s', + 'Metro', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["pangpoms"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'pang-3', + 'Pang! 3', + 'Mitchell', + 1995, + array['Pang! 3 (Europe 950601)'], + array['Arcade'], + '{"mame":["pang3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'panic-bomber', + 'Panic Bomber', + 'Eighting / Hudson', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["panicbom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'panic-park', + 'Panic Park', + 'Namco', + 1997, + array['Panic Park (World, PNP2 Ver. A)'], + array['Arcade'], + '{"mame":["panicprk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'panic-road', + 'Panic Road', + 'Seibu Kaihatsu (Taito license)', + 1986, + array['Panic Road (Japan)'], + array['Arcade'], + '{"mame":["panicr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/panicr.cpp"]}'::jsonb + ), + ( + 'panic-street', + 'Panic Street', + 'Kaneko', + 1999, + array['Panic Street (Japan)'], + array['Arcade'], + '{"mame":["panicstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'panikuru-panekuru', + 'Panikuru Panekuru', + 'Namco', + 2002, + array['Panikuru Panekuru (Japan, PPA1 Ver.A)'], + array['Arcade'], + '{"mame":["panikuru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'panther', + 'Panther', + 'Irem', + 1981, + array['Panther (bootleg?)'], + array['Arcade'], + '{"mame":["panther"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/redalert.cpp"]}'::jsonb + ), + ( + 'paparazzi', + 'Paparazzi', + 'Yun Sung', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["paprazzi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsun16.cpp"]}'::jsonb + ), + ( + 'paperboy', + 'Paperboy', + 'Atari Games', + 1984, + array['Paperboy (rev 3)'], + array['Arcade'], + '{"mame":["paperboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy2.cpp"]}'::jsonb + ), + ( + 'paracaidista', + 'Paracaidista', + 'Video Game / Electrogame', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["paraca"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/paracaidista.cpp"]}'::jsonb + ), + ( + 'paradar', + 'Paradar', + 'Videos A A', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["paradar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videosaa.cpp"]}'::jsonb + ), + ( + 'paradise', + 'Paradise', + 'Industrias Brasileiras', + 1994, + array['Paradise (Industrias Brasileiras, Version 1.04)', 'Paradise (set 1)'], + array['Arcade'], + '{"mame":["bingopd","paradise"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp","yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'paradise-2-deluxe', + 'Paradise 2 Deluxe', + 'Yun Sung', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["para2dx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'paradise-deluxe', + 'Paradise Deluxe', + 'Yun Sung', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["paradlx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'parallel-turn', + 'Parallel Turn', + 'Jaleco', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pturn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/pturn.cpp"]}'::jsonb + ), + ( + 'paraparadancing', + 'ParaParaDancing', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["ppd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'paraparaparadise', + 'ParaParaParadise', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["ppp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'paraparaparadise-2nd-mix-jaa', + 'ParaParaParadise 2nd Mix (JAA)', + 'Konami', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ppp2nd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'paraparaparadise-v1-1', + 'ParaParaParadise v1.1', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["ppp11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'parent-jack', + 'Parent Jack', + 'Taito', + 1989, + array['Parent Jack (Japan)'], + array['Arcade'], + '{"mame":["parentj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_o.cpp"]}'::jsonb + ), + ( + 'paris-dakar-31-03-87-spanish', + 'Paris Dakar (31/03/87, Spanish)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_pdak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'parlour-games-mega-tech-sms-based', + 'Parlour Games (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_parlg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'parodius-da-shinwa-kara-owarai-e', + 'Parodius Da!: Shinwa kara Owarai e', + 'Konami', + 1990, + array['Parodius Da!: Shinwa kara Owarai e (World, set 1)'], + array['Arcade'], + '{"mame":["parodius"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/parodius.cpp"]}'::jsonb + ), + ( + 'partner', + 'Partner', + 'Iskra Delta', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["partnerw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/idpartner.cpp"]}'::jsonb + ), + ( + 'party-time-gonta-the-diver-ii-ganbare-gonta-2', + 'Party Time: Gonta the Diver II / Ganbare! Gonta!! 2', + 'Mitchell', + 1995, + array['Party Time: Gonta the Diver II / Ganbare! Gonta!! 2 (World Release)'], + array['Arcade'], + '{"mame":["prtytime"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/simpl156.cpp"]}'::jsonb + ), + ( + 'pasha-pasha-2', + 'Pasha Pasha 2', + 'Dong Sung', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["pasha2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pasha2.cpp"]}'::jsonb + ), + ( + 'pasogo', + 'PasoGo', + 'KOEI', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["pasogo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["koei/pasogo.cpp"]}'::jsonb + ), + ( + 'pasopia-1600', + 'Pasopia 1600', + 'Toshiba', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["paso1600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toshiba/paso1600.cpp"]}'::jsonb + ), + ( + 'pasopia-7-pa7007-raster', + 'Pasopia 7 PA7007 (Raster)', + 'Toshiba', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pasopia7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toshiba/pasopia7.cpp"]}'::jsonb + ), + ( + 'pass', + 'Pass', + 'Oksan', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["pass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pass.cpp"]}'::jsonb + ), + ( + 'passing-shot-fd1094-317-0080', + 'Passing Shot (FD1094 317-0080)', + 'Sega', + 1988, + array['Passing Shot (World, 2 Players) (FD1094 317-0080)'], + array['Arcade'], + '{"mame":["passsht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'pastel-gal', + 'Pastel Gal', + 'Nichibutsu', + 1985, + array['Pastel Gal (Japan 851224)'], + array['Arcade'], + '{"mame":["pastelg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/pastelg.cpp"]}'::jsonb + ), + ( + 'pastel-island', + 'Pastel Island', + 'Visco', + 1993, + array['Pastel Island (Japan, prototype)'], + array['Arcade'], + '{"mame":["pastelis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'pata-pata-panic', + 'Pata Pata Panic', + 'Atlus', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["patapata"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/patapata.cpp"]}'::jsonb + ), + ( + 'patinho-feio', + 'Patinho Feio', + 'Escola Politecnica - Universidade de Sao Paulo', + 1972, + '{}'::text[], + array['Arcade'], + '{"mame":["patinho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["usp/patinhofeio.cpp"]}'::jsonb + ), + ( + 'pb-1000', + 'PB-1000', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pb1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pb1000.cpp"]}'::jsonb + ), + ( + 'pb-2000c', + 'PB-2000c', + 'Casio', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pb2000c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pb1000.cpp"]}'::jsonb + ), + ( + 'pc-100', + 'PC-100', + 'NEC', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pc100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc100.cpp"]}'::jsonb + ), + ( + 'pc-286u', + 'PC-286U', + 'Epson', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc286u"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801_epson.cpp"]}'::jsonb + ), + ( + 'pc-286vs', + 'PC-286VS', + 'Epson', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc286vs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801_epson.cpp"]}'::jsonb + ), + ( + 'pc-386m', + 'PC-386M', + 'Epson', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc386m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801_epson.cpp"]}'::jsonb + ), + ( + 'pc-486mu', + 'PC-486MU', + 'Epson', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pc486mu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801_epson.cpp"]}'::jsonb + ), + ( + 'pc-6001', + 'PC-6001', + 'NEC', + 1981, + array['PC-6001 (Japan)'], + array['Arcade'], + '{"mame":["pc6001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc6001.cpp"]}'::jsonb + ), + ( + 'pc-6001mkii', + 'PC-6001mkII', + 'NEC', + 1983, + array['PC-6001mkII (Japan)'], + array['Arcade'], + '{"mame":["pc6001mk2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc6001.cpp"]}'::jsonb + ), + ( + 'pc-6001mkiisr', + 'PC-6001mkIISR', + 'NEC', + 1984, + array['PC-6001mkIISR (Japan)'], + array['Arcade'], + '{"mame":["pc6001mk2sr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc6001.cpp"]}'::jsonb + ), + ( + 'pc-8001', + 'PC-8001', + 'NEC', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8001.cpp"]}'::jsonb + ), + ( + 'pc-8201', + 'PC-8201', + 'NEC', + 1983, + array['PC-8201 (Japan)'], + array['Arcade'], + '{"mame":["pc8201"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kyocera/kyocera.cpp"]}'::jsonb + ), + ( + 'pc-8401bd', + 'PC-8401BD', + 'NEC', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8401bd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8401a.cpp"]}'::jsonb + ), + ( + 'pc-8500', + 'PC-8500', + 'NEC', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8401a.cpp"]}'::jsonb + ), + ( + 'pc-8801', + 'PC-8801', + 'NEC', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8801"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8801.cpp"]}'::jsonb + ), + ( + 'pc-8801ma', + 'PC-8801MA', + 'NEC', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8801ma"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8801.cpp"]}'::jsonb + ), + ( + 'pc-8801mh', + 'PC-8801MH', + 'NEC', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8801mh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8801.cpp"]}'::jsonb + ), + ( + 'pc-8801mkiisr', + 'PC-8801mkIISR', + 'NEC', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pc8801mk2sr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc8801.cpp"]}'::jsonb + ), + ( + 'pc-88va', + 'PC-88VA', + 'NEC', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc88va"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc88va.cpp"]}'::jsonb + ), + ( + 'pc-9801', + 'PC-9801', + 'NEC', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801bx2-u2-98-fellow', + 'PC-9801BX2/U2 (98 FELLOW)', + 'NEC', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801bx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801dx', + 'PC-9801DX', + 'NEC', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801dx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801fs', + 'PC-9801FS', + 'NEC', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801fs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801rs', + 'PC-9801RS', + 'NEC', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801rs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801rx', + 'PC-9801RX', + 'NEC', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801rx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801us', + 'PC-9801US', + 'NEC', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801us"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801ux', + 'PC-9801UX', + 'NEC', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801ux"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801vm', + 'PC-9801VM', + 'NEC', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801vm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9801vx', + 'PC-9801VX', + 'NEC', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9801vx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9801.cpp"]}'::jsonb + ), + ( + 'pc-9821-98multi', + 'PC-9821 (98MULTi)', + 'NEC', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-9821as-98mate-a', + 'PC-9821As (98MATE A)', + 'NEC', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821as"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-9821ce-98multi-canbe', + 'PC-9821Ce (98MULTi CanBe)', + 'NEC', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821ce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-9821cx3-98multi-canbe', + 'PC-9821Cx3 (98MULTi CanBe)', + 'NEC', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821cx3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-9821nr15-98note-lavie', + 'PC-9821Nr15 (98NOTE Lavie)', + 'NEC', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821nr15"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-9821ra20-98mate-r', + 'PC-9821Ra20 (98MATE R)', + 'NEC', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821ra20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-9821xa16-98mate-x', + 'PC-9821Xa16 (98MATE X)', + 'NEC', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["pc9821xa16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc9821.cpp"]}'::jsonb + ), + ( + 'pc-98ha-handy98', + 'PC-98HA (Handy98)', + 'NEC', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc98ha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc98ha.cpp"]}'::jsonb + ), + ( + 'pc-98lt', + 'PC-98LT', + 'NEC', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc98lt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc98ha.cpp"]}'::jsonb + ), + ( + 'pc-d', + 'PC-D', + 'Siemens', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pcd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["siemens/pcd.cpp"]}'::jsonb + ), + ( + 'pc-fx', + 'PC-FX', + 'NEC', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pcfx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pcfx.cpp"]}'::jsonb + ), + ( + 'pc-h98s-model-8-u8', + 'PC-H98S model 8/U8', + 'NEC', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_h98s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nec/pc_h98.cpp"]}'::jsonb + ), + ( + 'pc-mx2', + 'PC-MX2', + 'Siemens', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pcmx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["siemens/pcmx2.cpp"]}'::jsonb + ), + ( + 'pc-m', + 'PC/M', + 'Mugler/Mathes', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pcm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/pcm.cpp"]}'::jsonb + ), + ( + 'pc532', + 'pc532', + 'George Scolaro', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc532"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/pc532.cpp"]}'::jsonb + ), + ( + 'pcs-30', + 'PCS-30', + 'Yamaha', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pcs30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympcs30.cpp"]}'::jsonb + ), + ( + 'pdp-1', + 'PDP-1', + 'Digital Equipment Corporation', + 1961, + '{}'::text[], + array['Arcade'], + '{"mame":["pdp1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/pdp1.cpp"]}'::jsonb + ), + ( + 'pdp-11-unibus-m9301-ya', + 'PDP-11 [Unibus](M9301-YA)', + 'Digital Equipment Corporation', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pdp11ub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/pdp11.cpp"]}'::jsonb + ), + ( + 'pebble-beach-the-great-shot-jue-950913-v0-990', + 'Pebble Beach - The Great Shot (JUE 950913 V0.990)', + 'T&E Soft', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["pblbeach"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'pecom-32', + 'Pecom 32', + 'Ei Nis (Elektronska Industrija Nis)', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pecom32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/pecom.cpp"]}'::jsonb + ), + ( + 'peek-a-boo', + 'Peek-a-Boo!', + 'Jaleco', + 1993, + array['Peek-a-Boo! (Japan, ver. 1.1)'], + array['Arcade'], + '{"mame":["peekaboo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'peggle-joystick-v1-0', + 'Peggle (Joystick, v1.0)', + 'Strata / Incredible Technologies', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["peggle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'penfan-girls-step1-mild-mind', + 'Penfan Girls - Step1. Mild Mind', + 'Eolith', + 1999, + array['Penfan Girls - Step1. Mild Mind (set 1)'], + array['Arcade'], + '{"mame":["penfan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'pengo', + 'Pengo', + 'Sega', + 1982, + array['Pengo (World, not encrypted, rev A)'], + array['Arcade'], + '{"mame":["pengo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pengo.cpp"]}'::jsonb + ), + ( + 'penguin-brothers', + 'Penguin Brothers', + 'Subsino', + 2000, + array['Penguin Brothers (Japan)'], + array['Arcade'], + '{"mame":["penbros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'penguin-party-tm-01-01-b-2012-01-16', + 'Penguin Party (TM.01.01.B, 2012/01/16)', + 'Astro Corp.', + 2012, + '{}'::text[], + array['Arcade'], + '{"mame":["pengprty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/hummer.cpp"]}'::jsonb + ), + ( + 'penguin-kun-wars', + 'Penguin-Kun Wars', + 'UPL', + 1985, + array['Penguin-Kun Wars (US)'], + array['Arcade'], + '{"mame":["pkunwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/nova2001.cpp"]}'::jsonb + ), + ( + 'penky', + 'Penky', + 'Yun Sung', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["penky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'people-pc', + 'People PC', + 'Olympia International', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["olypeopl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympiaint/peoplepc.cpp"]}'::jsonb + ), + ( + 'pepper-ii', + 'Pepper II', + 'Exidy', + 1982, + array['Pepper II (version 8)'], + array['Arcade'], + '{"mame":["pepper2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'pepsi-man', + 'PEPSI Man', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pepsiman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'percussion-freaks', + 'Percussion Freaks', + 'Konami', + 1999, + array['Percussion Freaks (GQ881 VER. EAB)'], + array['Arcade'], + '{"mame":["pcnfrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-10th-mix', + 'Percussion Freaks 10th Mix', + 'Konami', + 2004, + array['Percussion Freaks 10th Mix (G*D40 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk10m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-2nd-mix', + 'Percussion Freaks 2nd Mix', + 'Konami', + 2000, + array['Percussion Freaks 2nd Mix (GE912 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-3rd-mix', + 'Percussion Freaks 3rd Mix', + 'Konami', + 2000, + array['Percussion Freaks 3rd Mix (G*A23 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk3m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-4th-mix', + 'Percussion Freaks 4th Mix', + 'Konami', + 2001, + array['Percussion Freaks 4th Mix (G*A25 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk4m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-5th-mix', + 'Percussion Freaks 5th Mix', + 'Konami', + 2001, + array['Percussion Freaks 5th Mix (G*B05 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk5m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-6th-mix', + 'Percussion Freaks 6th Mix', + 'Konami', + 2001, + array['Percussion Freaks 6th Mix (G*B16 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk6m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-7th-mix', + 'Percussion Freaks 7th Mix', + 'Konami', + 2002, + array['Percussion Freaks 7th Mix (G*C07 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk7m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-8th-mix', + 'Percussion Freaks 8th Mix', + 'Konami', + 2003, + array['Percussion Freaks 8th Mix (G*C38 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk8m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'percussion-freaks-9th-mix', + 'Percussion Freaks 9th Mix', + 'Konami', + 2003, + array['Percussion Freaks 9th Mix (G*D09 VER. AAA)'], + array['Arcade'], + '{"mame":["pcnfrk9m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'perestroika-girls', + 'Perestroika Girls', + 'Promat', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["perestro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/superqix.cpp"]}'::jsonb + ), + ( + 'perfect-billiard', + 'Perfect Billiard', + 'Nihon System (United Artists license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pbillrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/freekick.cpp"]}'::jsonb + ), + ( + 'perfect-game', + 'Perfect Game', + 'WMS', + 2000, + array['Perfect Game (Russian)'], + array['Arcade'], + '{"mame":["perfect"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'performan', + 'Performan', + 'Toaplan / Data East Corporation', + 1985, + array['Performan (Japan)'], + array['Arcade'], + '{"mame":["perfrman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/slapfght.cpp"]}'::jsonb + ), + ( + 'personal-computer-pasopia-pa7010', + 'Personal Computer Pasopia PA7010', + 'Toshiba', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["pasopia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toshiba/pasopia.cpp"]}'::jsonb + ), + ( + 'personal-speech-system', + 'Personal Speech System', + 'Votrax', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["votrpss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["votrax/votrpss.cpp"]}'::jsonb + ), + ( + 'pet-avenue-my-room-fantasy', + 'Pet Avenue - My room fantasy', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jd367"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/superjr.cpp"]}'::jsonb + ), + ( + 'peter-pack-rat', + 'Peter Pack Rat', + 'Atari Games', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["peterpak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy1.cpp"]}'::jsonb + ), + ( + 'peter-pepper-s-ice-cream-factory', + 'Peter Pepper''s Ice Cream Factory', + 'Data East Corporation', + 1984, + array['Peter Pepper''s Ice Cream Factory (DECO Cassette) (US) (set 1)'], + array['Arcade'], + '{"mame":["cppicf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'phantom-ii', + 'Phantom II', + 'Midway', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["phantom2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'pharaohs-match-arcadia', + 'Pharaohs Match (Arcadia)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_pm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'phasor', + 'Phasor', + 'Linus Åkesson', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["phasor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/lft_phasor.cpp"]}'::jsonb + ), + ( + 'phc-20', + 'PHC-20', + 'Sanyo', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["phc20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanyo/phc20.cpp"]}'::jsonb + ), + ( + 'phc-25', + 'PHC-25', + 'Sanyo', + 1983, + array['PHC-25 (Europe)'], + array['Arcade'], + '{"mame":["phc25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanyo/phc25.cpp"]}'::jsonb + ), + ( + 'phelios', + 'Phelios', + 'Namco', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["phelios"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'philips-p2000t', + 'Philips P2000T', + 'Philips', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["p2000t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/p2000t.cpp"]}'::jsonb + ), + ( + 'phoenix', + 'Phoenix', + 'Amstar', + 1980, + array['Phoenix (Amstar, set 1)'], + array['Arcade'], + '{"mame":["phoenix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["phoenix/phoenix.cpp"]}'::jsonb + ), + ( + 'photo-play-1998-spain', + 'Photo Play 1998 (Spain)', + 'Funworld', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply98sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoply.cpp"]}'::jsonb + ), + ( + 'photo-play-1999-spain', + 'Photo Play 1999 (Spain)', + 'Funworld', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply99sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoply.cpp"]}'::jsonb + ), + ( + 'photo-play-2000-v2-01', + 'Photo Play 2000 (v2.01)', + 'Funworld', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoply.cpp"]}'::jsonb + ), + ( + 'photo-play-2001-italy', + 'Photo Play 2001 (Italy)', + 'Funworld', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply2k1it"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoply.cpp"]}'::jsonb + ), + ( + 'photo-play-2001-spanish', + 'Photo Play 2001 (Spanish)', + 'Funworld', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply2k1sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoplys.cpp"]}'::jsonb + ), + ( + 'photo-play-2002-belgium', + 'Photo Play 2002 (Belgium)', + 'Funworld', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply2k2be"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoply.cpp"]}'::jsonb + ), + ( + 'photo-play-2004', + 'Photo Play 2004', + 'Funworld', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["photoply2k4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoply.cpp"]}'::jsonb + ), + ( + 'photo-play-spirit-xtreme-spanish', + 'Photo Play Spirit Xtreme (Spanish)', + 'Funworld', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["photopsxsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/photoplysx.cpp"]}'::jsonb + ), + ( + 'photo-y2k-chaoji-bi-yi-bi-dajia-lai-zhao-cha-real-and-fake', + 'Photo Y2K / Chaoji Bi Yi Bi / Dajia Lai Zhao Cha / Real and Fake', + 'IGS', + 1999, + array['Photo Y2K / Chaoji Bi Yi Bi / Dajia Lai Zhao Cha / Real and Fake (ver. 105)'], + array['Arcade'], + '{"mame":["photoy2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'photo-y2k-2-chaoji-bi-yi-bi-2-dajia-lai-zhao-cha-2-real-and-fake-2-photo-y2k-m101xx-05-25-', + 'Photo Y2K 2 / Chaoji Bi Yi Bi 2 / Dajia Lai Zhao Cha 2 / Real and Fake 2 Photo Y2K (M101XX 05/25/01 11:02:54)', + 'IGS', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["py2k2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'phozon', + 'Phozon', + 'Namco', + 1983, + array['Phozon (Japan)'], + array['Arcade'], + '{"mame":["phozon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'phraze-craze-6221-40-u5-3a-expanded-questions', + 'Phraze Craze (6221-40, U5-3A, Expanded Questions)', + 'Merit', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["phrcraze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'phunsy', + 'PHUNSY', + 'J.F.P. Philipse', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["phunsy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/phunsy.cpp"]}'::jsonb + ), + ( + 'piaoliang-jinhua', + 'Piaoliang Jinhua', + 'Sealy', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["pljh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_z80.cpp"]}'::jsonb + ), + ( + 'piaoliang-jinhua-2', + 'Piaoliang Jinhua 2', + 'Sealy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pljh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/menghong.cpp"]}'::jsonb + ), + ( + 'pick-n-win', + 'Pick ''n Win', + 'Amcoe', + 2001, + array['Pick ''n Win (Version 2.9E Dual)'], + array['Arcade'], + '{"mame":["pickwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'pickin', + 'Pickin''', + 'Valadon Automation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pickin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["valadon/bagman.cpp"]}'::jsonb + ), + ( + 'picky-talk-super-denshi-techou', + 'Picky Talk - Super Denshi Techou', + 'Casio', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["jd363"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'pico', + 'Pico', + 'Sega', + 1994, + array['Pico (Europe, PAL)'], + array['Arcade'], + '{"mame":["pico"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segapico.cpp"]}'::jsonb + ), + ( + 'picture-magic', + 'Picture Magic', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["segapm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segapm.cpp"]}'::jsonb + ), + ( + 'pied-piper-communicator-1', + 'Pied Piper Communicator 1', + 'STM Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stm/pp.cpp"]}'::jsonb + ), + ( + 'pig-newton', + 'Pig Newton', + 'Sega', + 1983, + array['Pig Newton (version C)'], + array['Arcade'], + '{"mame":["pignewt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80r.cpp"]}'::jsonb + ), + ( + 'pig-out-dine-like-a-swine', + 'Pig Out: Dine Like a Swine!', + 'Leland Corporation', + 1990, + array['Pig Out: Dine Like a Swine! (rev 2?)'], + array['Arcade'], + '{"mame":["pigout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'pigskin-621ad', + 'Pigskin 621AD', + 'Midway', + 1990, + array['Pigskin 621AD (rev 1.1K 8/01/90)'], + array['Arcade'], + '{"mame":["pigskin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr68.cpp"]}'::jsonb + ), + ( + 'pikkari-chance', + 'Pikkari Chance', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["pikkaric"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'pilot-kids', + 'Pilot Kids', + 'Psikyo', + 1998, + array['Pilot Kids (Model 2B, Revision A)'], + array['Arcade'], + '{"mame":["pltkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'pin-ups', + 'Pin Ups', + 'Nazionale Elettronica', + null, + array['Pin Ups (Ver 1.0 Rev A)'], + array['Arcade'], + '{"mame":["pinups"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'pinbo', + 'Pinbo', + 'Jaleco', + 1984, + array['Pinbo (set 1)'], + array['Arcade'], + '{"mame":["pinbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/lasso.cpp"]}'::jsonb + ), + ( + 'pinbot-playchoice-10', + 'PinBot (PlayChoice-10)', + 'Rare (Nintendo of America license)', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_pinbt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'ping-pong-table-tennis-super-ping-pong-pp1100-abl-tv-game', + 'Ping Pong / Table Tennis / Super Ping Pong (PP1100, ABL TV Game)', + 'Advance Bright Ltd', + 2006, + '{}'::text[], + array['Sports'], + '{"mame":["ablping"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'ping-pong-masters-93', + 'Ping Pong Masters ''93', + 'Electronic Devices S.R.L.', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ppmast93"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/ppmast93.cpp"]}'::jsonb + ), + ( + 'ping-pong-king', + 'Ping-Pong King', + 'Taito America Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ppking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/gladiatr.cpp"]}'::jsonb + ), + ( + 'pingu-s-ice-block', + 'Pingu''s Ice Block', + 'Pygos Group / Capcom', + 2006, + array['Pingu''s Ice Block (Ver.1.00 2006/01/27)'], + array['Arcade'], + '{"mame":["pingu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'pink-sweets-ibara-sorekara', + 'Pink Sweets: Ibara Sorekara', + 'Cave (AMI license)', + 2006, + array['Pink Sweets: Ibara Sorekara (Japan, 2006/04/06 MASTER VER....)'], + array['Arcade'], + '{"mame":["pinkswts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'pinkiri-8', + 'Pinkiri 8', + 'Alta', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pinkiri8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/pinkiri8.cpp"]}'::jsonb + ), + ( + 'pioneer-balloon', + 'Pioneer Balloon', + 'SNK', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["pballoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk6502.cpp"]}'::jsonb + ), + ( + 'pipbug', + 'PIPBUG', + 'Signetics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["pipbug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/pipbug.cpp"]}'::jsonb + ), + ( + 'pipe-dream', + 'Pipe Dream', + 'Video System Co.', + 1990, + array['Pipe Dream (World)'], + array['Arcade'], + '{"mame":["pipedrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pipedrm.cpp"]}'::jsonb + ), + ( + 'pipeline', + 'Pipeline', + 'Daehyun Electronics', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pipeline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pipeline.cpp"]}'::jsonb + ), + ( + 'pipi-and-bibis-whoopee', + 'Pipi & Bibis / Whoopee!!', + 'Toaplan', + 1991, + array['Pipi & Bibis / Whoopee!! (Z80 sound cpu, set 1)'], + array['Arcade'], + '{"mame":["pipibibs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/pipibibi.cpp"]}'::jsonb + ), + ( + 'pirate', + 'Pirate', + 'Igrosoft', + 2005, + array['Pirate (060803 World)'], + array['Arcade'], + '{"mame":["pirate_3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'pirate-2', + 'Pirate 2', + 'Igrosoft', + 2006, + array['Pirate 2 (061005 World)'], + array['Arcade'], + '{"mame":["pirate2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'pirate-2001', + 'Pirate 2001', + 'Amcoe', + 2001, + array['Pirate 2001 (Version 2.5E Dual)'], + array['Arcade'], + '{"mame":["pir2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'pirate-2002', + 'Pirate 2002', + 'Amcoe', + 2001, + array['Pirate 2002 (Version 2.0E Dual)'], + array['Arcade'], + '{"mame":["pir2002"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'pirate-ship', + 'Pirate Ship', + 'Konami', + 1995, + array['Pirate Ship (ver UAA)'], + array['Arcade'], + '{"mame":["piratesh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/piratesh.cpp"]}'::jsonb + ), + ( + 'pirate-ship-higemaru', + 'Pirate Ship Higemaru', + 'Capcom', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["higemaru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/higemaru.cpp"]}'::jsonb + ), + ( + 'pirate-treasure', + 'Pirate Treasure', + 'Pacific Polytechnical Corp. (Tong Electronic license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["piratetr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/killcom.cpp"]}'::jsonb + ), + ( + 'pirates', + 'Pirates', + 'NIX', + 1994, + array['Pirates (set 1)'], + array['Arcade'], + '{"mame":["pirates"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nix/pirates.cpp"]}'::jsonb + ), + ( + 'pirati', + 'Pirati', + 'Cin', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["pirati"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'pisces', + 'Pisces', + 'Subelectro', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pisces"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'pistol-daimyo-no-bouken', + 'Pistol Daimyo no Bouken', + 'Namco', + 1990, + array['Pistol Daimyo no Bouken (Japan)'], + array['Arcade'], + '{"mame":["pistoldm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'pit-and-run-f-1-race', + 'Pit & Run - F-1 Race', + 'Taito Corporation', + 1984, + array['Pit & Run - F-1 Race (rev 1)'], + array['Arcade'], + '{"mame":["pitnrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/pitnrun.cpp"]}'::jsonb + ), + ( + 'pit-boss-ii-9221-01c', + 'Pit Boss II (9221-01C)', + 'Merit', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pitboss2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-boss-megastar-9244-00-01-r0b', + 'Pit Boss Megastar (9244-00-01 R0B)', + 'Merit', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pitbossm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-boss-megatouch-9235-00-01-r0a', + 'Pit Boss Megatouch (9235-00-01 R0A)', + 'Merit', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["megat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-boss-megatouch-ii', + 'Pit Boss Megatouch II', + 'Merit', + 1994, + array['Pit Boss Megatouch II (9255-10-01 R0G, Standard version)'], + array['Arcade'], + '{"mame":["megat2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-boss-superstar-9221-10-00b', + 'Pit Boss Superstar (9221-10-00B)', + 'Merit', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pitbosss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-boss-superstar-iii-30', + 'Pit Boss Superstar III 30', + 'Merit', + 1993, + array['Pit Boss Superstar III 30 (9233-00-01 R0B, Standard version)'], + array['Arcade'], + '{"mame":["pbss330"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-boss-supertouch-30-9234-10-01-r0', + 'Pit Boss Supertouch 30 (9234-10-01 R0)', + 'Merit', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pbst30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'pit-fighter', + 'Pit Fighter', + 'Atari Games', + 1990, + array['Pit Fighter (rev 9)'], + array['Arcade'], + '{"mame":["pitfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarig1.cpp"]}'::jsonb + ), + ( + 'pitapat-puzzle', + 'Pitapat Puzzle', + 'F2 System', + 1997, + array['Pitapat Puzzle (set 1)'], + array['Puzzle'], + '{"mame":["pitapat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/crospang.cpp"]}'::jsonb + ), + ( + 'pitfall-ii-315-5093', + 'Pitfall II (315-5093)', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pitfall2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'pittanko-zaurus', + 'Pittanko Zaurus', + 'Konami', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["kzaurus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'pk-rainbow-v-1-5', + 'PK Rainbow (v 1.5)', + 'Boram', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pkrboram"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/boramz80.cpp"]}'::jsonb + ), + ( + 'pk-scramble', + 'PK Scramble', + 'Cosmo Electronics Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["pkscram"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pkscram.cpp"]}'::jsonb + ), + ( + 'pk-tetris-v346i', + 'PK Tetris (v346I)', + 'IGS', + null, + '{}'::text[], + array['Puzzle'], + '{"mame":["pktet346"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspoker.cpp"]}'::jsonb + ), + ( + 'pk-turbo', + 'PK Turbo', + 'Boram', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["tpkboram"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/boramz80.cpp"]}'::jsonb + ), + ( + 'pk-turbo-great-2', + 'PK Turbo Great 2', + 'Boram', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["tpkg2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/boramz80.cpp"]}'::jsonb + ), + ( + 'pk-turbo-special', + 'PK Turbo Special', + 'Boram', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pkts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/boramz80.cpp"]}'::jsonb + ), + ( + 'planet-harriers', + 'Planet Harriers', + 'Sega / Amusement Vision', + 2000, + array['Planet Harriers (Rev A)'], + array['Arcade'], + '{"mame":["pharrier"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'planet-phatt-the-swing-system', + 'Planet Phatt - The Swing System', + 'E-mu Systems', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["phatt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'planet-probe', + 'Planet Probe', + 'Crux / Kyugo?', + 1985, + array['Planet Probe (prototype?)'], + array['Arcade'], + '{"mame":["pprobe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/vastar.cpp"]}'::jsonb + ), + ( + 'platoon', + 'Platoon', + 'Nova?', + 1995, + array['Platoon (V.3.1 US)'], + array['Arcade'], + '{"mame":["aplatoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'play-girls', + 'Play Girls', + 'Hot-B Co., Ltd.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["plgirls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'play-girls-2', + 'Play Girls 2', + 'Hot-B Co., Ltd.', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["plgirls2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'play-sonic-4', + 'Play Sonic 4', + 'SegaSA / Sonic', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["plsonic4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/plsonic4.cpp"]}'::jsonb + ), + ( + 'playball', + 'PlayBall!', + 'Williams', + 1983, + array['PlayBall! (prototype)'], + array['Arcade'], + '{"mame":["playball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'playcenter-champions-tournament-v9-3-epox-hardware', + 'PlayCenter Champions Tournament (v9.3, ''Epox'' hardware)', + 'Recreativos Presas / Undergaming', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["plycntrchtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/playcenter.cpp"]}'::jsonb + ), + ( + 'playcenter-evolution-iii-v14-0-epox-hardware', + 'Playcenter Evolution III (v14.0, ''Epox'' hardware)', + 'Recreativos Presas / Undergaming', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["plycntre3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/playcenter.cpp"]}'::jsonb + ), + ( + 'pleasure-goal-futsal-5-on-5-mini-soccer-ngm-219', + 'Pleasure Goal / Futsal - 5 on 5 Mini Soccer (NGM-219)', + 'Saurus', + 1996, + '{}'::text[], + array['Sports'], + '{"mame":["pgoal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'pleiads-tehkan', + 'Pleiads (Tehkan)', + 'Tehkan', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["pleiads"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["phoenix/phoenix.cpp"]}'::jsonb + ), + ( + 'plet-s-mk-300', + 'Plet''s (MK-300)', + 'Casio', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["plets300"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'plet-s-mk-350', + 'Plet''s (MK-350)', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["plets350"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'plotting', + 'Plotting', + 'Taito Corporation Japan', + 1989, + array['Plotting (World set 1)'], + array['Arcade'], + '{"mame":["plotting"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'pls-1000', + 'PLS-1000', + 'Brainchild', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["pls1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brainchild/pls1000.cpp"]}'::jsonb + ), + ( + 'plug-n-play-25-in-1-dgun-806', + 'Plug ''N'' Play 25-in-1 (DGUN-806)', + 'dreamGEAR', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dgun806"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'plug-n-play-30-in-1-dgun-851', + 'Plug ''N'' Play 30-in-1 (DGUN-851)', + 'dreamGEAR / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dgun851"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'plug-n-play-50-in-1-dgun-853', + 'Plug ''N'' Play 50-in-1 (DGUN-853)', + 'dreamGEAR / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dgun853"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'plump-pop', + 'Plump Pop', + 'Taito Corporation', + 1987, + array['Plump Pop (Japan)'], + array['Arcade'], + '{"mame":["plumppop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'plus-alpha', + 'Plus Alpha', + 'Jaleco', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["plusalph"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'plutus-v100', + 'Plutus (V100)', + 'I.A.M.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["plutus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/39in1.cpp"]}'::jsonb + ), + ( + 'pm-5644-color-pattern-generator', + 'PM 5644 color pattern generator', + 'Philips', + 1989, + array['PM 5644 color pattern generator (PAL 16:9 Colour Circle Rev 2)'], + array['Arcade'], + '{"mame":["pm5644g924b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/patgen.cpp"]}'::jsonb + ), + ( + 'pm-5644-color-pattern-generator-ntsc-4-3-colour-circle', + 'PM 5644 color pattern generator (NTSC 4:3 Colour Circle)', + 'Philips', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pm5644m00"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/patgen.cpp"]}'::jsonb + ), + ( + 'pm-5644-color-pattern-generator-pal-g-4-3-colour-circle', + 'PM 5644 color pattern generator (PAL-G 4:3 Colour Circle)', + 'Philips', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pm5644g00"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/patgen.cpp"]}'::jsonb + ), + ( + 'pm-5644-color-pattern-generator-pal-g-4-3-indian-head', + 'PM 5644 color pattern generator (PAL-G 4:3 Indian Head)', + 'Philips', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pm5644g913"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/patgen.cpp"]}'::jsonb + ), + ( + 'pm-5644-color-pattern-generator-pal-m-4-3-colour-circle', + 'PM 5644 color pattern generator (PAL-M 4:3 Colour Circle)', + 'Philips', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pm5644p00"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/patgen.cpp"]}'::jsonb + ), + ( + 'pm-5644-color-pattern-generator-secam-4-3-colour-circle', + 'PM 5644 color pattern generator (SECAM 4:3 Colour Circle)', + 'Philips', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pm5644l00"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/patgen.cpp"]}'::jsonb + ), + ( + 'pmd-85-1', + 'PMD-85.1', + 'Tesla', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pmd851"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tesla/pmd85.cpp"]}'::jsonb + ), + ( + 'pmi-80', + 'PMI-80', + 'Tesla', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["pmi80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tesla/pmi80.cpp"]}'::jsonb + ), + ( + 'pmp-11', + 'PMP-11', + 'Institut Jožef Stefan', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["pmp11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/pmp11.cpp"]}'::jsonb + ), + ( + 'pn-8800fxb', + 'PN-8800FXB', + 'Brother', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["pn8800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["brother/pn8800fxb.cpp"]}'::jsonb + ), + ( + 'pnickies', + 'Pnickies', + 'Capcom', + 1994, + array['Pnickies (Japan 940608)'], + array['Arcade'], + '{"mame":["pnickj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'pochi-and-nyaa', + 'Pochi and Nyaa', + 'Aiky / Taito', + 2003, + array['Pochi and Nyaa (Ver 2.02)'], + array['Arcade'], + '{"mame":["pnyaa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'pocket-challenge-w', + 'Pocket Challenge W', + 'Benesse Corporation', + null, + array['Pocket Challenge W (Japan)'], + array['Arcade'], + '{"mame":["pockchal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["benesse/pockchal.cpp"]}'::jsonb + ), + ( + 'pocket-gal', + 'Pocket Gal', + 'Data East Corporation', + 1987, + array['Pocket Gal (Japan)'], + array['Arcade'], + '{"mame":["pcktgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/pcktgal.cpp"]}'::jsonb + ), + ( + 'pocket-gal-deluxe', + 'Pocket Gal Deluxe', + 'Data East Corporation', + 1992, + array['Pocket Gal Deluxe (Europe v3.00)'], + array['Arcade'], + '{"mame":["pktgaldx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/pktgaldx.cpp"]}'::jsonb + ), + ( + 'pocket-gals-v-i-p', + 'Pocket Gals V.I.P', + 'ACE International / Afega', + 1996, + array['Pocket Gals V.I.P (set 1)'], + array['Arcade'], + '{"mame":["pgalvip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'pocket-micro-de-luxe', + 'Pocket Micro De-Luxe', + 'Chess King / Intelligent Software', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pmicrodx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chessking/pmicrodx.cpp"]}'::jsonb + ), + ( + 'pocket-racer', + 'Pocket Racer', + 'Namco', + 1996, + array['Pocket Racer (Japan, PKR1/VER.B)'], + array['Arcade'], + '{"mame":["pocketrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'pocketchess-cxg', + 'Pocketchess (CXG)', + 'Newcrest Technology / CXG Systems / Intelligent Chess Software', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pchess"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/pchess.cpp"]}'::jsonb + ), + ( + 'point-blank', + 'Point Blank', + 'Namco', + 1994, + array['Point Blank (World, GN2 Rev B, set 1)'], + array['Arcade'], + '{"mame":["ptblank"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'point-blank-2', + 'Point Blank 2', + 'Namco', + 1999, + array['Point Blank 2 (World, GNB5/VER.A)'], + array['Arcade'], + '{"mame":["ptblank2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'point-blank-3', + 'Point Blank 3', + 'Namco', + 2000, + array['Point Blank 3 (World, GNN2 Ver.A)'], + array['Arcade'], + '{"mame":["ptblank3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'poitto', + 'Poitto!', + 'Metro / Able Corp.', + 1993, + array['Poitto! (Japan revision D)'], + array['Arcade'], + '{"mame":["poitto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'poka-poka-satan', + 'Poka Poka Satan', + 'Kato Seisakujo Co., Ltd.', + 1996, + array['Poka Poka Satan (Japan)'], + array['Arcade'], + '{"mame":["ppsatan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'poke-champ', + 'Poke Champ', + 'D.G.R.M.', + 1995, + array['Poke Champ (set 1)'], + array['Arcade'], + '{"mame":["pokechmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dgrm/pokechmp.cpp"]}'::jsonb + ), + ( + 'pokemon-mini', + 'Pokemon Mini', + 'Nintendo', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["pokemini"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/pokemini.cpp"]}'::jsonb + ), + ( + 'pokoapoka-onsen-de-chu-bijin-3-shimai-ni-kiotsukete', + 'PokoaPoka Onsen de CHU - Bijin 3 Shimai ni Kiotsukete!', + 'Nichibutsu/eic', + 1999, + array['PokoaPoka Onsen de CHU - Bijin 3 Shimai ni Kiotsukete! (Japan)'], + array['Arcade'], + '{"mame":["pokoachu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'pokonyan-balloon', + 'Pokonyan! Balloon', + 'Capcom', + 1994, + array['Pokonyan! Balloon (Japan 940322)'], + array['Arcade'], + '{"mame":["pokonyan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'polaris', + 'Polaris', + 'Taito', + 1980, + array['Polaris (latest version)'], + array['Arcade'], + '{"mame":["polaris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'pole-position', + 'Pole Position', + 'Namco', + 1982, + array['Pole Position (World)'], + array['Arcade'], + '{"mame":["polepos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/polepos.cpp"]}'::jsonb + ), + ( + 'pole-position-ii', + 'Pole Position II', + 'Namco', + 1983, + array['Pole Position II (Japan)'], + array['Arcade'], + '{"mame":["polepos2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/polepos.cpp"]}'::jsonb + ), + ( + 'police-911-2', + 'Police 911 2', + 'Konami', + 2001, + array['Police 911 2 (VER. UAA:B)'], + array['Arcade'], + '{"mame":["p9112"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'police-trainer', + 'Police Trainer', + 'P&P Marketing', + 1996, + array['Police Trainer (Rev 1.3B, Rev 0.3 PCB)'], + array['Arcade'], + '{"mame":["policetr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/policetr.cpp"]}'::jsonb + ), + ( + 'police-trainer-2', + 'Police Trainer 2', + 'Team Play/Phantom Entertainment', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["policet2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/voyager.cpp"]}'::jsonb + ), + ( + 'pollux', + 'Pollux', + 'Dooyong', + 1991, + array['Pollux (set 1)'], + array['Arcade'], + '{"mame":["pollux"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'poly-proteus-standalone', + 'Poly Proteus (Standalone)', + 'Polycorp', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["proteus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/proteus.cpp"]}'::jsonb + ), + ( + 'poly-61-programmable-polyphonic-synthesizer', + 'Poly-61 Programmable Polyphonic Synthesizer', + 'Korg', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["poly61"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/poly61.cpp"]}'::jsonb + ), + ( + 'poly-800-programmable-polyphonic-synthesizer', + 'Poly-800 Programmable Polyphonic Synthesizer', + 'Korg', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["poly800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/poly800.cpp"]}'::jsonb + ), + ( + 'poly-800-programmable-polyphonic-synthesizer-midi-dump-kit', + 'Poly-800 Programmable Polyphonic Synthesizer (MIDI Dump Kit)', + 'Korg', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["poly800mdk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/poly800.cpp"]}'::jsonb + ), + ( + 'poly-800ii-programmable-polyphonic-synthesizer', + 'Poly-800II Programmable Polyphonic Synthesizer', + 'Korg', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["poly800ii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/poly800.cpp"]}'::jsonb + ), + ( + 'poly-88', + 'Poly-88', + 'PolyMorphic Systems', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["poly88"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["poly88/poly88.cpp"]}'::jsonb + ), + ( + 'poly-computer-880', + 'Poly-Computer 880', + 'VEB Polytechnik Karl-Marx-Stadt', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["poly880"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/poly880.cpp"]}'::jsonb + ), + ( + 'poly-net-warriors', + 'Poly-Net Warriors', + 'Konami', + 1993, + array['Poly-Net Warriors (ver JAA)'], + array['Arcade'], + '{"mame":["polynetw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/plygonet.cpp"]}'::jsonb + ), + ( + 'poly-play-zre-pp', + 'Poly-Play (ZRE-PP)', + 'VEB Polytechnik Karl-Marx-Stadt', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["polyplay2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/polyplay.cpp"]}'::jsonb + ), + ( + 'poly-play-zre', + 'Poly-Play (ZRE)', + 'VEB Polytechnik Karl-Marx-Stadt', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["polyplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/polyplay.cpp"]}'::jsonb + ), + ( + 'polygonet-commanders', + 'Polygonet Commanders', + 'Konami', + 1993, + array['Polygonet Commanders (ver UAA)'], + array['Arcade'], + '{"mame":["plygonet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/plygonet.cpp"]}'::jsonb + ), + ( + 'polysix-programmable-polyphonic-synthesizer', + 'Polysix Programmable Polyphonic Synthesizer', + 'Korg', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["polysix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/polysix.cpp"]}'::jsonb + ), + ( + 'pong', + 'Pong', + 'Atari', + 1972, + array['Pong (Rev E)'], + array['Arcade'], + '{"mame":["pong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/pong.cpp"]}'::jsonb + ), + ( + 'pong-boo-2', + 'Pong Boo! 2', + 'OCT', + 1997, + array['Pong Boo! 2 (Ver. 1.31)'], + array['Arcade'], + '{"mame":["pongboo2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'pong-doubles', + 'Pong Doubles', + 'Atari', + 1973, + '{}'::text[], + array['Arcade'], + '{"mame":["pongd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/pong.cpp"]}'::jsonb + ), + ( + 'ponpoko', + 'Ponpoko', + 'Sigma Enterprises Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["ponpoko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'pontoon-fd1094-317-0153', + 'Pontoon (FD1094 317-0153)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pontoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'pontoon-konami', + 'Pontoon (Konami)', + 'Konami', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["kpontoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpontoon.cpp"]}'::jsonb + ), + ( + 'pontoon-tehkan', + 'Pontoon (Tehkan)', + 'Tehkan', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["ponttehk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/lvcards.cpp"]}'::jsonb + ), + ( + 'pool-10', + 'Pool 10', + 'C.M.C.', + 1996, + array['Pool 10 (Italian, set 1)'], + array['Arcade'], + '{"mame":["pool10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'poolshark', + 'Poolshark', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["poolshrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/poolshrk.cpp"]}'::jsonb + ), + ( + 'poosho-poosho', + 'Poosho Poosho', + 'F2 System', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["poosho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'pooyan', + 'Pooyan', + 'Konami', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["pooyan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/pooyan.cpp"]}'::jsonb + ), + ( + 'pop-n-bounce-gapporin', + 'Pop ''n Bounce / Gapporin', + 'Video System Co.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["popbounc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'pop-flamer-protected', + 'Pop Flamer (protected)', + 'Jaleco', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["popflame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["phoenix/naughtyb.cpp"]}'::jsonb + ), + ( + 'pop-shot', + 'Pop Shot', + 'Dynamo', + 1991, + array['Pop Shot (prototype)'], + array['Arcade'], + '{"mame":["popshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/skeetsht.cpp"]}'::jsonb + ), + ( + 'pop-n-music', + 'Pop''n Music', + 'Konami', + 1998, + array['Pop''n Music (ver TA-A, HDD 1.01)'], + array['Rhythm'], + '{"mame":["popn1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'pop-n-music-2', + 'Pop''n Music 2', + 'Konami', + 1999, + array['Pop''n Music 2 (ver JA-A)'], + array['Rhythm'], + '{"mame":["popn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'pop-n-music-3', + 'Pop''n Music 3', + 'Konami', + 1999, + array['Pop''n Music 3 (ver JA-A)'], + array['Rhythm'], + '{"mame":["popn3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'pop-n-music-4', + 'Pop''n Music 4', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["popn4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-5', + 'Pop''n Music 5', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["popn5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-6', + 'Pop''n Music 6', + 'Konami', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["popn6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-7', + 'Pop''n Music 7', + 'Konami', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["popn7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-8', + 'Pop''n Music 8', + 'Konami', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["popn8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-9', + 'Pop''n Music 9', + 'Konami', + 2003, + array['Pop''n Music 9 (ver JAB)'], + array['Rhythm'], + '{"mame":["popn9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython.cpp"]}'::jsonb + ), + ( + 'pop-n-music-animelo', + 'Pop''n Music Animelo', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["popnanm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-animelo-2-jac', + 'Pop''n Music Animelo 2 (JAC)', + 'Konami', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["popnanm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-music-mickey-tunes', + 'Pop''n Music Mickey Tunes', + 'Konami', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["popnmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/firebeat.cpp"]}'::jsonb + ), + ( + 'pop-n-pop', + 'Pop''n Pop', + 'Taito Corporation', + 1997, + array['Pop''n Pop (Ver 2.07O 1998/02/09)'], + array['Rhythm'], + '{"mame":["popnpop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'pop-n-run-the-videogame', + 'Pop''n Run - The Videogame', + 'Seibu Kaihatsu / Yukai Tsukai', + 1987, + array['Pop''n Run - The Videogame (set 1)'], + array['Rhythm'], + '{"mame":["popnrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/deadang.cpp"]}'::jsonb + ), + ( + 'pop-n-stage-ex', + 'Pop''n Stage EX', + 'Konami', + 1999, + array['Pop''n Stage EX (ver JB-A)'], + array['Rhythm'], + '{"mame":["popnstex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/djmain.cpp"]}'::jsonb + ), + ( + 'pop-s-pop-s', + 'Pop''s Pop''s', + 'Afega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["popspops"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'popeye', + 'Popeye', + 'Nintendo', + 1982, + array['Popeye (revision D)'], + array['Arcade'], + '{"mame":["popeye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/popeye.cpp"]}'::jsonb + ), + ( + 'popo-bear', + 'PoPo Bear', + 'BMC', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["popobear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/popobear.cpp"]}'::jsonb + ), + ( + 'popper', + 'Popper', + 'Omori Electric Co., Ltd.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["popper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omori/popper.cpp"]}'::jsonb + ), + ( + 'porky', + 'Porky', + 'Shinkai Inc. (Magic Electronics Inc. license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["porky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'portable-game-station-268-in-1', + 'Portable Game Station 268-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pgs268"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'portasound-pss-170', + 'PortaSound PSS-170', + 'Yamaha', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pss170"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympss170.cpp"]}'::jsonb + ), + ( + 'portatone-psr-11', + 'Portatone PSR-11', + 'Yamaha', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["psr11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr11.cpp"]}'::jsonb + ), + ( + 'portfolio', + 'Portfolio', + 'Atari', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pofo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/pofo.cpp"]}'::jsonb + ), + ( + 'portraits', + 'Portraits', + 'Olympia', + 1983, + array['Portraits (set 1)'], + array['Arcade'], + '{"mame":["portrait"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympia/portrait.cpp"]}'::jsonb + ), + ( + 'positron-9000', + 'Positron 9000', + 'Positron Computers Ltd', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["positron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["positron/positron.cpp"]}'::jsonb + ), + ( + 'post-mupid-c2a2', + 'Post-Mupid C2A2', + 'mupid', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["mupid2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mupid/mupid2.cpp"]}'::jsonb + ), + ( + 'pot-game-italian', + 'Pot Game (Italian)', + 'C.M.C.', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["potgame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'pot-o-gold-u-s-games-v400x', + 'Pot O'' Gold (U.S. Games, v400x?)', + 'U.S. Games, Inc.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["potgoldu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/potgoldu.cpp"]}'::jsonb + ), + ( + 'poto-poto', + 'Poto Poto', + 'Sega', + 1994, + array['Poto Poto (Japan, Rev A)'], + array['Arcade'], + '{"mame":["potopoto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'pound-for-pound', + 'Pound for Pound', + 'Irem', + 1990, + array['Pound for Pound (World)'], + array['Arcade'], + '{"mame":["poundfor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'povar-sobrat-buran-agroprom', + 'Povar / Sobrat'' Buran / Agroprom', + 'bootleg', + null, + array['Povar / Sobrat'' Buran / Agroprom (Arcade multi-game bootleg of ZX Spectrum ''Cookie'', ''Jetpac'' & ''Pssst'')'], + array['Arcade'], + '{"mame":["kok"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/photon2.cpp"]}'::jsonb + ), + ( + 'power-charging-and-playing-games-d12-416-in-1', + 'Power - Charging and playing games (D12) (416-in-1)', + 'SZDiiER', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["d12power"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'power-ball', + 'Power Ball', + 'TCH', + null, + array['Power Ball (prototype)'], + array['Arcade'], + '{"mame":["pwball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/wheelfir.cpp"]}'::jsonb + ), + ( + 'power-balls', + 'Power Balls', + 'Playmark', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["powerbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/powerbal.cpp"]}'::jsonb + ), + ( + 'power-blade-playchoice-10', + 'Power Blade (PlayChoice-10)', + 'Taito (Nintendo of America license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_pwbld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'power-card', + 'Power Card', + 'Fun World', + 1993, + array['Power Card (Ver 0263, encrypted)'], + array['Arcade'], + '{"mame":["powercrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'power-console-disney-princess-jcg100dpi1-english-french', + 'Power Console - Disney Princess (JCG100DPi1, English/French)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxpcdp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'power-console-gabby-s-dollhouse-jcg100gdhi1-english-french', + 'Power Console - Gabby''s Dollhouse (JCG100GDHi1, English/French)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxpcgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'power-console-lilo-and-stitch-jcg100di1-english-french', + 'Power Console - Lilo & Stitch (JCG100Di1, English/French)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxpcli"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'power-console-marvel-spider-man-jcg100spi1-english-french', + 'Power Console - Marvel Spider-Man (JCG100SPi1, English/French)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxpcsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'power-console-paw-patrol-jcg100pai1-english-french', + 'Power Console - Paw Patrol (JCG100PAi1, English/French)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxpcpp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'power-console-jcg100i1-english-french', + 'Power Console (JCG100i1, English/French)', + 'Lexibook', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["lxpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'power-drift', + 'Power Drift', + 'Sega', + 1988, + array['Power Drift (World, Rev A)'], + array['Arcade'], + '{"mame":["pdrift"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaybd.cpp"]}'::jsonb + ), + ( + 'power-drift-link-version', + 'Power Drift - Link Version', + 'Sega', + 1988, + array['Power Drift - Link Version (Japan, Rev A)'], + array['Arcade'], + '{"mame":["pdriftl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaybd.cpp"]}'::jsonb + ), + ( + 'power-drive', + 'Power Drive', + 'Bally Midway', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["powerdrv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'power-instinct', + 'Power Instinct', + 'Atlus', + 1993, + array['Power Instinct (USA)'], + array['Arcade'], + '{"mame":["powerins"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'power-instinct-2', + 'Power Instinct 2', + 'Atlus', + 1994, + array['Power Instinct 2 (US, Ver. 94.04.08, set 1)'], + array['Arcade'], + '{"mame":["pwrinst2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'power-kick', + 'Power Kick', + 'Sunwise', + 1994, + array['Power Kick (Japan)'], + array['Arcade'], + '{"mame":["pwrkick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/sunwise.cpp"]}'::jsonb + ), + ( + 'power-ninja-action-challenge', + 'Power Ninja Action Challenge', + 'Linus Åkesson', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["powernin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/lft_chiptune.cpp"]}'::jsonb + ), + ( + 'power-play', + 'Power Play', + 'Cinematronics', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["powrplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'power-shovel-ni-norou-power-shovel-simulator', + 'Power Shovel ni Norou!! - Power Shovel Simulator', + 'Taito', + 1999, + array['Power Shovel ni Norou!! - Power Shovel Simulator (VER.2.07J)'], + array['Arcade'], + '{"mame":["pwrshovl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'power-sled', + 'Power Sled', + 'Sega', + 1996, + array['Power Sled (Slave, Revision A)'], + array['Arcade'], + '{"mame":["powsled"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'power-smash-3-virtua-tennis-3-export', + 'Power Smash 3 / Virtua Tennis 3 (Export)', + 'Sega', + 2006, + '{}'::text[], + array['Sports'], + '{"mame":["psmash3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'power-spikes', + 'Power Spikes', + 'Video System Co.', + 1991, + array['Power Spikes (World)'], + array['Arcade'], + '{"mame":["pspikes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pspikes.cpp"]}'::jsonb + ), + ( + 'power-spikes-ii-ngm-068', + 'Power Spikes II (NGM-068)', + 'Video System Co.', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pspikes2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'power-stone', + 'Power Stone', + 'Capcom', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["pstone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'power-stone-2', + 'Power Stone 2', + 'Capcom', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["pstone2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'power-surge', + 'Power Surge', + 'Vision Electronics', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["psurge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/timeplt.cpp"]}'::jsonb + ), + ( + 'power-up-baseball', + 'Power Up Baseball', + 'Midway / Incredible Technologies', + 1996, + array['Power Up Baseball (prototype)'], + array['Sports'], + '{"mame":["pubball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'powerful-chance', + 'Powerful Chance', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["pwrchanc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'powerjoy-navigator-50-in-1', + 'PowerJoy Navigator 50 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pjoyn50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'powerjoy-supermax-30-in-1', + 'PowerJoy Supermax 30 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pjoys30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'powerjoy-supermax-60-in-1', + 'PowerJoy Supermax 60 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pjoys60"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'powerstack-ii', + 'Powerstack II', + 'Motorola', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["powerstk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/powerstack.cpp"]}'::jsonb + ), + ( + 'pp-01', + 'PP-01', + 'ZVT', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pp01"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zvt/pp01.cpp"]}'::jsonb + ), + ( + 'prebillian', + 'Prebillian', + 'Kaneko / Taito', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pbillian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/superqix.cpp"]}'::jsonb + ), + ( + 'prehistoric-isle-2', + 'Prehistoric Isle 2', + 'Yumekobo / Saurus', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["preisle2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'prehistoric-isle-in-1930', + 'Prehistoric Isle in 1930', + 'SNK', + 1989, + array['Prehistoric Isle in 1930 (World)'], + array['Arcade'], + '{"mame":["prehisle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/prehisle.cpp"]}'::jsonb + ), + ( + 'premier-soccer', + 'Premier Soccer', + 'Konami', + 1993, + array['Premier Soccer (ver EAB)'], + array['Sports'], + '{"mame":["prmrsocr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'premium-double-eight-v5-3fa', + 'Premium Double Eight (V5.3FA)', + 'Dyna & MK Electronics', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["pdouble8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'premiums-line', + 'Premiums Line', + 'MK Electronics', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["premline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'prestige-challenger', + 'Prestige Challenger', + 'Fidelity Electronics', + 1982, + array['Prestige Challenger (original program, set 1)'], + array['Arcade'], + '{"mame":["fpres"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/elite.cpp"]}'::jsonb + ), + ( + 'pretty-present', + 'Pretty Present', + 'Sunwise', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ppresent"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunwise/jankmg2.cpp"]}'::jsonb + ), + ( + 'pretty-soldier-sailor-moon', + 'Pretty Soldier Sailor Moon', + 'Gazelle (Banpresto license)', + 1995, + array['Pretty Soldier Sailor Moon (Version 95/03/22B, Europe)'], + array['Arcade'], + '{"mame":["sailormn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'pride-gp-2003', + 'Pride GP 2003', + 'Namco', + 2003, + array['Pride GP 2003 (PR21 Ver. A)'], + array['Arcade'], + '{"mame":["prdgp03"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'primal-rage', + 'Primal Rage', + 'Atari Games', + 1994, + array['Primal Rage (version 2.3, Jan 1995)'], + array['Arcade'], + '{"mame":["primrage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarigt.cpp"]}'::jsonb + ), + ( + 'prime-goal-ex', + 'Prime Goal EX', + 'Namco', + 1996, + array['Prime Goal EX (Japan, PG1/VER.A)'], + array['Arcade'], + '{"mame":["primglex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'primeval-hunt', + 'Primeval Hunt', + 'Sega', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["primevah"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'primo-novag', + 'Primo (Novag)', + 'Novag Industries / Intelligent Heuristic Programming', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["nprimo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/primo.cpp"]}'::jsonb + ), + ( + 'primo-a-32', + 'Primo A-32', + 'Microkey', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["primoa32"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microkey/primo.cpp"]}'::jsonb + ), + ( + 'prin-c-tablet', + 'Prin-C Tablet', + 'Tomy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["princ"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tomy/tomy_princ.cpp"]}'::jsonb + ), + ( + 'princess-clara-daisakusen-j-960910-v1-000', + 'Princess Clara Daisakusen (J 960910 V1.000)', + 'Atlus', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["prikura"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club', + 'Print Club', + 'Atlus', + 1995, + array['Print Club (Japan Vol.1)', 'Print Club (Japan Vol.2)', 'Print Club (Japan Vol.3)', 'Print Club (Japan Vol.4)', 'Print Club (Japan Vol.5)'], + array['Arcade'], + '{"mame":["pclubj","pclubjv2","pclubjv3","pclubjv4","pclubjv5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'print-club-2-97-winter-ver', + 'Print Club 2 ''97 Winter Ver', + 'Atlus', + 1997, + array['Print Club 2 ''97 Winter Ver (J 971017 V1.100, set 1)'], + array['Arcade'], + '{"mame":["prc297wi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-98-autumn-ver-j-980827-v1-000', + 'Print Club 2 ''98 Autumn Ver (J 980827 V1.000)', + 'Atlus', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["prc298au"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-98-spring-ver-j-971017-v1-100', + 'Print Club 2 ''98 Spring Ver (J 971017 V1.100)', + 'Atlus', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["prc298sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-98-summer-ver-j-980603-v1-100', + 'Print Club 2 ''98 Summer Ver (J 980603 V1.100)', + 'Atlus', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["prc298su"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-u-970921-v1-000', + 'Print Club 2 (U 970921 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-2000-summer-j-000509-v1-000', + 'Print Club 2 2000 Summer (J 000509 V1.000)', + 'Atlus', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["prc2ksu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-earth-limited-kobe-j-970808-v1-000', + 'Print Club 2 Earth Limited Kobe (J 970808 V1.000)', + 'Atlus', + 1997, + array['Print Club 2 Earth Limited Kobe (Print Club Custom) (J 970808 V1.000)'], + array['Arcade'], + '{"mame":["pclb2elk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-felix-the-cat-j-970415-v1-100', + 'Print Club 2 Felix The Cat (J 970415 V1.100)', + 'Atlus', + 1999, + array['Print Club 2 Felix The Cat (Rev. A) (J 970415 V1.100)'], + array['Arcade'], + '{"mame":["pclub2fc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-kobe-luminaire-99-j-991203-v1-000', + 'Print Club 2 Kobe Luminaire ''99 (J 991203 V1.000)', + 'Atlus', + 1997, + array['Print Club 2 Kobe Luminaire ''99 (Print Club Custom 3) (J 991203 V1.000)'], + array['Arcade'], + '{"mame":["pckobe99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-pepsiman-j-970618-v1-100', + 'Print Club 2 Pepsiman (J 970618 V1.100)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub2pe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-puffy-j-v1-100', + 'Print Club 2 Puffy (J V1.100)', + 'Atlus', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub2pf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-vol-3-u-990310-v1-000', + 'Print Club 2 Vol. 3 (U 990310 V1.000)', + 'Atlus', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub2v3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-vol-6-winter-j-961210-v1-000', + 'Print Club 2 Vol. 6 Winter (J 961210 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub26w"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-vol-7-spring-j-970313-v1-100', + 'Print Club 2 Vol. 7 Spring (J 970313 V1.100)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub27s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-vol-8-97-summer-j-970616-v1-100', + 'Print Club 2 Vol. 8 ''97 Summer (J 970616 V1.100)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["prc28su"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-vol-9-autumn-j-v1-100', + 'Print Club 2 Vol. 9 Autumn (J V1.100)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["prc29au"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-2-warner-bros-j-970228-v1-000', + 'Print Club 2 Warner Bros (J 970228 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub2wb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-goukakenran-j-991104-v1-000', + 'Print Club Goukakenran (J 991104 V1.000)', + 'Atlus', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["pclubor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-kome-kome-club-j-970203-v1-000', + 'Print Club Kome Kome Club (J 970203 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclub2kc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-lovelove-j-970421-v1-000', + 'Print Club LoveLove (J 970421 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-lovelove-ver-2-j-970825-v1-000', + 'Print Club LoveLove Ver 2 (J 970825 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclove2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-olive-j-980717-v1-000', + 'Print Club Olive (J 980717 V1.000)', + 'Atlus', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["pclubol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-pokemon-b-u-991126-v1-000', + 'Print Club Pokemon B (U 991126 V1.000)', + 'Atlus', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["pclubpok"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-winnie-the-pooh-vol-2-j-971218-v1-000', + 'Print Club Winnie-the-Pooh Vol. 2 (J 971218 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pcpooh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-winnie-the-pooh-vol-3-j-980406-v1-000', + 'Print Club Winnie-the-Pooh Vol. 3 (J 980406 V1.000)', + 'Atlus', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["pcpooh3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-yoshimoto-v1-j-970208-v1-000', + 'Print Club Yoshimoto V1 (J 970208 V1.000)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclubyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'print-club-yoshimoto-v2-j-970422-v1-100', + 'Print Club Yoshimoto V2 (J 970422 V1.100)', + 'Atlus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["pclubyo2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'pro-baseball-skill-tryout', + 'Pro Baseball Skill Tryout', + 'Data East Corporation', + 1985, + array['Pro Baseball Skill Tryout (Japan)'], + array['Sports'], + '{"mame":["tryout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tryout.cpp"]}'::jsonb + ), + ( + 'pro-bowling', + 'Pro Bowling', + 'Data East Corporation', + 1983, + array['Pro Bowling (DECO Cassette) (US)'], + array['Sports'], + '{"mame":["cprobowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'pro-cycle-tele-cardioline-salter-fitness-bike-v-1-0-checksum-02ab', + 'Pro Cycle Tele Cardioline (Salter fitness bike, V.1.0, checksum 02AB)', + 'Salter Fitness / Gaelco', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["sltpcycl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'pro-evolution-soccer-the-arcade', + 'Pro Evolution Soccer The Arcade', + 'Konami', + 2002, + array['Pro Evolution Soccer The Arcade (ver EAA)'], + array['Sports'], + '{"mame":["pesta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython.cpp"]}'::jsonb + ), + ( + 'pro-soccer', + 'Pro Soccer', + 'Data East Corporation', + 1983, + array['Pro Soccer (DECO Cassette) (US)'], + array['Sports'], + '{"mame":["cpsoccer","prosoccr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp","dataeast/liberate.cpp"]}'::jsonb + ), + ( + 'pro-sports-bowling-tennis-and-golf', + 'Pro Sports - Bowling, Tennis, and Golf', + 'Data East Corporation', + 1983, + '{}'::text[], + array['Sports'], + '{"mame":["prosport"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/liberate.cpp"]}'::jsonb + ), + ( + 'pro-stepper-tele-cardioline-salter-fitness-stepper-v-1-0-checksum-2b83', + 'Pro Stepper Tele Cardioline (Salter fitness stepper, V.1.0, checksum 2B83)', + 'Salter Fitness / Gaelco', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["sltpstep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'pro-tennis', + 'Pro Tennis', + 'Data East Corporation', + 1982, + array['Pro Tennis (DECO Cassette) (US)', 'Pro Tennis (Japan)'], + array['Sports'], + '{"mame":["cptennis","protenn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp","dataeast/btime.cpp"]}'::jsonb + ), + ( + 'pro-tennis-world-court', + 'Pro Tennis World Court', + 'Namco', + 1988, + array['Pro Tennis World Court (Japan)'], + array['Sports'], + '{"mame":["wldcourt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'pro-wrestling-playchoice-10', + 'Pro Wrestling (PlayChoice-10)', + 'Nintendo', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_pwrst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'pro-yakyuu-world-stadium', + 'Pro Yakyuu World Stadium', + 'Namco', + 1988, + array['Pro Yakyuu World Stadium (Japan)'], + array['Arcade'], + '{"mame":["ws"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'pro-cussion-maximum-percussion-module', + 'Pro/Cussion Maximum Percussion Module', + 'E-mu Systems', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["procuss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'prof-180x', + 'PROF-180X', + 'Conitec Datensysteme', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["prof180x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["conitec/prof180x.cpp"]}'::jsonb + ), + ( + 'prof-80', + 'PROF-80', + 'Conitec Datensysteme', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["prof80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["conitec/prof80.cpp"]}'::jsonb + ), + ( + 'professor-pac-man', + 'Professor Pac-Man', + 'Dave Nutting Associates / Bally Midway', + 1983, + '{}'::text[], + array['Classic'], + '{"mame":["profpac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'progear', + 'Progear', + 'Cave (Capcom license)', + 2001, + array['Progear (Europe 010117)'], + array['Arcade'], + '{"mame":["progear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'progress', + 'Progress', + 'Chuo Co. Ltd', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["progress"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/timelimt.cpp"]}'::jsonb + ), + ( + 'project-justice-moero-justice-gakuen', + 'Project Justice / Moero! Justice Gakuen', + 'Capcom', + 2000, + array['Project Justice / Moero! Justice Gakuen (Rev B)'], + array['Arcade'], + '{"mame":["pjustic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'prop-cycle', + 'Prop Cycle', + 'Namco', + 1996, + array['Prop Cycle (World, PR2 Ver.A)'], + array['Arcade'], + '{"mame":["propcycl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'prophet-5-model-1000-rev-3-0', + 'Prophet 5 (Model 1000) Rev 3.0', + 'Sequential Circuits', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["prophet5rev30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sequential/prophet5.cpp"]}'::jsonb + ), + ( + 'prophet-600', + 'Prophet-600', + 'Sequential Circuits', + 1983, + array['Prophet-600 (set 1)'], + array['Arcade'], + '{"mame":["prpht600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sequential/prophet600.cpp"]}'::jsonb + ), + ( + 'proteus-1-16-bit-multi-timbral-digital-sound-module', + 'Proteus/1 16-Bit Multi-Timbral Digital Sound Module', + 'E-mu Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["proteus1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'proteus-1-xr-16-bit-multi-timbral-digital-sound-module', + 'Proteus/1 XR 16-Bit Multi-Timbral Digital Sound Module', + 'E-mu Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["proteusxr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'ps-400', + 'PS-400', + 'Yamaha', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["ps400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymps400.cpp"]}'::jsonb + ), + ( + 'psi98', + 'PSI98', + 'Kontron', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["psi98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kontron/kdt6.cpp"]}'::jsonb + ), + ( + 'psr-150', + 'PSR-150', + 'Yamaha', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["psr150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr150.cpp"]}'::jsonb + ), + ( + 'psr-16', + 'PSR-16', + 'Yamaha', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["psr16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr16.cpp"]}'::jsonb + ), + ( + 'psr-180', + 'PSR-180', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["psr180"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr150.cpp"]}'::jsonb + ), + ( + 'psr-190', + 'PSR-190', + 'Yamaha', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["psr190"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr150.cpp"]}'::jsonb + ), + ( + 'psr-2000', + 'PSR-2000', + 'Yamaha', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["psr2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr2000.cpp"]}'::jsonb + ), + ( + 'psr-260', + 'PSR-260', + 'Yamaha', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["psr260"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr260.cpp"]}'::jsonb + ), + ( + 'psr-340-portasound', + 'PSR-340 PortaSound', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["psr340"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr340.cpp"]}'::jsonb + ), + ( + 'psr-36', + 'PSR-36', + 'Yamaha', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["psr36"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr16.cpp"]}'::jsonb + ), + ( + 'psr-40', + 'PSR-40', + 'Yamaha', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["psr40"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr40.cpp"]}'::jsonb + ), + ( + 'psr-500', + 'PSR-500', + 'Yamaha', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["psr500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr400.cpp"]}'::jsonb + ), + ( + 'psr-60-portasound', + 'PSR-60 PortaSound', + 'Yamaha', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["psr60"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr60.cpp"]}'::jsonb + ), + ( + 'psr-79', + 'PSR-79', + 'Yamaha', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["psr79"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr260.cpp"]}'::jsonb + ), + ( + 'psr540', + 'PSR540', + 'Yamaha', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["psr540"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr540.cpp"]}'::jsonb + ), + ( + 'pss-12', + 'PSS-12', + 'Yamaha', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pss12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr150.cpp"]}'::jsonb + ), + ( + 'pss-480-pss-580', + 'PSS-480 / PSS-580', + 'Yamaha', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pss480"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr16.cpp"]}'::jsonb + ), + ( + 'pss-680', + 'PSS-680', + 'Yamaha', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pss680"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ympsr16.cpp"]}'::jsonb + ), + ( + 'psychic-5', + 'Psychic 5', + 'Jaleco / NMK', + 1987, + array['Psychic 5 (World)'], + array['Arcade'], + '{"mame":["psychic5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/psychic5.cpp"]}'::jsonb + ), + ( + 'psychic-force-2012', + 'Psychic Force 2012', + 'Taito', + 1998, + array['Psychic Force 2012 (Ver 2.04J)'], + array['Arcade'], + '{"mame":["pf2012"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitowlf.cpp"]}'::jsonb + ), + ( + 'psycho-soldier', + 'Psycho Soldier', + 'SNK', + 1987, + array['Psycho Soldier (US)'], + array['Arcade'], + '{"mame":["psychos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'psycho-nics-oscar', + 'Psycho-Nics Oscar', + 'Data East Corporation', + 1987, + array['Psycho-Nics Oscar (World revision 0)'], + array['Arcade'], + '{"mame":["oscar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'psyvariar-2-the-will-to-fabricate-gdl-0024', + 'Psyvariar 2 - The Will To Fabricate (GDL-0024)', + 'Success', + 2003, + array['Psyvariar 2 - The Will To Fabricate (Japan) (GDL-0024)'], + array['Arcade'], + '{"mame":["psyvar2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'puchi-carat', + 'Puchi Carat', + 'Taito Corporation', + 1997, + array['Puchi Carat (Ver 2.02O 1997/10/29)'], + array['Arcade'], + '{"mame":["puchicar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'puck-man', + 'Puck Man', + 'Namco', + 1980, + array['Puck Man (Japan, set 1)'], + array['Arcade'], + '{"mame":["puckman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'puckman-pockimon-genie-2000', + 'Puckman Pockimon Genie 2000', + 'Sun Mixing', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["puckpkmn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_ybox.cpp"]}'::jsonb + ), + ( + 'pulirula', + 'PuLiRuLa', + 'Taito Corporation Japan', + 1991, + array['PuLiRuLa (World, dual PCB)'], + array['Arcade'], + '{"mame":["pulirula"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'pull-tabs', + 'Pull Tabs', + 'Game-A-Tron', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pulltabs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gametron/gatron.cpp"]}'::jsonb + ), + ( + 'pulsar', + 'Pulsar', + 'Sega', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["pulsar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'pulstar', + 'Pulstar', + 'Aicom', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["pulstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'pump-it-up-extra-mar-21-2001', + 'Pump it Up Extra (Mar 21 2001)', + 'Andamiro', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpite"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-o-b-g-the-3rd-dance-floor-v3-04-jun-02-2000', + 'Pump it Up The O.B.G: The 3rd Dance Floor (v3.04 - Jun 02 2000)', + 'Andamiro', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpit3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-o-b-g-the-season-evolution-dance-floor-r4-v3-25-aug-27-2000', + 'Pump it Up The O.B.G: The Season Evolution Dance Floor (R4/v3.25 - Aug 27 2000)', + 'Andamiro', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpito"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-premiere-2-the-international-2nd-dance-floor-premiere-2-2002', + 'Pump it Up The Premiere 2: The International 2nd Dance Floor (Premiere 2/2002)', + 'Andamiro', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpitp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-premiere-3-the-international-3rd-dance-floor-premiere-3-2003-28th-mar-2003', + 'Pump it Up The Premiere 3: The International 3rd Dance Floor (Premiere 3/2003 - 28th Mar 2003)', + 'Andamiro', + 2003, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpitp3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-premiere-the-international-dance-floor-r6-v4-01-feb-22-2001', + 'Pump it Up The Premiere: The International Dance Floor (R6/v4.01 - Feb 22 2001)', + 'Andamiro', + 2001, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpitpr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-prex-2-premiere-2-2003', + 'Pump it Up The PREX 2 (Premiere 2/2003)', + 'Andamiro', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpipx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-prex-3-the-international-4th-dance-floor-x3-2mk3', + 'Pump it Up The PREX 3: The International 4th Dance Floor (X3.2MK3)', + 'Andamiro', + 2003, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpipx3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-prex-the-international-dance-floor', + 'Pump it Up The PREX: The International Dance Floor', + 'Andamiro', + 2001, + array['Pump it Up The PREX: The International Dance Floor (REV2 / 101)'], + array['Rhythm'], + '{"mame":["pumpitpx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-rebirth-the-8th-dance-floor-rebirth-2002', + 'Pump it Up The Rebirth: The 8th Dance Floor (Rebirth/2002)', + 'Andamiro', + 2002, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpit8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-1st-dance-floor', + 'Pump It Up: The 1st Dance Floor', + 'Andamiro', + 1999, + array['Pump It Up: The 1st Dance Floor (ver 0.53.1999.9.31)'], + array['Rhythm'], + '{"mame":["pumpit1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-2nd-dance-floor-feb-28-2000', + 'Pump it Up: The 2nd Dance Floor (Feb 28 2000)', + 'Andamiro', + 1999, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpit2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-collection-r5-v3-43-nov-14-2000', + 'Pump it Up: The Collection (R5/v3.43 - Nov 14 2000)', + 'Andamiro', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpitc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'pump-it-up-the-perfect-collection-r5-v3-52-dec-18-2000', + 'Pump it Up: The Perfect Collection (R5/v3.52 - Dec 18 2000)', + 'Andamiro', + 2000, + '{}'::text[], + array['Rhythm'], + '{"mame":["pumpitpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'punch-mania-2-hokuto-no-ken-gqa09-jaa', + 'Punch Mania 2: Hokuto no Ken (GQA09 JAA)', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["pnchmn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'punch-your-lights-out', + 'Punch Your Lights Out', + 'Tiger', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["pylo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tiger/pylo.cpp"]}'::jsonb + ), + ( + 'punch-out', + 'Punch-Out!!', + 'Nintendo', + 1984, + array['Punch-Out!! (Rev B)'], + array['Arcade'], + '{"mame":["punchout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/punchout.cpp"]}'::jsonb + ), + ( + 'punk-shot', + 'Punk Shot', + 'Konami', + 1990, + array['Punk Shot (US 4 Players)'], + array['Arcade'], + '{"mame":["punkshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'pururun', + 'Pururun', + 'Metro / Banpresto', + 1995, + array['Pururun (Japan set 1)'], + array['Arcade'], + '{"mame":["pururun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'push-over-summit-coin', + 'Push-Over (Summit Coin)', + 'Summit Coin', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["pushover"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/summit.cpp"]}'::jsonb + ), + ( + 'pushman', + 'Pushman', + 'Comad', + 1990, + array['Pushman (Korea, set 1)'], + array['Arcade'], + '{"mame":["pushman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/tigeroad.cpp"]}'::jsonb + ), + ( + 'puyo-pop-fever-gds-0034', + 'Puyo Pop Fever (GDS-0034)', + 'Sega', + 2003, + array['Puyo Pop Fever (World) (GDS-0034)'], + array['Puzzle'], + '{"mame":["puyofev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'puyo-puyo', + 'Puyo Puyo', + 'Compile / Sega', + 1992, + array['Puyo Puyo (World)'], + array['Puzzle'], + '{"mame":["puyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'puyo-puyo-2', + 'Puyo Puyo 2', + 'Compile (Sega license)', + 1994, + array['Puyo Puyo 2 (Japan)'], + array['Puzzle'], + '{"mame":["puyopuy2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'puyo-puyo-da', + 'Puyo Puyo Da!', + 'Compile', + 1999, + array['Puyo Puyo Da! (Japan)'], + array['Puzzle'], + '{"mame":["puyoda"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'puyo-puyo-sun-j-961115-v0-001', + 'Puyo Puyo Sun (J 961115 V0.001)', + 'Compile', + 1996, + '{}'::text[], + array['Puzzle'], + '{"mame":["puyosun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'puzz-ball', + 'Puzz Ball', + 'Namco', + 2002, + array['Puzz Ball (Japan, PZB1 Ver.C)'], + array['Arcade'], + '{"mame":["puzzball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'puzz-loop', + 'Puzz Loop', + 'Mitchell', + 1998, + array['Puzz Loop (Europe, v0.94)'], + array['Arcade'], + '{"mame":["puzzloop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'puzz-loop-2', + 'Puzz Loop 2', + 'Mitchell (Capcom license)', + 2001, + array['Puzz Loop 2 (Europe 010302)'], + array['Arcade'], + '{"mame":["pzloop2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'puzzle-and-action-ichidant-r', + 'Puzzle & Action: Ichidant-R', + 'Sega', + 1994, + array['Puzzle & Action: Ichidant-R (World)'], + array['Puzzle'], + '{"mame":["ichir"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'puzzle-and-action-sando-r-j-951114-v1-000', + 'Puzzle & Action: Sando-R (J 951114 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Puzzle'], + '{"mame":["sandor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'puzzle-and-action-tant-r', + 'Puzzle & Action: Tant-R', + 'Sega', + 1992, + array['Puzzle & Action: Tant-R (Japan)'], + array['Puzzle'], + '{"mame":["tantr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble', + 'Puzzle Bobble', + 'Taito Corporation', + 1994, + array['Puzzle Bobble (Japan, B-System)'], + array['Puzzle'], + '{"mame":["pbobble"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble-italian-gambling-game', + 'Puzzle Bobble (Italian gambling game)', + '', + 2001, + '{}'::text[], + array['Puzzle'], + '{"mame":["te0144"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble-bust-a-move-neo-geo-ngm-083', + 'Puzzle Bobble / Bust-A-Move (Neo-Geo, NGM-083)', + 'Taito', + 1994, + '{}'::text[], + array['Puzzle'], + '{"mame":["pbobblen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble-2', + 'Puzzle Bobble 2', + 'Taito Corporation Japan', + 1995, + array['Puzzle Bobble 2 (Ver 2.3O 1995/07/31)'], + array['Puzzle'], + '{"mame":["pbobble2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble-2-bust-a-move-again-neo-geo', + 'Puzzle Bobble 2 / Bust-A-Move Again (Neo-Geo)', + 'Taito (SNK license)', + 1999, + '{}'::text[], + array['Puzzle'], + '{"mame":["pbobbl2n"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble-3', + 'Puzzle Bobble 3', + 'Taito Corporation', + 1996, + array['Puzzle Bobble 3 (Ver 2.1O 1996/09/27)'], + array['Puzzle'], + '{"mame":["pbobble3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'puzzle-bobble-4', + 'Puzzle Bobble 4', + 'Taito Corporation', + 1997, + array['Puzzle Bobble 4 (Ver 2.04O 1997/12/19)'], + array['Puzzle'], + '{"mame":["pbobble4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'puzzle-break', + 'Puzzle Break', + 'SemiCom / Tirano', + 1997, + array['Puzzle Break (set 1)'], + array['Puzzle'], + '{"mame":["pzlbreak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'puzzle-club', + 'Puzzle Club', + 'Yun Sung', + 2000, + array['Puzzle Club (Yun Sung, set 1)', 'Puzzle Club (Japan prototype)'], + array['Puzzle'], + '{"mame":["pclubys","puzlclub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp","namco/namcos1.cpp"]}'::jsonb + ), + ( + 'puzzle-de-bowling', + 'Puzzle De Bowling', + 'Nihon System / MOSS', + 1999, + array['Puzzle De Bowling (Japan)'], + array['Sports', 'Puzzle'], + '{"mame":["pzlbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'puzzle-de-pon', + 'Puzzle De Pon!', + 'Visco', + 1995, + '{}'::text[], + array['Puzzle'], + '{"mame":["puzzledp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'puzzle-de-pon-r', + 'Puzzle De Pon! R!', + 'Visco', + 1997, + '{}'::text[], + array['Puzzle'], + '{"mame":["puzzldpr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'puzzle-express-more-more', + 'Puzzle Express More More', + 'SemiCom / Exit', + 1999, + array['Puzzle Express More More (Korea)'], + array['Puzzle'], + '{"mame":["moremore"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'puzzle-express-more-more-plus', + 'Puzzle Express More More Plus', + 'SemiCom / Exit', + 1999, + '{}'::text[], + array['Puzzle'], + '{"mame":["moremorp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'puzzle-game-rong-rong', + 'Puzzle Game Rong Rong', + 'Nakanihon (Activision license)', + 1994, + array['Puzzle Game Rong Rong (Europe)'], + array['Puzzle'], + '{"mame":["rongrong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'puzzle-king-dance-and-puzzle', + 'Puzzle King (Dance & Puzzle)', + 'Eolith', + 1998, + '{}'::text[], + array['Puzzle'], + '{"mame":["puzzlekg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'puzzle-king-pacman-2-tetris-hyperman-2-snow-bros', + 'Puzzle King (PacMan 2, Tetris, HyperMan 2, Snow Bros.)', + 'K1 Soft', + 2002, + '{}'::text[], + array['Puzzle'], + '{"mame":["4in1boot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'puzzle-me', + 'Puzzle Me!', + 'Impera', + null, + '{}'::text[], + array['Puzzle'], + '{"mame":["puzzleme"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'puzzle-star-mohuan-xingzuo', + 'Puzzle Star / Mohuan Xingzuo', + 'IGS (Metro license)', + 1999, + array['Puzzle Star / Mohuan Xingzuo (ver. 100MG, 09/30/99 build)'], + array['Puzzle'], + '{"mame":["puzlstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'puzzle-time', + 'Puzzle Time', + 'Elettronica Video-Games', + null, + array['Puzzle Time (prototype)'], + array['Puzzle'], + '{"mame":["pzletime"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/pzletime.cpp"]}'::jsonb + ), + ( + 'puzzle-uo-poko', + 'Puzzle Uo Poko', + 'Cave (Jaleco license)', + 1998, + array['Puzzle Uo Poko (World)'], + array['Puzzle'], + '{"mame":["uopoko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'puzzle-yutnori', + 'Puzzle Yutnori', + 'Nunal', + 1999, + array['Puzzle Yutnori (Korea)'], + array['Puzzle'], + '{"mame":["yutnori"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'puzzle-mushihime-tama', + 'Puzzle! Mushihime-Tama', + 'Cave (AMI license)', + 2005, + array['Puzzle! Mushihime-Tama (Japan, 2005/09/09.MASTER VER)'], + array['Puzzle'], + '{"mame":["mushitam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cave/cv1k.cpp"]}'::jsonb + ), + ( + 'puzzled-joy-joy-kid-ngm-021-ngh-021', + 'Puzzled / Joy Joy Kid (NGM-021 ~ NGH-021)', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["joyjoy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'puzzlet', + 'Puzzlet', + 'Unies Corporation', + 2000, + array['Puzzlet (Japan)'], + array['Arcade'], + '{"mame":["puzzlet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'puzzli', + 'Puzzli', + 'Metro / Banpresto', + 1995, + array['Puzzli (Japan revision B)'], + array['Arcade'], + '{"mame":["puzzli"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'puzzli-2-pao-pao-yu', + 'Puzzli 2 / Pao Pao Yu', + 'IGS (Metro license)', + 1999, + array['Puzzli 2 / Pao Pao Yu (ver. 100)'], + array['Arcade'], + '{"mame":["puzzli2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'puzzlove', + 'PuzzLove', + 'Para', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["puzzlove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/silvmil.cpp"]}'::jsonb + ), + ( + 'puzznic', + 'Puzznic', + 'Taito Corporation Japan', + 1989, + array['Puzznic (World)'], + array['Arcade'], + '{"mame":["puzznic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'pv-1000', + 'PV-1000', + 'Casio', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pv1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pv1000.cpp"]}'::jsonb + ), + ( + 'pv-2000', + 'PV-2000', + 'Casio', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pv2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pv2000.cpp"]}'::jsonb + ), + ( + 'pvi-486ap4', + 'PVI-486AP4', + 'Asus', + 1994, + array['PVI-486AP4 (Intel I420EX Aries chipset)'], + array['Arcade'], + '{"mame":["a486ap4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/i420ex.cpp"]}'::jsonb + ), + ( + 'px-4', + 'PX-4', + 'Epson', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["px4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["epson/px4.cpp"]}'::jsonb + ), + ( + 'px-8', + 'PX-8', + 'Epson', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["px8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["epson/px8.cpp"]}'::jsonb + ), + ( + 'pye-nage-taikai', + 'Pye-nage Taikai', + 'Sammy', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["pyenaget"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'pyon-pyon-jump', + 'Pyon Pyon Jump', + 'Success / Taiyo Jidoki', + 1991, + array['Pyon Pyon Jump (V1.40, Japan)'], + array['Arcade'], + '{"mame":["ppj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/kurukuru.cpp"]}'::jsonb + ), + ( + 'python-photon-system', + 'Python (Photon System)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["phpython"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/photon.cpp"]}'::jsonb + ), + ( + 'pyuuta-kun', + 'Pyuuta-kun', + 'Sunwise', + 1995, + array['Pyuuta-kun (Japan)'], + array['Arcade'], + '{"mame":["pyutakun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/sunwise.cpp"]}'::jsonb + ), + ( + 'q-bert', + 'Q*bert', + 'Gottlieb', + 1982, + array['Q*bert (US set 1)'], + array['Puzzle', 'Classic'], + '{"mame":["qbert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'q-bert-s-qubes', + 'Q*bert''s Qubes', + 'Mylstar', + 1983, + '{}'::text[], + array['Puzzle', 'Classic'], + '{"mame":["qbertqub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'qb-3', + 'QB-3', + 'Rock-Ola', + 1982, + array['QB-3 (prototype)'], + array['Arcade'], + '{"mame":["qb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'qi-wang', + 'Qi Wang', + 'Herb Home', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["qiwang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/popobear.cpp"]}'::jsonb + ), + ( + 'qianxi-jielong-hongxin-jielong', + 'Qianxi Jielong / Hongxin Jielong', + 'Hom Inn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["qxjl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hominn/hominn_980924.cpp"]}'::jsonb + ), + ( + 'qiji-6-v118cn', + 'Qiji 6 (V118CN)', + 'IGS', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["qiji6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027_033vid.cpp"]}'::jsonb + ), + ( + 'qing-cheng-zhi-lian', + 'Qing Cheng Zhi Lian', + 'Sealy', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["qczl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_eagle.cpp"]}'::jsonb + ), + ( + 'qix', + 'Qix', + 'Taito America Corporation', + 1981, + array['Qix (Rev 2)'], + array['Arcade'], + '{"mame":["qix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'qs300', + 'QS300', + 'Yamaha', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["qs300"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymqs300.cpp"]}'::jsonb + ), + ( + 'quad-x', + 'Quad X', + 'Torch Computers', + 1988, + array['Quad X (68030 prototype)'], + array['Arcade'], + '{"mame":["quadx","quadxp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["torch/quadx.cpp"]}'::jsonb + ), + ( + 'quantum', + 'Quantum', + 'General Computer Corporation (Atari license)', + 1982, + array['Quantum (rev 2)'], + array['Arcade'], + '{"mame":["quantum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/quantum.cpp"]}'::jsonb + ), + ( + 'quarter-horse', + 'Quarter Horse', + 'Electro-Sport', + 1983, + array['Quarter Horse (set 1, Pioneer PR-8210)'], + array['Arcade'], + '{"mame":["quarterh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dwarfd.cpp"]}'::jsonb + ), + ( + 'quarter-horse-classic', + 'Quarter Horse Classic', + 'ArJay Exports/Prestige Games', + 1995, + '{}'::text[], + array['Classic'], + '{"mame":["qc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dwarfd.cpp"]}'::jsonb + ), + ( + 'quarterback', + 'Quarterback', + 'Leland Corporation', + 1987, + array['Quarterback (rev 5)'], + array['Arcade'], + '{"mame":["quarterb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'quartet', + 'Quartet', + 'Sega', + 1986, + array['Quartet (Rev A, 8751 315-5194)'], + array['Arcade'], + '{"mame":["quartet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'quasar', + 'Quasar', + 'Zaccaria / Zelco', + 1980, + array['Quasar (set 1)'], + array['Arcade'], + '{"mame":["quasar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/quasar.cpp"]}'::jsonb + ), + ( + 'que-huang-zhengba-v100cn', + 'Que Huang Zhengba (V100CN)', + 'IGS', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["qhzb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'que-long-gaoshou-s501cn', + 'Que Long Gaoshou (S501CN)', + 'IGS', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["qlgs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'queen-bee', + 'Queen Bee', + 'Subsino (American Alpha license)', + 2001, + array['Queen Bee (Ver. 114)'], + array['Arcade'], + '{"mame":["queenbee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'queen-of-the-games', + 'Queen of the Games', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["queenotg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl3.cpp"]}'::jsonb + ), + ( + 'quest-of-d-cdv-10005c', + 'Quest of D (CDV-10005C)', + 'Sega', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["questofd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'quest-of-d-oukoku-no-syugosya-ver-3-02-cdv-10026d', + 'Quest of D Oukoku no Syugosya Ver. 3.02 (CDV-10026D)', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["qofd3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'quest-of-d-the-battle-kingdom-cdv-10035b', + 'Quest of D The Battle Kingdom (CDV-10035B)', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["qofdtbk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'quester', + 'Quester', + 'Namco', + 1987, + array['Quester (Japan)'], + array['Arcade'], + '{"mame":["quester"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'quick-jack', + 'Quick Jack', + 'ADP', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["quickjac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/adp.cpp"]}'::jsonb + ), + ( + 'quick-pick-5', + 'Quick Pick 5', + 'Konami', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["quickp5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/quickpick5.cpp"]}'::jsonb + ), + ( + 'quingo-export-5-00', + 'Quingo Export (5.00)', + 'Impera', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["quingo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'quizard-v1-8-german-i8751-de-11-d3', + 'Quizard (v1.8, German, i8751 DE 11 D3)', + 'TAB Austria', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["quizard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'quizard-2-v2-3-german-i8751-dn-122-d3', + 'Quizard 2 (v2.3, German, i8751 DN 122 D3)', + 'TAB Austria', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["quizard2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'quizard-3-v3-4-german-i8751-de-132-d3', + 'Quizard 3 (v3.4, German, i8751 DE 132 D3)', + 'TAB Austria', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["quizard3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'quizard-4-rainbow-v4-2-german-i8751-de-142-d3', + 'Quizard 4 Rainbow (v4.2, German, i8751 DE 142 D3)', + 'TAB Austria', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["quizard4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'quizard-fun-and-fascination-french-edition-v1-01-96', + 'Quizard Fun and Fascination (French Edition V1 - 01/96)', + 'TAB Austria', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["quizardff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/cdi.cpp"]}'::jsonb + ), + ( + 'quizmaster-german', + 'Quizmaster (German)', + 'Löwen Spielautomaten', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["quizmstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmstr.cpp"]}'::jsonb + ), + ( + 'qvt-102', + 'QVT-102', + 'Qume', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["qvt102"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["qume/qvt102.cpp"]}'::jsonb + ), + ( + 'qvt-103', + 'QVT-103', + 'Qume', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["qvt103"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["qume/qvt103.cpp"]}'::jsonb + ), + ( + 'qvt-190', + 'QVT-190', + 'Qume', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["qvt190"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["qume/qvt190.cpp"]}'::jsonb + ), + ( + 'qvt-201', + 'QVT-201', + 'Qume', + 1986, + array['QVT-201 (Rev. T201VE)'], + array['Arcade'], + '{"mame":["qvt201"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["qume/qvt201.cpp"]}'::jsonb + ), + ( + 'qvt-70', + 'QVT-70', + 'Qume', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["qvt70"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["qume/qvt70.cpp"]}'::jsonb + ), + ( + 'qvt-82', + 'QVT-82', + 'Qume', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["qvt82"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["qume/qvt70.cpp"]}'::jsonb + ), + ( + 'qwak', + 'Qwak', + 'Atari', + 1982, + array['Qwak (prototype)'], + array['Arcade'], + '{"mame":["qwak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/runaway.cpp"]}'::jsonb + ), + ( + 'qwak-quack', + 'Qwak!/Quack', + 'Atari', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["qwakttl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'qx-10', + 'QX-10', + 'Epson', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["qx10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["epson/qx10.cpp"]}'::jsonb + ), + ( + 'qy70-music-sequencer', + 'QY70 Music Sequencer', + 'Yamaha', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["qy70"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymqy70.cpp"]}'::jsonb + ), + ( + 'r-100-digital-drum-machine', + 'R-100 Digital Drum Machine', + 'Kawai Musical Instrument Manufacturing', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["r100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/r100.cpp"]}'::jsonb + ), + ( + 'r-shark', + 'R-Shark', + 'Dooyong', + 1995, + array['R-Shark (set 1)'], + array['Arcade'], + '{"mame":["rshark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'r-type', + 'R-Type', + 'Irem', + 1987, + array['R-Type (World)'], + array['Shooter'], + '{"mame":["rtype"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'r-type-ii', + 'R-Type II', + 'Irem', + 1989, + array['R-Type II (World)'], + array['Shooter'], + '{"mame":["rtype2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'r-type-leo', + 'R-Type Leo', + 'Irem', + 1992, + array['R-Type Leo (World)'], + array['Shooter'], + '{"mame":["rtypeleo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'r-c-pro-am-playchoice-10', + 'R.C. Pro-Am (PlayChoice-10)', + 'Rare', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_rcpam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'r2d-tank', + 'R2D Tank', + 'Sigma Enterprises Inc.', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["r2dtank"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/r2dtank.cpp"]}'::jsonb + ), + ( + 'ra-s-scepter', + 'Ra''s Scepter', + 'Astro Corp.', + 2005, + array['Ra''s Scepter (Russia)'], + array['Arcade'], + '{"mame":["rasce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'rabbit', + 'Rabbit', + 'Aorn / Electronic Arts', + 1997, + array['Rabbit (Asia 3/6)'], + array['Arcade'], + '{"mame":["rabbit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/rabbit.cpp"]}'::jsonb + ), + ( + 'rabio-lepus', + 'Rabio Lepus', + 'V-System Co.', + 1987, + array['Rabio Lepus (Japan)'], + array['Arcade'], + '{"mame":["rabiolep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/rpunch.cpp"]}'::jsonb + ), + ( + 'raccoon-world', + 'Raccoon World', + 'Eolith', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["raccoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'race-drivin', + 'Race Drivin''', + 'Atari Games', + 1990, + array['Race Drivin'' (cockpit, rev 5)'], + array['Arcade'], + '{"mame":["racedriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/harddriv.cpp"]}'::jsonb + ), + ( + 'race-on', + 'Race On!', + 'Namco', + 1998, + array['Race On! (World, RO2 Ver. A)'], + array['Arcade'], + '{"mame":["raceon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'racin-force', + 'Racin'' Force', + 'Konami', + 1994, + array['Racin'' Force (ver EAC)'], + array['Arcade'], + '{"mame":["racinfrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'racing-beat', + 'Racing Beat', + 'Taito Corporation Japan', + 1991, + array['Racing Beat (World)'], + array['Racing'], + '{"mame":["racingb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'racing-challenge-8-games-in-1', + 'Racing Challenge - 8 Games In 1', + 'Play Vision / Taikee', + 2005, + '{}'::text[], + array['Racing'], + '{"mame":["racechl8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'racing-hero-fd1094-317-0144', + 'Racing Hero (FD1094 317-0144)', + 'Sega', + 1989, + '{}'::text[], + array['Racing'], + '{"mame":["rachero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'racing-jam-gq676uac', + 'Racing Jam (GQ676UAC)', + 'Konami', + 1998, + '{}'::text[], + array['Racing'], + '{"mame":["racingj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nwk-tr.cpp"]}'::jsonb + ), + ( + 'racing-jam-dx', + 'Racing Jam DX', + 'Konami', + 1997, + '{}'::text[], + array['Racing'], + '{"mame":["racjamdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/cobra.cpp"]}'::jsonb + ), + ( + 'racing-jam-chapter-ii-gq888uaa', + 'Racing Jam: Chapter II (GQ888UAA)', + 'Konami', + 1998, + '{}'::text[], + array['Racing'], + '{"mame":["racingj2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nwk-tr.cpp"]}'::jsonb + ), + ( + 'rack-em-up', + 'Rack ''em Up', + 'Konami', + 1987, + array['Rack ''em Up (version L)'], + array['Arcade'], + '{"mame":["rackemup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/battlnts.cpp"]}'::jsonb + ), + ( + 'rack-roll', + 'Rack + Roll', + 'Senko Industries (Status license from Shinkai Inc.)', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["racknrol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxold.cpp"]}'::jsonb + ), + ( + 'rad-mobile', + 'Rad Mobile', + 'Sega', + 1990, + array['Rad Mobile (World)'], + array['Arcade'], + '{"mame":["radm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'rad-racer-playchoice-10', + 'Rad Racer (PlayChoice-10)', + 'Square', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_radrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'rad-racer-ii-playchoice-10', + 'Rad Racer II (PlayChoice-10)', + 'Square (Nintendo of America license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_radr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'rad-rally', + 'Rad Rally', + 'Sega', + 1991, + array['Rad Rally (World)'], + array['Arcade'], + '{"mame":["radr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'radar-scope', + 'Radar Scope', + 'Nintendo', + 1980, + array['Radar Scope (TRS02, rev. D)'], + array['Arcade'], + '{"mame":["radarscp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'radar-zone', + 'Radar Zone', + 'Century Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["radarzon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'radiant-silvergun-juet-980523-v1-000', + 'Radiant Silvergun (JUET 980523 V1.000)', + 'Treasure', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["rsgun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'radical-enduro', + 'Radical Enduro', + 'TCH / Sator Videogames', + null, + array['Radical Enduro (early prototype)'], + array['Arcade'], + '{"mame":["radendur"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/wheelfir.cpp"]}'::jsonb + ), + ( + 'radical-radial', + 'Radical Radial', + 'Logitec Corp. (Nichibutsu USA license)', + 1982, + array['Radical Radial (US)'], + array['Arcade'], + '{"mame":["radrad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/seicross.cpp"]}'::jsonb + ), + ( + 'radikal-bikers', + 'Radikal Bikers', + 'Gaelco', + 1998, + array['Radikal Bikers (version 2.02)'], + array['Arcade'], + '{"mame":["radikalb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco3d.cpp"]}'::jsonb + ), + ( + 'radikal-darts', + 'Radikal Darts', + 'Gaelco Darts', + null, + array['Radikal Darts (Diana Version 7.29.25)'], + array['Arcade'], + '{"mame":["radikald"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/radsys.cpp"]}'::jsonb + ), + ( + 'radirgy-gdl-0032a', + 'Radirgy (GDL-0032A)', + 'Milestone', + 2005, + array['Radirgy (Japan, Rev A) (GDL-0032A)'], + array['Arcade'], + '{"mame":["radirgy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'radirgy-noa', + 'Radirgy Noa', + 'Milestone / Lucky', + 2009, + array['Radirgy Noa (Japan)'], + array['Arcade'], + '{"mame":["radirgyn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'rafflesia-315-5162', + 'Rafflesia (315-5162)', + 'Coreland / Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["raflesia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'rage-of-the-dragons-ngm-2640', + 'Rage of the Dragons (NGM-2640?)', + 'Evoga / Playmore', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["rotd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'ragnagard-shin-oh-ken', + 'Ragnagard / Shin-Oh-Ken', + 'Saurus', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["ragnagrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'raiden', + 'Raiden', + 'Seibu Kaihatsu', + 1990, + array['Raiden (World set 1)'], + array['Shooter'], + '{"mame":["raiden"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/raiden.cpp"]}'::jsonb + ), + ( + 'raiden-dx-uk', + 'Raiden DX (UK)', + 'Seibu Kaihatsu', + 1994, + '{}'::text[], + array['Shooter'], + '{"mame":["raidendx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/raiden2.cpp"]}'::jsonb + ), + ( + 'raiden-fighters-germany', + 'Raiden Fighters (Germany)', + 'Seibu Kaihatsu (Tuning license)', + 1996, + '{}'::text[], + array['Shooter'], + '{"mame":["rdft"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'raiden-fighters-2-operation-hell-dive-germany', + 'Raiden Fighters 2 - Operation Hell Dive (Germany)', + 'Seibu Kaihatsu (Tuning license)', + 1997, + '{}'::text[], + array['Shooter'], + '{"mame":["rdft2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'raiden-fighters-jet-germany', + 'Raiden Fighters Jet (Germany)', + 'Seibu Kaihatsu (Tuning license)', + 1998, + '{}'::text[], + array['Shooter'], + '{"mame":["rfjet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'raiden-ii', + 'Raiden II', + 'Seibu Kaihatsu (Fabtek license)', + 1993, + array['Raiden II (US, set 1)'], + array['Shooter'], + '{"mame":["raiden2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/raiden2.cpp"]}'::jsonb + ), + ( + 'raiden-ii-new-raiden-dx-newer-v33-pcb-raiden-dx-eeprom', + 'Raiden II New / Raiden DX (newer V33 PCB) (Raiden DX EEPROM)', + 'Seibu Kaihatsu', + 1996, + '{}'::text[], + array['Shooter'], + '{"mame":["r2dx_v33"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/r2dx_v33.cpp"]}'::jsonb + ), + ( + 'raiden-iii-v2-01j', + 'Raiden III (v2.01J)', + 'MOSS / Seibu Kaihatsu', + 2005, + '{}'::text[], + array['Shooter'], + '{"mame":["raiden3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'raiden-iv-v1-00j', + 'Raiden IV (v1.00J)', + 'MOSS / Seibu Kaihatsu', + 2007, + '{}'::text[], + array['Shooter'], + '{"mame":["raiden4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'raiders', + 'Raiders', + 'Century Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["raiders"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'raiders5', + 'Raiders5', + 'UPL', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["raiders5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/nova2001.cpp"]}'::jsonb + ), + ( + 'raiga-strato-fighter', + 'Raiga - Strato Fighter', + 'Tecmo', + 1991, + array['Raiga - Strato Fighter (US)'], + array['Arcade'], + '{"mame":["stratof"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/gaiden.cpp"]}'::jsonb + ), + ( + 'rail-chase', + 'Rail Chase', + 'Sega', + 1991, + array['Rail Chase (World)'], + array['Arcade'], + '{"mame":["rchase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaybd.cpp"]}'::jsonb + ), + ( + 'rail-chase-2', + 'Rail Chase 2', + 'Sega', + 1994, + array['Rail Chase 2 (Revision A)'], + array['Arcade'], + '{"mame":["rchase2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'raimais', + 'Raimais', + 'Taito Corporation Japan', + 1988, + array['Raimais (World, rev 1)'], + array['Arcade'], + '{"mame":["raimais"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_l.cpp"]}'::jsonb + ), + ( + 'rainbow-100-b', + 'Rainbow 100-B', + 'Digital Equipment Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["rainbow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/rainbow.cpp"]}'::jsonb + ), + ( + 'rainbow-brite-mini-arcade', + 'Rainbow Brite (mini-arcade)', + 'Coleco', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["rbbrite"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'rainbow-islands', + 'Rainbow Islands', + 'Taito Corporation', + 1987, + array['Rainbow Islands (rev 1)'], + array['Arcade'], + '{"mame":["rbisland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/rbisland.cpp"]}'::jsonb + ), + ( + 'rainbow-islands-extra-version', + 'Rainbow Islands - Extra Version', + 'Taito Corporation', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["rbislande"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/rbisland.cpp"]}'::jsonb + ), + ( + 'raizin-ping-pong', + 'Raizin Ping Pong', + 'Taito', + 2002, + array['Raizin Ping Pong (VER.2.01O)'], + array['Arcade'], + '{"mame":["raizpin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'rally-bike-dash-yarou', + 'Rally Bike / Dash Yarou', + 'Toaplan / Taito Corporation', + 1988, + array['Rally Bike (Europe, US) / Dash Yarou (Japan)'], + array['Arcade'], + '{"mame":["rallybik"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/rallybik.cpp"]}'::jsonb + ), + ( + 'rally-x', + 'Rally X', + 'Namco', + 1980, + array['Rally X (32k Ver.?)'], + array['Arcade'], + '{"mame":["rallyx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rallyx.cpp"]}'::jsonb + ), + ( + 'rambo-export', + 'Rambo (Export)', + 'Sega', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["rambo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'rambo-iii', + 'Rambo III', + 'Taito Europe Corporation', + 1989, + array['Rambo III (Europe)'], + array['Arcade'], + '{"mame":["rambo3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'rampage', + 'Rampage', + 'Bally Midway', + 1986, + array['Rampage (Rev 3, 8/27/86)'], + array['Arcade'], + '{"mame":["rampage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'rampage-world-tour', + 'Rampage: World Tour', + 'Midway', + 1997, + array['Rampage: World Tour (rev 1.3)'], + array['Arcade'], + '{"mame":["rmpgwt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwunit.cpp"]}'::jsonb + ), + ( + 'rampart-trackball', + 'Rampart (Trackball)', + 'Atari Games', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["rampart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/rampart.cpp"]}'::jsonb + ), + ( + 'ranger-mission', + 'Ranger Mission', + 'RIZ Inc./ Sammy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["rangrmsn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'rapid-fire-v1-1-build-239', + 'Rapid Fire (v1.1, Build 239)', + 'Hanaho Games', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["rapidfir"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tickee.cpp"]}'::jsonb + ), + ( + 'rapid-fire-5-konami-endeavour-nsw', + 'Rapid Fire 5 (Konami Endeavour, NSW)', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rapfire5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'rapid-river', + 'Rapid River', + 'Namco', + 1997, + array['Rapid River (US, RD3 Ver. C)'], + array['Arcade'], + '{"mame":["rapidrvr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'rastan', + 'Rastan', + 'Taito Corporation Japan', + 1987, + array['Rastan (World Rev 1)'], + array['Platformer'], + '{"mame":["rastan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/rastan.cpp"]}'::jsonb + ), + ( + 'rave-racer', + 'Rave Racer', + 'Namco', + 1995, + array['Rave Racer (World, RV2 Ver.B)'], + array['Arcade'], + '{"mame":["raverace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'ravensburger-selbstbaucomputer-v0-9', + 'Ravensburger Selbstbaucomputer V0.9', + 'Joseph Glagla and Dieter Feiler', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["ravens"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/ravens.cpp"]}'::jsonb + ), + ( + 'razzmatazz', + 'Razzmatazz', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["razmataz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/zaxxon.cpp"]}'::jsonb + ), + ( + 'rc2014-classic', + 'RC2014 Classic', + 'RFC2795 Ltd', + 2016, + '{}'::text[], + array['Classic'], + '{"mame":["rc2014"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/rc2014.cpp"]}'::jsonb + ), + ( + 'rc2030', + 'RC2030', + 'MIPS', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["rc2030"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mips/mips_i2000.cpp"]}'::jsonb + ), + ( + 'rc3230', + 'RC3230', + 'MIPS', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["rc3230"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mips/mips_r3030.cpp"]}'::jsonb + ), + ( + 'rc702-piccolo', + 'RC702 Piccolo', + 'Regnecentralen', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["rc702"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["regnecentralen/rc702.cpp"]}'::jsonb + ), + ( + 'rc759-piccoline', + 'RC759 Piccoline', + 'Regnecentralen', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["rc759"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["regnecentralen/rc759.cpp"]}'::jsonb + ), + ( + 'rca-ns-500-30-in-1', + 'RCA NS-500 30-in-1', + 'RCA / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rcapnp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'reactor', + 'Reactor', + 'Gottlieb', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["reactor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'reactor-md', + 'Reactor MD', + 'AtGames / Sega / Waixing', + 2009, + array['Reactor MD (Firecore/SunPlus hybrid, PAL)'], + array['Arcade'], + '{"mame":["reactmd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_firecore.cpp"]}'::jsonb + ), + ( + 'reaktor', + 'Reaktor', + 'Zilec', + 1987, + array['Reaktor (Track & Field conversion)'], + array['Arcade'], + '{"mame":["reaktor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/trackfld.cpp"]}'::jsonb + ), + ( + 'real-bout-fatal-fury-real-bout-garou-densetsu-ngm-095-ngh-095', + 'Real Bout Fatal Fury / Real Bout Garou Densetsu (NGM-095 ~ NGH-095)', + 'SNK', + 1995, + '{}'::text[], + array['Fighting'], + '{"mame":["rbff1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'real-bout-fatal-fury-2-the-newcomers-real-bout-garou-densetsu-2-the-newcomers-ngm-2400', + 'Real Bout Fatal Fury 2 - The Newcomers / Real Bout Garou Densetsu 2 - The Newcomers (NGM-2400)', + 'SNK', + 1998, + '{}'::text[], + array['Fighting'], + '{"mame":["rbff2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'real-bout-fatal-fury-special-real-bout-garou-densetsu-special', + 'Real Bout Fatal Fury Special / Real Bout Garou Densetsu Special', + 'SNK', + 1996, + '{}'::text[], + array['Fighting'], + '{"mame":["rbffspec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'reality-tennis', + 'Reality Tennis', + 'TCH', + 1993, + array['Reality Tennis (set 1)'], + array['Sports'], + '{"mame":["rltennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/rltennis.cpp"]}'::jsonb + ), + ( + 'rebound', + 'Rebound', + 'Atari', + 1974, + array['Rebound (Rev B)'], + array['Arcade'], + '{"mame":["rebound"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/pong.cpp"]}'::jsonb + ), + ( + 'rebus', + 'Rebus', + 'Microhard', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["rebus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/splash.cpp"]}'::jsonb + ), + ( + 'recalhorn', + 'Recalhorn', + 'Taito Corporation', + 1994, + array['Recalhorn (Ver 1.42J 1994/5/11, prototype)'], + array['Arcade'], + '{"mame":["recalh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'record', + 'Record', + 'High Video', + 2000, + array['Record (Version 1)'], + array['Arcade'], + '{"mame":["record"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'recordbreaker', + 'Recordbreaker', + 'Taito Corporation Japan', + 1988, + array['Recordbreaker (World)'], + array['Arcade'], + '{"mame":["recordbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_h.cpp"]}'::jsonb + ), + ( + 'red-alert', + 'Red Alert', + 'Irem (GDI license)', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["redalert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/redalert.cpp"]}'::jsonb + ), + ( + 'red-baron', + 'Red Baron', + 'Atari', + 1980, + array['Red Baron (revised hardware)'], + array['Arcade'], + '{"mame":["redbaron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bzone.cpp"]}'::jsonb + ), + ( + 'red-clash', + 'Red Clash', + 'Kaneko', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["redclash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/zerohour.cpp"]}'::jsonb + ), + ( + 'red-corsair', + 'Red Corsair', + 'Nakasawa', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["rcorsair"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/rcorsair.cpp"]}'::jsonb + ), + ( + 'red-earth', + 'Red Earth', + 'Capcom', + 1996, + array['Red Earth (Europe 961121)'], + array['Arcade'], + '{"mame":["redearth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'red-line-v808-encrypted', + 'Red Line (v808, encrypted)', + 'Fun World', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["redline"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/supercrd.cpp"]}'::jsonb + ), + ( + 'red-robin', + 'Red Robin', + 'Elettronolo', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["redrobin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/fastfred.cpp"]}'::jsonb + ), + ( + 'redline-racer-2-players', + 'Redline Racer (2 players)', + 'Cinematronics (Tradewest license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["redlin2p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'reel-em-in-english', + 'Reel ''Em In (English)', + 'WMS', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["reelemin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'reel-fun', + 'Reel Fun', + 'Grayhound Electronics', + 1986, + array['Reel Fun (Version 7.03)'], + array['Arcade'], + '{"mame":["reelfun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'reel-magic-turbo-play', + 'Reel Magic Turbo Play', + 'Accept Ltd.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["reelmtp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/hitpoker.cpp"]}'::jsonb + ), + ( + 'reel-n-quake', + 'Reel''N Quake!', + '', + 1997, + array['Reel''N Quake! (Version 1.05)'], + array['Arcade'], + '{"mame":["reelquak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'regulus', + 'Regulus', + 'Sega', + 1983, + array['Regulus (315-5033, Rev A.)'], + array['Arcade'], + '{"mame":["regulus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'relief-pitcher', + 'Relief Pitcher', + 'Atari Games', + 1992, + array['Relief Pitcher (Rev D, 07 Jun 1992 / 28 May 1992)', 'Relief Pitcher (System 1, prototype)'], + array['Arcade'], + '{"mame":["relief","reliefs1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/relief.cpp","atari/atarisy1.cpp"]}'::jsonb + ), + ( + 'renda-fighter', + 'Renda Fighter', + 'Taito Corporation', + 2000, + array['Renda Fighter (Japan, main ver. 2.02, video ver. 2.03)'], + array['Arcade'], + '{"mame":["rendfgtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/sbmjb.cpp"]}'::jsonb + ), + ( + 'renegade', + 'Renegade', + 'Technos Japan (Taito America license)', + 1986, + array['Renegade (US)'], + array['Arcade'], + '{"mame":["renegade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/renegade.cpp"]}'::jsonb + ), + ( + 'renju-kizoku-kira-kira-gomoku-narabe', + 'Renju Kizoku - Kira Kira Gomoku Narabe', + 'Visco', + 1994, + array['Renju Kizoku - Kira Kira Gomoku Narabe (ver. 1.0)'], + array['Arcade'], + '{"mame":["renju"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/simple_st0016.cpp"]}'::jsonb + ), + ( + 'repulse', + 'Repulse', + 'Crux / Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["repulse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/kyugo.cpp"]}'::jsonb + ), + ( + 'rescue', + 'Rescue', + 'Stern Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["rescue"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scobra.cpp"]}'::jsonb + ), + ( + 'rescue-raider-5-11-87-non-cartridge', + 'Rescue Raider (5/11/87) (non-cartridge)', + 'Bally Midway', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["rescraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'resident', + 'Resident', + 'Igrosoft', + 2004, + array['Resident (100311 World)'], + array['Arcade'], + '{"mame":["resdnt_6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'retro-mini-tv-console-300-in-1', + 'Retro ''Mini TV'' Console 300-in-1', + 'Orb Gaming', + 2015, + '{}'::text[], + array['Arcade'], + '{"mame":["rminitv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'retro-arcade-fc-a6plus-8bt-game-console', + 'Retro Arcade FC A6Plus - 8Bt Game Console', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["a6plus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'retro-dance-mat-110-song-super-stepmania-9-in-1-games-pal', + 'Retro Dance Mat (110 song Super StepMania + 9-in-1 games) (PAL)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["110dance"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'retro-fc-400-in-1', + 'Retro FC 400-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["retro400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'retro-fc-620-in-1', + 'Retro FC 620-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["retro620"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'retro-fc-plus-168-in-1-handheld', + 'Retro FC Plus 168 in 1 Handheld', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rfcp168"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt42xx.cpp"]}'::jsonb + ), + ( + 'retro-racer-30-in-1', + 'Retro Racer (30-in-1)', + 'Orb Gaming', + 2021, + '{}'::text[], + array['Arcade'], + '{"mame":["retror30"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'retro-tv-game-console-300-games', + 'Retro TV Game Console - 300 Games', + 'Lexibook', + 2016, + '{}'::text[], + array['Arcade'], + '{"mame":["rtvgc300"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'retro-tv-game-console-disney-cars-300-games-jg7800dc-1', + 'Retro TV Game Console - Disney Cars - 300 Games (JG7800DC-1)', + 'Lexibook', + 2017, + '{}'::text[], + array['Arcade'], + '{"mame":["rtvgc300cr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'retro-tv-game-console-frozen-300-games', + 'Retro TV Game Console - Frozen - 300 Games', + 'Lexibook', + 2017, + '{}'::text[], + array['Arcade'], + '{"mame":["rtvgc300fz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'retro-tv-game-console-pj-masks-300-games-jg7800pjm-1', + 'Retro TV Game Console - PJ Masks - 300 Games (JG7800PJM-1)', + 'Lexibook', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["rtvgc300pj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'rettou-juudan-nekkyoku-janshi-higashi-nippon-hen', + 'Rettou Juudan Nekkyoku Janshi - Higashi Nippon Hen', + 'Video System Co.', + 1988, + array['Rettou Juudan Nekkyoku Janshi - Higashi Nippon Hen (Japan)'], + array['Arcade'], + '{"mame":["nekkyoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/fromance.cpp"]}'::jsonb + ), + ( + 'return-of-sel-jan-ii', + 'Return of Sel Jan II', + 'Dynax / Face', + 1996, + array['Return of Sel Jan II (Japan, NM557)'], + array['Arcade'], + '{"mame":["seljan2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'return-of-the-invaders', + 'Return of the Invaders', + 'Taito Corporation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["retofinv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/retofinv.cpp"]}'::jsonb + ), + ( + 'return-of-the-jedi', + 'Return of the Jedi', + 'Atari', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["jedi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jedi.cpp"]}'::jsonb + ), + ( + 'revelations', + 'Revelations', + 'Nova Productions Ltd.', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["revlatns"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cops.cpp"]}'::jsonb + ), + ( + 'revenger-84-newer', + 'Revenger ''84 (newer)', + 'Epos Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["revngr84"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'reversi-sensory-challenger', + 'Reversi Sensory Challenger', + 'Fidelity Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["reversic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/csc.cpp"]}'::jsonb + ), + ( + 'revolution-x', + 'Revolution X', + 'Midway', + 1994, + array['Revolution X (revision 2.0 9/8/94)'], + array['Arcade'], + '{"mame":["revx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midxunit.cpp"]}'::jsonb + ), + ( + 'rex-6000', + 'REX 6000', + 'Xircom / Intel', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["rex6000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/rex6000.cpp"]}'::jsonb + ), + ( + 'rezon', + 'Rezon', + 'Allumer', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["rezon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'rhythm-nation-v01-00-04-boot-v3-1-5', + 'Rhythm Nation (v01.00.04, boot v3.1.5)', + 'ICE/Play Mechanix', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["rhnation"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/vp101.cpp"]}'::jsonb + ), + ( + 'rhythm-tengoku', + 'Rhythm Tengoku', + 'Sega / Nintendo - J.P ROOM', + 2007, + array['Rhythm Tengoku (Japan)'], + array['Arcade'], + '{"mame":["rhytngk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'ribbit', + 'Ribbit!', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["ribbit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'riddle-of-pythagoras', + 'Riddle of Pythagoras', + 'Sega / Nasco', + 1986, + array['Riddle of Pythagoras (Japan)'], + array['Arcade'], + '{"mame":["ridleofp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'ridge-racer', + 'Ridge Racer', + 'Namco', + 1993, + array['Ridge Racer (World, RR2 Ver.B)'], + array['Racing'], + '{"mame":["ridgerac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'ridge-racer-2', + 'Ridge Racer 2', + 'Namco', + 1994, + array['Ridge Racer 2 (World, RRS2)'], + array['Racing'], + '{"mame":["ridgera2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'ridge-racer-full-scale', + 'Ridge Racer Full Scale', + 'Namco', + 1993, + array['Ridge Racer Full Scale (World, RRF2)'], + array['Racing'], + '{"mame":["ridgeracf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'ridge-racer-v-arcade-battle', + 'Ridge Racer V Arcade Battle', + 'Namco', + 2000, + array['Ridge Racer V Arcade Battle (RRV3 Ver. A)'], + array['Racing'], + '{"mame":["rrvac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'riding-fight', + 'Riding Fight', + 'Taito Corporation Japan', + 1992, + array['Riding Fight (Ver 1.0O)'], + array['Arcade'], + '{"mame":["ridingf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'riding-hero-ngm-006-ngh-006', + 'Riding Hero (NGM-006 ~ NGH-006)', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ridhero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'rim-rockin-basketball-v2-2', + 'Rim Rockin'' Basketball (v2.2)', + 'Strata / Incredible Technologies', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["rimrockn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'ring-of-destruction-slammasters-ii', + 'Ring of Destruction: Slammasters II', + 'Capcom', + 1994, + array['Ring of Destruction: Slammasters II (Europe 940902)'], + array['Arcade'], + '{"mame":["ringdest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'ring-out-4x4', + 'Ring Out 4x4', + 'Sega', + 1999, + array['Ring Out 4x4 (Rev A)'], + array['Arcade'], + '{"mame":["ringout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'ring-rage', + 'Ring Rage', + 'Taito Corporation Japan', + 1992, + array['Ring Rage (Ver 2.3O 1992/08/09)'], + array['Arcade'], + '{"mame":["ringrage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'ring-riders', + 'Ring Riders', + 'Gaelco', + 2004, + array['Ring Riders (Software version v2.2)'], + array['Arcade'], + '{"mame":["rriders"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelcopc.cpp"]}'::jsonb + ), + ( + 'riot-nmk', + 'Riot (NMK)', + 'Tecmo (NMK license)', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["riot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo16.cpp"]}'::jsonb + ), + ( + 'riot-city', + 'Riot City', + 'Sega / Westone', + 1991, + array['Riot City (Japan)'], + array['Arcade'], + '{"mame":["riotcity"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'rip-cord', + 'Rip Cord', + 'Exidy', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["ripcord"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/circus.cpp"]}'::jsonb + ), + ( + 'rip-off', + 'Rip Off', + 'Cinematronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ripoff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'ripper-ribbit', + 'Ripper Ribbit', + 'LAI Games', + 1997, + array['Ripper Ribbit (Version 3.5)'], + array['Arcade'], + '{"mame":["ripribit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/lethalj.cpp"]}'::jsonb + ), + ( + 'risky-challenge', + 'Risky Challenge', + 'Irem', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["riskchal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m90.cpp"]}'::jsonb + ), + ( + 'river-patrol', + 'River Patrol', + 'Orca', + 1981, + array['River Patrol (Japan)'], + array['Arcade'], + '{"mame":["rpatrol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'riviera-hi-score-2131-08-u5-4a', + 'Riviera Hi-Score (2131-08, U5-4A)', + 'Merit', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["riviera"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'rm-380z-cos-4-0b-f', + 'RM-380Z, COS 4.0B/F', + 'Research Machines', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["rm380zf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rm/rm380z.cpp"]}'::jsonb + ), + ( + 'rm-380z-cos-4-0b-m', + 'RM-380Z, COS 4.0B/M', + 'Research Machines', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["rm380z"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rm/rm380z.cpp"]}'::jsonb + ), + ( + 'road-blaster-data-east-ld', + 'Road Blaster (Data East LD)', + 'Data East', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["rblaster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_ld.cpp"]}'::jsonb + ), + ( + 'road-blasters', + 'Road Blasters', + 'Atari Games', + 1987, + array['Road Blasters (upright, rev 4)'], + array['Arcade'], + '{"mame":["roadblst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy1.cpp"]}'::jsonb + ), + ( + 'road-burners', + 'Road Burners', + 'Atari Games', + 1999, + array['Road Burners (ver 1.04)'], + array['Arcade'], + '{"mame":["roadburn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'road-fighter', + 'Road Fighter', + 'Konami', + 1984, + array['Road Fighter (set 1)'], + array['Arcade'], + '{"mame":["roadf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hyperspt.cpp"]}'::jsonb + ), + ( + 'road-riot-4wd', + 'Road Riot 4WD', + 'Atari Games', + 1991, + array['Road Riot 4WD (04 Dec 1991, conversion kit)'], + array['Arcade'], + '{"mame":["roadriot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarig42.cpp"]}'::jsonb + ), + ( + 'road-riot-s-revenge', + 'Road Riot''s Revenge', + 'Atari Games', + 1993, + array['Road Riot''s Revenge (prototype, Sep 06, 1994)'], + array['Arcade'], + '{"mame":["rrreveng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarigx2.cpp"]}'::jsonb + ), + ( + 'road-runner', + 'Road Runner', + 'Atari Games', + 1985, + array['Road Runner (rev 2)'], + array['Arcade'], + '{"mame":["roadrunn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy1.cpp"]}'::jsonb + ), + ( + 'road-star', + 'Road Star', + 'San Remo Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["roadstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sanremo.cpp"]}'::jsonb + ), + ( + 'roads-edge-round-trip-rv', + 'Roads Edge / Round Trip RV', + 'SNK', + 1997, + array['Roads Edge / Round Trip RV (rev.B)'], + array['Arcade'], + '{"mame":["roadedge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'roadwars-arcadia-v-2-3', + 'RoadWars (Arcadia, V 2.3)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_rdwr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'robin-s-adventure', + 'Robin''s Adventure', + 'Amcoe', + 2004, + array['Robin''s Adventure (Version 1.7E Dual)'], + array['Arcade'], + '{"mame":["robadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'robin-s-adventure-2', + 'Robin''s Adventure 2', + 'Amcoe', + 2004, + array['Robin''s Adventure 2 (Version 1.7E Dual)'], + array['Arcade'], + '{"mame":["robadv2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'robo-army', + 'Robo Army', + 'SNK', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["roboarmy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'robo-wres-2001', + 'Robo Wres 2001', + 'Sanritsu / Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["robowres"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/appoooh.cpp"]}'::jsonb + ), + ( + 'robocop', + 'Robocop', + 'Data East Corporation', + 1988, + array['Robocop (World, revision 4)'], + array['Arcade'], + '{"mame":["robocop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'robocop-2', + 'Robocop 2', + 'Data East Corporation', + 1991, + array['Robocop 2 (Euro/Asia v0.10)'], + array['Arcade'], + '{"mame":["robocop2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cninja.cpp"]}'::jsonb + ), + ( + 'robocop-3-nintendo-super-system', + 'Robocop 3 (Nintendo Super System)', + 'Ocean', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_rob3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'robot-bowl', + 'Robot Bowl', + 'Exidy', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["robotbwl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/circus.cpp"]}'::jsonb + ), + ( + 'robot-training-arm-cs-113', + 'Robot Training Arm CS-113', + 'Sciento b.v.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cs113"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["multitech/mpf1.cpp"]}'::jsonb + ), + ( + 'robotech', + 'Robotech', + 'Coleco', + 2018, + '{}'::text[], + array['Arcade'], + '{"mame":["robotech"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gba.cpp"]}'::jsonb + ), + ( + 'robotron-pc-1715', + 'Robotron PC-1715', + 'Robotron', + 1986, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["rt1715"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/rt1715.cpp"]}'::jsonb + ), + ( + 'robotron-2084-solid-blue-label', + 'Robotron: 2084 (Solid Blue label)', + 'Williams / Vid Kidz', + 1982, + '{}'::text[], + array['Shooter', 'Classic'], + '{"mame":["robotron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'roc-n-rope', + 'Roc''n Rope', + 'Konami', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["rocnrope"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/rocnrope.cpp"]}'::jsonb + ), + ( + 'rock-climber', + 'Rock Climber', + 'Igrosoft', + 2004, + array['Rock Climber (040827 World)'], + array['Arcade'], + '{"mame":["rclimb_3","rockclim"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp","galaxian/galaxian_rockclim.cpp"]}'::jsonb + ), + ( + 'rock-duck', + 'Rock Duck', + 'Datel SAS', + 1983, + array['Rock Duck (prototype?)'], + array['Arcade'], + '{"mame":["rockduck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'rock-tris', + 'Rock Tris', + 'Yun Sung', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rocktris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsung8.cpp"]}'::jsonb + ), + ( + 'rock-n-3', + 'Rock''n 3', + 'Jaleco', + 1999, + array['Rock''n 3 (Japan)'], + array['Arcade'], + '{"mame":["rockn3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'rock-n-4', + 'Rock''n 4', + 'Jaleco / PCCWJ', + 2000, + array['Rock''n 4 (Japan, prototype)'], + array['Arcade'], + '{"mame":["rockn4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'rock-n-megasession', + 'Rock''n MegaSession', + 'Jaleco', + 1999, + array['Rock''n MegaSession (Japan)'], + array['Arcade'], + '{"mame":["rocknms"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'rock-n-rage', + 'Rock''n Rage', + 'Konami', + 1986, + array['Rock''n Rage (World)'], + array['Arcade'], + '{"mame":["rockrage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/rockrage.cpp"]}'::jsonb + ), + ( + 'rock-n-tread', + 'Rock''n Tread', + 'Jaleco', + 1999, + array['Rock''n Tread (Japan)'], + array['Arcade'], + '{"mame":["rockn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'rock-n-tread-2', + 'Rock''n Tread 2', + 'Jaleco', + 1999, + array['Rock''n Tread 2 (Japan)'], + array['Arcade'], + '{"mame":["rockn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'rockin-bowl-o-rama-v2-1-1', + 'Rockin'' Bowl-O-Rama (v2.1.1)', + 'Namco / Cosmodog', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["rbowlorama"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rbowlorama.cpp"]}'::jsonb + ), + ( + 'rockin-kats-playchoice-10', + 'Rockin'' Kats (PlayChoice-10)', + 'Atlus (Nintendo of America license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_rkats"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'rockman-exe-battle-chip-stadium-ver-3-00', + 'Rockman EXE Battle Chip Stadium Ver.3.00', + 'Capcom', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["rockmanbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'rod-land', + 'Rod-Land', + 'Jaleco', + 1990, + array['Rod-Land (World, set 1)'], + array['Arcade'], + '{"mame":["rodland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'rodent-exterminator', + 'Rodent Exterminator', + 'The Game Room', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["rodent"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/39in1.cpp"]}'::jsonb + ), + ( + 'rodeo-king', + 'Rodeo King', + 'Amuzy Corporation', + 2005, + array['Rodeo King (Japan, ver 1.00)'], + array['Arcade'], + '{"mame":["rodeokng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'rohga-armor-force', + 'Rohga: Armor Force', + 'Data East Corporation', + 1991, + array['Rohga: Armor Force (Asia/Europe v5.0)'], + array['Arcade'], + '{"mame":["rohga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/rohga.cpp"]}'::jsonb + ), + ( + 'roller-jammer', + 'Roller Jammer', + 'Nichibutsu / Alice', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["rjammer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/tubep.cpp"]}'::jsonb + ), + ( + 'rollergames', + 'Rollergames', + 'Konami', + 1991, + array['Rollergames (US)'], + array['Arcade'], + '{"mame":["rollerg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/rollerg.cpp"]}'::jsonb + ), + ( + 'rolling-crash-moon-base', + 'Rolling Crash / Moon Base', + 'Nichibutsu', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["rollingc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'rolling-crush', + 'Rolling Crush', + 'SemiCom / Exit (Trust license)', + 1999, + array['Rolling Crush (version 1.07.E - 1999/02/11, Trust license)'], + array['Arcade'], + '{"mame":["rolcrush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dreamwld.cpp"]}'::jsonb + ), + ( + 'rolling-ex-tre-me', + 'ROLLing eX.tre.me', + 'Gaelco (Namco America license)', + 1999, + array['ROLLing eX.tre.me (US)'], + array['Arcade'], + '{"mame":["rollext"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/rollext.cpp"]}'::jsonb + ), + ( + 'rolling-joker', + 'Rolling Joker', + 'Paloma Elektronik?', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["roljokr1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'rolling-joker-v-99-7', + 'Rolling Joker (v.99.7)', + 'Paloma Elektronik?', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["roljokr3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'rolling-joker-v23-11-91', + 'Rolling Joker (v23.11.91)', + 'Paloma Elektronik?', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["roljokr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'rolling-thunder', + 'Rolling Thunder', + 'Namco', + 1986, + array['Rolling Thunder (rev 3)'], + array['Arcade'], + '{"mame":["rthunder"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos86.cpp"]}'::jsonb + ), + ( + 'rolling-thunder-2', + 'Rolling Thunder 2', + 'Namco', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["rthun2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'rolm-9751-model-10', + 'ROLM 9751 Model 10', + 'ROLM Systems, Inc.', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["r9751"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rolm/r9751.cpp"]}'::jsonb + ), + ( + 'roman-legions', + 'Roman Legions', + 'Konami', + null, + array['Roman Legions (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["romanl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'romar-triv', + 'Romar Triv', + 'Romar', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rtriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'rompers', + 'Rompers )', + 'Namco', + 1989, + array['Rompers (Japan, new version (Rev B))'], + array['Arcade'], + '{"mame":["rompers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'ron-jan-super', + 'Ron Jan Super', + 'Wing Co., Ltd', + 1994, + array['Ron Jan Super (set 1)'], + array['Arcade'], + '{"mame":["ronjans"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/pinkiri8.cpp"]}'::jsonb + ), + ( + 'rootin-tootin-la-pa-pa', + 'Rootin'' Tootin'' / La-Pa-Pa', + 'Data East Corporation', + 1983, + array['Rootin'' Tootin'' / La-Pa-Pa (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["clapapa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'rotary-fighter', + 'Rotary Fighter', + 'Kasco', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["rotaryf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/rotaryf.cpp"]}'::jsonb + ), + ( + 'rough-racer', + 'Rough Racer', + 'Sega', + 1990, + array['Rough Racer (Japan, Floppy Based, FD1094 317-0058-06b)'], + array['Arcade'], + '{"mame":["roughrac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'rougien', + 'Rougien', + 'Sanritsu', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["rougien"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/mermaid.cpp"]}'::jsonb + ), + ( + 'roulette-icp-1-pcb', + 'Roulette (ICP-1 PCB)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["icproul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'round-up-5-super-delta-force', + 'Round Up 5 - Super Delta Force', + 'Tatsumi', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["roundup5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/roundup5.cpp"]}'::jsonb + ), + ( + 'round-up', + 'Round-Up', + 'Taito Corporation (Amenip/Centuri license)', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["roundup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'route-16', + 'Route 16', + 'Sun Electronics', + 1981, + array['Route 16 (Sun Electronics, set 1)'], + array['Arcade'], + '{"mame":["route16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/route16.cpp"]}'::jsonb + ), + ( + 'royal-5-x-mas-5', + 'Royal 5+ / X''mas 5', + 'IGS', + 2005, + array['Royal 5+ / X''mas 5 (V101US)'], + array['Arcade'], + '{"mame":["royal5p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'royal-ascot', + 'Royal Ascot', + 'Sega', + 1991, + array['Royal Ascot (Japan, terminal?)'], + array['Arcade'], + '{"mame":["rascot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'royal-ascot-ii', + 'Royal Ascot II', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["rascot2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'royal-card', + 'Royal Card', + 'TAB Austria', + 1991, + array['Royal Card (German, set 1)'], + array['Arcade'], + '{"mame":["royalcrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'royal-card-italian-dino-4-hardware-encrypted', + 'Royal Card (Italian, Dino 4 hardware, encrypted)', + '', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["rcdino4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'royal-card-nichibutsu-hw', + 'Royal Card (Nichibutsu HW)', + 'Amusement', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["roylcrdn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/jangou.cpp"]}'::jsonb + ), + ( + 'royal-king-jang-oh-2-v4-00-1984-jun-10th', + 'Royal King Jang Oh 2 (v4.00 1984 Jun 10th)', + 'SNK / Dyna Corp', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["rkjanoh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'royal-on-ten', + 'Royal on Ten', + '', + 2005, + array['Royal on Ten (hack of Noraut Deluxe Poker)'], + array['Arcade'], + '{"mame":["ndxron10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'royal-queen', + 'Royal Queen', + 'Royal Denshi', + 1984, + array['Royal Queen (Japan 841010 RQ 0-07)'], + array['Arcade'], + '{"mame":["royalqn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nightgal.cpp"]}'::jsonb + ), + ( + 'royal-vegas-joker-card-slow-deal', + 'Royal Vegas Joker Card (slow deal)', + 'Fun World', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["vegasslw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'royale', + 'Royale', + '', + null, + array['Royale (set 1)'], + array['Arcade'], + '{"mame":["royale"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'rpc-86', + 'RPC 86', + 'Intel', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rpc86"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'rs-232-dce-dce-bridge', + 'RS-232 DCE-DCE Bridge', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dcebridge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/dcebridge.cpp"]}'::jsonb + ), + ( + 'rs-6000-type-7009-model-c10-server', + 'RS/6000 Type 7009 Model C10 Server', + 'International Business Machines', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["rs6k7009"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/rs6000_type7xxx.cpp"]}'::jsonb + ), + ( + 'rs2030', + 'RS2030', + 'MIPS', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["rs2030"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mips/mips_i2000.cpp"]}'::jsonb + ), + ( + 'rugby-four-roses-hardware', + 'Rugby? (four roses hardware)', + 'C.M.C.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["rugby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/4roses.cpp"]}'::jsonb + ), + ( + 'ruleta-rci-6-players-spanish', + 'Ruleta RCI (6-players, Spanish)', + 'Entretenimientos GEMINIS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["rcirulet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/corona.cpp"]}'::jsonb + ), + ( + 'ruleta-re-800', + 'Ruleta RE-800', + 'Entretenimientos GEMINIS', + 1991, + array['Ruleta RE-800 (v1.0, set 1)'], + array['Arcade'], + '{"mame":["re800v1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/corona.cpp"]}'::jsonb + ), + ( + 'ruleta-re-800-v3-0', + 'Ruleta RE-800 (v3.0)', + 'Entretenimientos GEMINIS', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["re800v3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/corona.cpp"]}'::jsonb + ), + ( + 'ruleta-re-900', + 'Ruleta RE-900', + 'Entretenimientos GEMINIS', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["re900"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/re900.cpp"]}'::jsonb + ), + ( + 'rumba-lumber', + 'Rumba Lumber', + 'Taito', + 1984, + array['Rumba Lumber (rev 1)'], + array['Arcade'], + '{"mame":["rumba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/flstory.cpp"]}'::jsonb + ), + ( + 'run-and-gun', + 'Run and Gun', + 'Konami', + 1993, + array['Run and Gun (ver EAA 1993 10.8)'], + array['Arcade'], + '{"mame":["rungun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/rungun.cpp"]}'::jsonb + ), + ( + 'run-and-gun-2', + 'Run and Gun 2', + 'Konami', + 1996, + array['Run and Gun 2 (ver UAA)'], + array['Arcade'], + '{"mame":["rungun2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'run-run-puppy', + 'Run Run Puppy', + 'Konami', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["runpuppy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigs.cpp"]}'::jsonb + ), + ( + 'runaway', + 'Runaway', + 'Atari', + 1982, + array['Runaway (Atari, prototype)', 'Runaway (Sun Electronics, Japan)'], + array['Arcade'], + '{"mame":["runaway","runaways"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/runaway.cpp","sunelectronics/dai3wksi.cpp"]}'::jsonb + ), + ( + 'rush-n-attack-playchoice-10', + 'Rush''n Attack (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_rnatk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'rushing-beat-shura', + 'Rushing Beat Shura', + 'bootleg', + 1997, + array['Rushing Beat Shura (SNES bootleg)'], + array['Arcade'], + '{"mame":["rushbets"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'rushing-heroes', + 'Rushing Heroes', + 'Konami', + 1996, + array['Rushing Heroes (ver UAB)'], + array['Arcade'], + '{"mame":["rushhero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'rx15-digital-rhythm-programmer', + 'RX15 Digital Rhythm Programmer', + 'Yamaha', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["rx15"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymrx15.cpp"]}'::jsonb + ), + ( + 'rygar', + 'Rygar', + 'Tecmo', + 1986, + array['Rygar (US set 1)'], + array['Arcade'], + '{"mame":["rygar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo.cpp"]}'::jsonb + ), + ( + 'rygar-playchoice-10', + 'Rygar (PlayChoice-10)', + 'Tecmo (Nintendo of America license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_rygar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'ryu-jin', + 'Ryu Jin', + 'Taito Corporation', + 1993, + array['Ryu Jin (Japan, ET910000B PCB)'], + array['Arcade'], + '{"mame":["ryujin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'ryukyu-fd1094-317-5023a', + 'RyuKyu (FD1094 317-5023A)', + 'Success / Sega', + 1990, + array['RyuKyu (Rev A, Japan) (FD1094 317-5023A)'], + array['Arcade'], + '{"mame":["ryukyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'ryuusei-janshi-kirara-star', + 'Ryuusei Janshi Kirara Star', + 'Jaleco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["kirarast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'rz-1', + 'RZ-1', + 'Casio', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["rz1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/rz1.cpp"]}'::jsonb + ), + ( + 's-p-y-special-project-y', + 'S.P.Y.: Special Project Y.', + 'Konami', + 1989, + array['S.P.Y.: Special Project Y. (World ver. N)'], + array['Arcade'], + '{"mame":["spy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/spy.cpp"]}'::jsonb + ), + ( + 's-r-d-mission', + 'S.R.D. Mission', + 'Kyugo / Taito Corporation', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["srdmissn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/kyugo.cpp"]}'::jsonb + ), + ( + 's-s-mission', + 'S.S. Mission', + 'Comad', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ssmissin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 's-t-u-n-runner', + 'S.T.U.N. Runner', + 'Atari Games', + 1989, + array['S.T.U.N. Runner (rev 6)'], + array['Arcade'], + '{"mame":["stunrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/harddriv.cpp"]}'::jsonb + ), + ( + 's-v-g-spectral-vs-generation-sheng-mo-shiji-m68k-label-v200-arm-label-v200-rom-10-11-05-s-', + 'S.V.G. - Spectral vs Generation / Sheng Mo Shiji (M68k label V200) (ARM label V200, ROM 10/11/05 S.V.G V201)', + 'IGS / Idea Factory', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["svg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 's10-handheld-game-console-520-in-1-fake-entries', + 'S10 Handheld Game Console (520-in-1, fake entries)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["s10fake"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 's10-handheld-game-console-520-in-1', + 'S10 Handheld Game Console (520-in-1)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["s10_520"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 's2000', + 'S2000', + 'Akai', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["s2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/s3000.cpp"]}'::jsonb + ), + ( + 's3000', + 'S3000', + 'Akai', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["s3000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/s3000.cpp"]}'::jsonb + ), + ( + 's3000xl', + 'S3000XL', + 'Akai', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["s3000xl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/s3000.cpp"]}'::jsonb + ), + ( + 's5-game-box-520-in-1', + 'S5 Game Box (520-in-1)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["s5_520"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'saboten-bombers', + 'Saboten Bombers', + 'NMK / Tecmo', + 1992, + array['Saboten Bombers (set 1)'], + array['Arcade'], + '{"mame":["sabotenb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'sadari', + 'Sadari', + 'Dooyong (NTC license)', + 1993, + array['Sadari (Japan, NTC license)'], + array['Arcade'], + '{"mame":["sadari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'safari', + 'Safari', + 'Gremlin', + 1977, + array['Safari (set 1)'], + array['Arcade'], + '{"mame":["safari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'safari-extrema-ukraine-v-43-14', + 'Safari (Extrema, Ukraine, V. 43.14)', + 'Extrema', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["exsafar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'safari-rally', + 'Safari Rally', + 'SNK (Taito license)', + 1979, + array['Safari Rally (World)'], + array['Arcade'], + '{"mame":["safarir"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["phoenix/safarir.cpp"]}'::jsonb + ), + ( + 'safe-money', + 'Safe Money', + 'Konami', + null, + array['Safe Money (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["safemon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'sage-ii', + 'Sage II', + 'Sage Technology', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["sage2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sage/sage2.cpp"]}'::jsonb + ), + ( + 'saikyou-saisoku-battle-racer', + 'Saikyou Saisoku Battle Racer', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["btlracer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'saint-dragon', + 'Saint Dragon', + 'Jaleco', + 1989, + array['Saint Dragon (set 1)'], + array['Arcade'], + '{"mame":["stdragon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'sakura-taisen-hanagumi-taisen-columns-j-971007-v1-010', + 'Sakura Taisen - Hanagumi Taisen Columns (J 971007 V1.010)', + 'Sega', + 1997, + '{}'::text[], + array['Puzzle'], + '{"mame":["hanagumi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'sala-due', + 'Sala Due', + 'Industrias Brasileiras', + null, + array['Sala Due (Version 3.04)'], + array['Arcade'], + '{"mame":["saladue"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'salamander', + 'Salamander', + 'Konami', + 1986, + array['Salamander (version D)'], + array['Arcade'], + '{"mame":["salamand"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'salamander-2', + 'Salamander 2', + 'Konami', + 1996, + array['Salamander 2 (ver JAA)'], + array['Arcade'], + '{"mame":["salmndr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'salary-man-champ-tatakau-salary-man', + 'Salary Man Champ - Tatakau Salary Man', + 'Success / Konami', + 2000, + array['Salary Man Champ - Tatakau Salary Man (GCA18 VER. JAA)'], + array['Arcade'], + '{"mame":["salarymc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'saloon-french-encrypted', + 'Saloon (French, encrypted)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["saloon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'sam-coup', + 'SAM Coupé', + 'Miles Gordon Technology plc', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["samcoupe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["samcoupe/samcoupe.cpp"]}'::jsonb + ), + ( + 'samba-de-amigo', + 'Samba De Amigo', + 'Sega', + 1999, + array['Samba De Amigo (Rev B)'], + array['Arcade'], + '{"mame":["samba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'samba-de-amigo-ver-2000', + 'Samba de Amigo ver. 2000', + 'Sega', + 2000, + array['Samba de Amigo ver. 2000 (Japan)'], + array['Arcade'], + '{"mame":["samba2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'samsung-nuon-enhanced-dvd-player-dvd-n501', + 'Samsung NUON Enhanced DVD Player / DVD-N501', + 'Samsung', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["n501"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["samsung/dvd-n5xx.cpp"]}'::jsonb + ), + ( + 'samurai', + 'Samurai', + 'Sega', + 1980, + array['Samurai (World)'], + array['Arcade'], + '{"mame":["samurai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'samurai-aces', + 'Samurai Aces', + 'Psikyo (Banpresto license)', + 1993, + array['Samurai Aces (World)'], + array['Arcade'], + '{"mame":["samuraia"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo.cpp"]}'::jsonb + ), + ( + 'samurai-nihon-ichi', + 'Samurai Nihon-Ichi', + 'Kaneko / Taito', + 1985, + array['Samurai Nihon-Ichi (rev 1)'], + array['Arcade'], + '{"mame":["tsamurai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tsamurai.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-samurai-spirits-ngm-045', + 'Samurai Shodown / Samurai Spirits (NGM-045)', + 'SNK', + 1993, + '{}'::text[], + array['Fighting'], + '{"mame":["samsho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-64-samurai-spirits-paewang-jeonseol-64', + 'Samurai Shodown 64 / Samurai Spirits / Paewang Jeonseol 64', + 'SNK', + 1997, + '{}'::text[], + array['Fighting'], + '{"mame":["sams64"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-64-warriors-rage-samurai-spirits-2-asura-zanmaden', + 'Samurai Shodown 64: Warriors Rage / Samurai Spirits 2: Asura Zanmaden', + 'SNK', + 1998, + '{}'::text[], + array['Fighting'], + '{"mame":["sams64_2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-ii-shin-samurai-spirits-haohmaru-jigokuhen-ngm-063-ngh-063', + 'Samurai Shodown II / Shin Samurai Spirits - Haohmaru Jigokuhen (NGM-063 ~ NGH-063)', + 'SNK', + 1994, + '{}'::text[], + array['Fighting'], + '{"mame":["samsho2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-iii-samurai-spirits-zankurou-musouken-ngm-087', + 'Samurai Shodown III / Samurai Spirits - Zankurou Musouken (NGM-087)', + 'SNK', + 1995, + '{}'::text[], + array['Fighting'], + '{"mame":["samsho3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-iv-amakusa-s-revenge-samurai-spirits-amakusa-kourin-ngm-222-ngh-222', + 'Samurai Shodown IV - Amakusa''s Revenge / Samurai Spirits - Amakusa Kourin (NGM-222 ~ NGH-222)', + 'SNK', + 1996, + '{}'::text[], + array['Fighting'], + '{"mame":["samsho4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-v-samurai-spirits-zero', + 'Samurai Shodown V / Samurai Spirits Zero', + 'Yuki Enterprise / SNK Playmore', + 2003, + array['Samurai Shodown V / Samurai Spirits Zero (NGM-2700, set 1)'], + array['Fighting'], + '{"mame":["samsho5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'samurai-shodown-v-special-samurai-spirits-zero-special-ngm-2720', + 'Samurai Shodown V Special / Samurai Spirits Zero Special (NGM-2720)', + 'Yuki Enterprise / SNK Playmore', + 2004, + '{}'::text[], + array['Fighting'], + '{"mame":["samsh5sp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'samurai-spirits-sen-v1-00', + 'Samurai Spirits Sen (v1.00)', + 'SNK Playmore', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["samspsen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'samurai-spirits-tenkaichi-kenkakuden', + 'Samurai Spirits Tenkaichi Kenkakuden', + 'Sammy / SNK Playmore', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["samsptk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'samuri-60-in-1', + 'Samuri (60 in 1)', + 'Hummer Technology Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_sam60"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'san-da-ha', + 'San Da Ha', + 'Sealy', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["sandaha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_m16c.cpp"]}'::jsonb + ), + ( + 'san-da-yi', + 'San Da Yi', + 'Sealy', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["sandayi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/menghong.cpp"]}'::jsonb + ), + ( + 'san-francisco-rush', + 'San Francisco Rush', + 'Atari Games', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["sfrush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'san-francisco-rush-2049', + 'San Francisco Rush 2049', + 'Atari Games', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["sf2049"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'san-francisco-rush-2049-special-edition', + 'San Francisco Rush 2049: Special Edition', + 'Atari Games', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["sf2049se"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'san-francisco-rush-2049-tournament-edition', + 'San Francisco Rush 2049: Tournament Edition', + 'Atari Games', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["sf2049te"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'san-francisco-rush-the-rock-boot-rom-l-1-0-guts-oct-6-1997-main-oct-16-1997', + 'San Francisco Rush: The Rock (boot rom L 1.0, GUTS Oct 6 1997 / MAIN Oct 16 1997)', + 'Atari Games', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["sfrushrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'san-se-caishen', + 'San Se Caishen', + 'GMS', + 1999, + array['San Se Caishen (Version 0502)'], + array['Arcade'], + '{"mame":["sscs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'sanguo-lieche', + 'Sanguo Lieche', + 'GMS', + 1999, + array['Sanguo Lieche (880103 1.6 CHINA)'], + array['Arcade'], + '{"mame":["sglc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'sankokushi', + 'Sankokushi', + 'Mitchell', + 1996, + array['Sankokushi (Japan)'], + array['Arcade'], + '{"mame":["3kokushi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'santa-claus-in-001-07-a', + 'Santa Claus (IN.001.07.A)', + 'Astro Corp.', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["santacl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'santa-maria-atronic', + 'Santa Maria (Atronic)', + 'Atronic', + 2002, + array['Santa Maria (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["santam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'sapi-1-zps-1', + 'SAPI-1 ZPS 1', + 'Tesla', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sapi1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tesla/sapi1.cpp"]}'::jsonb + ), + ( + 'sapphire', + 'Sapphire', + 'Novag Industries / Intelligent Heuristic Programming', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["sapphire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/sapphire.cpp"]}'::jsonb + ), + ( + 'sapphire-ii', + 'Sapphire II', + 'Novag Industries / Intelligent Heuristic Programming', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["sapphire2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/sapphire.cpp"]}'::jsonb + ), + ( + 'sar-search-and-rescue', + 'SAR - Search And Rescue', + 'SNK', + 1989, + array['SAR - Search And Rescue (World)'], + array['Arcade'], + '{"mame":["searchar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk68.cpp"]}'::jsonb + ), + ( + 'sarge', + 'Sarge', + 'Bally Midway', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sarge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'sasuke-vs-commander', + 'Sasuke vs. Commander', + 'SNK', + 1980, + array['Sasuke vs. Commander (set 1)'], + array['Arcade'], + '{"mame":["sasuke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk6502.cpp"]}'::jsonb + ), + ( + 'satan-of-saturn', + 'Satan of Saturn', + 'SNK', + 1981, + array['Satan of Saturn (set 1)'], + array['Arcade'], + '{"mame":["satansat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk6502.cpp"]}'::jsonb + ), + ( + 'satan-s-hollow', + 'Satan''s Hollow', + 'Bally Midway', + 1981, + array['Satan''s Hollow (set 1)'], + array['Arcade'], + '{"mame":["shollow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'saturday-night-slam-masters', + 'Saturday Night Slam Masters', + 'Capcom', + 1993, + array['Saturday Night Slam Masters (World 930713)'], + array['Arcade'], + '{"mame":["slammast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'saturn', + 'Saturn', + 'Sega', + 1994, + array['Saturn (USA)'], + array['Arcade'], + '{"mame":["saturn","saturnzi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/saturn.cpp","jaleco/blueprnt.cpp"]}'::jsonb + ), + ( + 'saturn-space-fighter-3d', + 'Saturn: Space Fighter 3D', + 'Data East', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["satsf3d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/astrof.cpp"]}'::jsonb + ), + ( + 'sauro', + 'Sauro', + 'Tecfri', + 1987, + array['Sauro (set 1)'], + array['Arcade'], + '{"mame":["sauro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/sauro.cpp"]}'::jsonb + ), + ( + 'savage-quest', + 'Savage Quest', + 'Interactive Light', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["savquest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/savquest.cpp"]}'::jsonb + ), + ( + 'savage-reign-fu-un-mokushiroku-kakutou-sousei', + 'Savage Reign / Fu''un Mokushiroku - Kakutou Sousei', + 'SNK', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["savagere"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'savant', + 'Savant', + 'Novag Industries / Intelligent Heuristic Programming', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["savant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/savant.cpp"]}'::jsonb + ), + ( + 'sawatte', + 'Sawatte', + 'Sega', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sawatte"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_sawatte.cpp"]}'::jsonb + ), + ( + 'sbc6510', + 'SBC6510', + 'Josip Perusanec', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["sbc6510"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/sbc6510.cpp"]}'::jsonb + ), + ( + 'sc-3000-ntsc', + 'SC-3000 (NTSC)', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["sc3000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000.cpp"]}'::jsonb + ), + ( + 'scacco-matto-space-win', + 'Scacco Matto / Space Win', + 'Playmark', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["spacewin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'schach-und-lerncomputer-slc-1', + 'Schach- und Lerncomputer SLC 1', + 'Dieter Scheuschner', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["slc1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/slc1.cpp"]}'::jsonb + ), + ( + 'schachcomputer-sc-2', + 'Schachcomputer SC 2', + 'VEB Funkwerk Erfurt', + 1981, + array['Schachcomputer SC 2 (rev. E)'], + array['Arcade'], + '{"mame":["sc2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/sc2.cpp"]}'::jsonb + ), + ( + 'schmeiser-robo', + 'Schmeiser Robo', + 'Hot-B', + 1993, + array['Schmeiser Robo (Japan)'], + array['Arcade'], + '{"mame":["schmeisr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/rohga.cpp"]}'::jsonb + ), + ( + 'scion', + 'Scion', + 'Seibu Denshi', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["scion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/wiz.cpp"]}'::jsonb + ), + ( + 'scooter-shooter', + 'Scooter Shooter', + 'Konami', + 1985, + '{}'::text[], + array['Shooter'], + '{"mame":["scotrsht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/scotrsht.cpp"]}'::jsonb + ), + ( + 'score-5', + 'Score 5', + 'Z Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["score5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'scorpio-68000', + 'Scorpio 68000', + 'Novag Industries / Intelligent Heuristic Programming', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["scorpio68"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/diablo.cpp"]}'::jsonb + ), + ( + 'scramble', + 'Scramble', + 'Konami', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["scramble"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'scramble-spirits', + 'Scramble Spirits', + 'Sega', + 1988, + array['Scramble Spirits (World, Floppy Based)'], + array['Arcade'], + '{"mame":["sspirits"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'scrambled-egg', + 'Scrambled Egg', + 'Technos Japan', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["scregg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'scratch-scratch', + 'Scratch!! Scratch!!', + 'Videos A A', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["scratch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videosaa.cpp"]}'::jsonb + ), + ( + 'screw-loose', + 'Screw Loose', + 'Mylstar', + 1983, + array['Screw Loose (prototype)'], + array['Arcade'], + '{"mame":["screwloo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'scrum-try', + 'Scrum Try', + 'Data East Corporation', + 1984, + array['Scrum Try (DECO Cassette) (US) (set 1)'], + array['Arcade'], + '{"mame":["cscrtry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'scud-hammer', + 'Scud Hammer', + 'Jaleco', + 1994, + array['Scud Hammer (ver 1.4)'], + array['Arcade'], + '{"mame":["scudhamm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'scud-race-sega-super-gt-twin-dx', + 'Scud Race / Sega Super GT - Twin/DX', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["scud"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'sd-fighters', + 'SD Fighters', + 'SemiCom / Tirano', + 1996, + array['SD Fighters (Korea)'], + array['Arcade'], + '{"mame":["sdfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'sd-gundam-neo-battling', + 'SD Gundam Neo Battling', + 'Banpresto', + 1992, + array['SD Gundam Neo Battling (Japan)'], + array['Arcade'], + '{"mame":["neobattl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'sd-gundam-psycho-salamander-no-kyoui', + 'SD Gundam Psycho Salamander no Kyoui', + 'Banpresto / Bandai', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["sdgndmps"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/dcon.cpp"]}'::jsonb + ), + ( + 'sd-gundam-sangokushi-rainbow-tairiku-senki', + 'SD Gundam Sangokushi Rainbow Tairiku Senki', + 'Banpresto', + 1993, + array['SD Gundam Sangokushi Rainbow Tairiku Senki (Japan)'], + array['Arcade'], + '{"mame":["grainbow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/legionna.cpp"]}'::jsonb + ), + ( + 'sd-1-32-voice', + 'SD-1 (32 voice)', + 'Ensoniq', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["sd132"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq5505.cpp"]}'::jsonb + ), + ( + 'sdi-strategic-defense-initiative', + 'SDI - Strategic Defense Initiative', + 'Sega', + 1987, + array['SDI - Strategic Defense Initiative (Japan, newer, System 16A, FD1089B 317-0027)'], + array['Arcade'], + '{"mame":["sdi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'sdk-80', + 'SDK-80', + 'Intel', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["sdk80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/sdk80.cpp"]}'::jsonb + ), + ( + 'sea-bass-fishing-juet-971110-v0-001', + 'Sea Bass Fishing (JUET 971110 V0.001)', + 'A wave inc. (Able license)', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["seabass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'sea-battle', + 'Sea Battle', + 'Zaccaria', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["seabattl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/seabattl.cpp"]}'::jsonb + ), + ( + 'sea-devil', + 'Sea Devil', + 'Z Games', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["seadevil"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'sea-fighter-poseidon', + 'Sea Fighter Poseidon', + 'Taito Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sfposeid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'sea-hunter-penguin', + 'Sea Hunter Penguin', + 'WSAC Systems?', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["shpeng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'sea-wolf', + 'Sea Wolf', + 'Dave Nutting Associates / Midway', + 1976, + array['Sea Wolf (set 1)'], + array['Arcade'], + '{"mame":["seawolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'sea-wolf-ii', + 'Sea Wolf II', + 'Dave Nutting Associates / Midway', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["seawolf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'sea-world', + 'Sea World', + 'Amcoe', + 2005, + array['Sea World (Version 1.6E Dual)'], + array['Arcade'], + '{"mame":["seawld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'search-eye', + 'Search Eye', + 'Yun Sung', + 1999, + array['Search Eye (English / Korean / Japanese / Italian)'], + array['Arcade'], + '{"mame":["searchey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp"]}'::jsonb + ), + ( + 'search-eye-plus-v2-0', + 'Search Eye Plus V2.0', + 'Yun Sung', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["searchp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp"]}'::jsonb + ), + ( + 'second-chance', + 'Second Chance', + 'SMS Manufacturing Corp.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["secondch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/smsmcorp.cpp"]}'::jsonb + ), + ( + 'second-love', + 'Second Love', + 'Nichibutsu', + 1986, + array['Second Love (Japan 861201)'], + array['Arcade'], + '{"mame":["secolove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'secret-agent', + 'Secret Agent', + 'Data East Corporation', + 1989, + array['Secret Agent (World, revision 3)'], + array['Arcade'], + '{"mame":["secretag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec0.cpp"]}'::jsonb + ), + ( + 'section-z', + 'Section Z', + 'Capcom', + 1985, + array['Section Z (US)'], + array['Arcade'], + '{"mame":["sectionz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lwings.cpp"]}'::jsonb + ), + ( + 'sega-bass-fishing-challenge-version-a', + 'Sega Bass Fishing Challenge Version A', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["basschal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'sega-bass-fishing-deluxe', + 'Sega Bass Fishing Deluxe', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["bassdx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'sega-cd', + 'Sega CD', + 'Sega', + 1992, + array['Sega CD (USA, NTSC)'], + array['Arcade'], + '{"mame":["segacd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'sega-cd-2', + 'Sega CD 2', + 'Sega', + 1993, + array['Sega CD 2 (USA, NTSC)'], + array['Arcade'], + '{"mame":["segacd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'sega-cd-with-32x', + 'Sega CD with 32X', + 'Sega', + 1994, + array['Sega CD with 32X (USA, NTSC)'], + array['Arcade'], + '{"mame":["32x_scd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'sega-clay-challenge', + 'Sega Clay Challenge', + 'Sega', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["claychal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'sega-club-golf-2006-next-tours-gdx-0018a', + 'Sega Club Golf 2006 Next Tours (GDX-0018A)', + 'Sega', + 2005, + array['Sega Club Golf 2006 Next Tours (Rev A) (GDX-0018A)'], + array['Sports'], + '{"mame":["scg06nt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'sega-golf-club-network-pro-tour-2005-gdx-0010c', + 'Sega Golf Club Network Pro Tour 2005 (GDX-0010C)', + 'Sega', + 2004, + array['Sega Golf Club Network Pro Tour 2005 (Rev C) (GDX-0010C)'], + array['Sports'], + '{"mame":["scg05nt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'sega-marine-fishing', + 'Sega Marine Fishing', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["smarinef"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'sega-netmerc', + 'Sega NetMerc', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["netmerc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model1.cpp"]}'::jsonb + ), + ( + 'sega-ninja-315-5102', + 'Sega Ninja (315-5102)', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["seganinj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'sega-race-tv-export', + 'Sega Race-TV (Export)', + 'Sega', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["segartv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'sega-rally-2-sega-rally-championship', + 'Sega Rally 2: Sega Rally Championship', + 'Sega', + 1998, + '{}'::text[], + array['Racing'], + '{"mame":["srally2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'sega-rally-championship-twin-dx', + 'Sega Rally Championship - Twin/DX', + 'Sega', + 1995, + array['Sega Rally Championship - Twin/DX (Revision C)'], + array['Racing'], + '{"mame":["srallyc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'sega-ski-super-g', + 'Sega Ski Super G', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["skisuprg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'sega-strike-fighter', + 'Sega Strike Fighter', + 'Sega', + 2000, + array['Sega Strike Fighter (Rev A)'], + array['Arcade'], + '{"mame":["sstrkfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'sega-tetris', + 'Sega Tetris', + 'Sega', + 1999, + '{}'::text[], + array['Puzzle'], + '{"mame":["sgtetris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'sega-touring-car-championship-newer', + 'Sega Touring Car Championship (newer)', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["stcc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'sega-water-ski', + 'Sega Water Ski', + 'Sega', + 1997, + array['Sega Water Ski (Japan, Revision A)'], + array['Arcade'], + '{"mame":["segawski"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'segasonic-bros', + 'SegaSonic Bros.', + 'hack', + 1992, + array['SegaSonic Bros. (prototype, hack)'], + array['Arcade'], + '{"mame":["ssonicbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'segasonic-cosmo-fighter', + 'SegaSonic Cosmo Fighter', + 'Sega', + 1993, + array['SegaSonic Cosmo Fighter (World)'], + array['Arcade'], + '{"mame":["sonicfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'segasonic-the-hedgehog', + 'SegaSonic The Hedgehog', + 'Sega', + 1992, + array['SegaSonic The Hedgehog (Japan, rev. C)'], + array['Arcade'], + '{"mame":["sonic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'seibu-cup-soccer', + 'Seibu Cup Soccer', + 'Seibu Kaihatsu', + 1992, + array['Seibu Cup Soccer (set 1)'], + array['Sports'], + '{"mame":["cupsoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/legionna.cpp"]}'::jsonb + ), + ( + 'seicross', + 'Seicross', + 'Nichibutsu / Alice', + 1984, + array['Seicross (set 1)'], + array['Arcade'], + '{"mame":["seicross"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/seicross.cpp"]}'::jsonb + ), + ( + 'seiha', + 'Seiha', + 'Nichibutsu', + 1987, + array['Seiha (Japan 870725)'], + array['Arcade'], + '{"mame":["seiha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'seimei-kantei-meimei-ki-cult-name', + 'Seimei-Kantei-Meimei-Ki Cult Name', + 'I''Max', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["cultname"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/macs.cpp"]}'::jsonb + ), + ( + 'sekai-kaseki-hakken', + 'Sekai Kaseki Hakken', + 'Namco', + 2004, + array['Sekai Kaseki Hakken (Japan, SKH1 Ver.B)'], + array['Arcade'], + '{"mame":["sekaikh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'sel-feena', + 'Sel Feena', + 'East Technology', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["selfeena"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'sel-jan', + 'Sel-Jan', + 'Jem / Dyna Corp', + 1983, + array['Sel-Jan (Japan)'], + array['Arcade'], + '{"mame":["seljan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'select-a-game-machine', + 'Select-A-Game Machine', + 'Entex', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["sag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["entex/sag.cpp"]}'::jsonb + ), + ( + 'selection', + 'Selection', + 'Greyhound Electronics', + 1982, + array['Selection (Version 40.02TMB, set 1)'], + array['Arcade'], + '{"mame":["gs4002"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'sen-know', + 'Sen-Know', + 'Kaneko / Kouyousha', + 1999, + array['Sen-Know (Japan)'], + array['Arcade'], + '{"mame":["senknow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'sengeki-striker', + 'Sengeki Striker', + 'Kaneko / Warashi', + 1997, + array['Sengeki Striker (Asia)'], + array['Arcade'], + '{"mame":["sengekis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'sengoku-sengoku-denshou-ngm-017-ngh-017', + 'Sengoku / Sengoku Denshou (NGM-017 ~ NGH-017)', + 'SNK', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["sengoku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'sengoku-2-sengoku-denshou-2', + 'Sengoku 2 / Sengoku Denshou 2', + 'SNK', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["sengoku2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'sengoku-3-sengoku-densho-2001', + 'Sengoku 3 / Sengoku Densho 2001', + 'Noise Factory / SNK', + 2001, + array['Sengoku 3 / Sengoku Densho 2001 (set 1)'], + array['Arcade'], + '{"mame":["sengoku3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'sengoku-basara-x-cross', + 'Sengoku Basara X Cross', + 'Capcom / Arc System Works', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["sbxc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'sengoku-no-jieitai', + 'Sengoku no Jieitai', + 'Universal', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["nomnlnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmic.cpp"]}'::jsonb + ), + ( + 'senjyo', + 'Senjyo', + 'Tehkan', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["senjyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/senjyo.cpp"]}'::jsonb + ), + ( + 'senko-no-ronde-gdl-0030a', + 'Senko no Ronde (GDL-0030A)', + 'G.Rev', + 2005, + array['Senko no Ronde (Japan, Rev A) (GDL-0030A)'], + array['Arcade'], + '{"mame":["senko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'senko-no-ronde-special-gdl-0038', + 'Senko no Ronde Special (GDL-0038)', + 'G.Rev', + 2006, + array['Senko no Ronde Special (Export, Japan) (GDL-0038)'], + array['Arcade'], + '{"mame":["senkosp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'senkyu', + 'Senkyu', + 'Seibu Kaihatsu', + 1995, + array['Senkyu (Japan, newer)'], + array['Arcade'], + '{"mame":["senkyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'sensor-computachess', + 'Sensor Computachess', + 'Newcrest Technology / CXG Systems / Intelligent Chess Software', + 1985, + array['Sensor Computachess (1985 version)'], + array['Arcade'], + '{"mame":["scpchess"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/computachess.cpp"]}'::jsonb + ), + ( + 'sensory-chess-challenger-12-b-model-6086', + 'Sensory Chess Challenger "12 B" (model 6086)', + 'Fidelity International', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["fscc12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc12.cpp"]}'::jsonb + ), + ( + 'sensory-chess-challenger-6', + 'Sensory Chess Challenger "6"', + 'Fidelity Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["fscc6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc6.cpp"]}'::jsonb + ), + ( + 'sensory-chess-challenger-8', + 'Sensory Chess Challenger "8"', + 'Fidelity Electronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["fscc8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc8.cpp"]}'::jsonb + ), + ( + 'sensory-chess-challenger-9', + 'Sensory Chess Challenger "9"', + 'Fidelity Electronics', + 1982, + array['Sensory Chess Challenger "9" (rev. D)'], + array['Arcade'], + '{"mame":["fscc9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc9.cpp"]}'::jsonb + ), + ( + 'sente-diagnostic-cartridge', + 'Sente Diagnostic Cartridge', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sentetst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'serie-20', + 'Serie 20', + 'Secoinsa', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["secoinsa20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fujitsu/secoinsa20.cpp"]}'::jsonb + ), + ( + 'sex-appeal', + 'Sex Appeal', + 'Grayhound Electronics', + 1992, + array['Sex Appeal (Version 6.02)'], + array['Arcade'], + '{"mame":["sexappl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'sex-triv', + 'Sex Triv', + 'Status Games', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sextriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'sexy-gal', + 'Sexy Gal', + 'Nichibutsu', + 1985, + array['Sexy Gal (Japan 850501 SXG 1-00)'], + array['Arcade'], + '{"mame":["sexygal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nightgal.cpp"]}'::jsonb + ), + ( + 'sexy-gal-tropical', + 'Sexy Gal Tropical', + 'Nichibutsu', + 1985, + array['Sexy Gal Tropical (Japan 850805 SXG T-02)'], + array['Arcade'], + '{"mame":["sgaltrop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nightgal.cpp"]}'::jsonb + ), + ( + 'sexy-parodius', + 'Sexy Parodius', + 'Konami', + 1996, + array['Sexy Parodius (ver JAA)'], + array['Arcade'], + '{"mame":["sexyparo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'sf-hisplitter', + 'SF-HiSplitter', + 'Nintendo', + 1979, + array['SF-HiSplitter (set 1)'], + array['Arcade'], + '{"mame":["highsplt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/n8080.cpp"]}'::jsonb + ), + ( + 'sf-x', + 'SF-X', + 'Nihon Game (Tokyo Nichibutsu license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["sfx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'sg-1000', + 'SG-1000', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["sg1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000.cpp"]}'::jsonb + ), + ( + 'shackled', + 'Shackled', + 'Data East USA', + 1986, + array['Shackled (US)'], + array['Arcade'], + '{"mame":["shackled"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'shadow-dancer', + 'Shadow Dancer', + 'Sega', + 1989, + array['Shadow Dancer (World)'], + array['Arcade'], + '{"mame":["shdancer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'shadow-dancer-mega-tech', + 'Shadow Dancer (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_shado"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'shadow-fighters', + 'Shadow Fighters', + 'Dutech Inc.', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["shadfgtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vcombat.cpp"]}'::jsonb + ), + ( + 'shadow-force', + 'Shadow Force', + 'Technos Japan', + 1993, + array['Shadow Force (World, Version 3)'], + array['Arcade'], + '{"mame":["shadfrce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/shadfrce.cpp"]}'::jsonb + ), + ( + 'shadow-warriors', + 'Shadow Warriors', + 'Tecmo', + 1988, + array['Shadow Warriors (World, set 1)'], + array['Arcade'], + '{"mame":["shadoww"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/gaiden.cpp"]}'::jsonb + ), + ( + 'shadowland-yd3', + 'Shadowland (YD3)', + 'Namco', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["shadowld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'shakatto-tambourine-gds-0002b', + 'Shakatto Tambourine (GDS-0002B)', + 'Sega', + 2000, + array['Shakatto Tambourine (Rev B) (GDS-0002B)'], + array['Arcade'], + '{"mame":["shaktam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shakatto-tambourine-cho-powerup-chu-2k1-aut-gds-0016', + 'Shakatto Tambourine Cho Powerup Chu (2K1 AUT) (GDS-0016)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["shaktamb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shakatto-tambourine-motto-norinori-shinkyoku-tsuika-2k1-spr-gds-0013', + 'Shakatto Tambourine Motto Norinori Shinkyoku Tsuika (2K1 SPR) (GDS-0013)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["shaktmsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shamisen-brothers-vol-1-v1-01k', + 'Shamisen Brothers Vol 1 (V1.01K)', + 'Kato''s', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["shambros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sttechno.cpp"]}'::jsonb + ), + ( + 'shan-liang-san-he-yi-flash-3-in-1-v102-08-23-04-13-03-26', + 'Shan Liang San He Yi (Flash 3-in-1) (V102 08/23/04 13:03:26)', + 'IGS', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["pgm3in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'shanghai', + 'Shanghai', + 'Sunsoft', + 1988, + array['Shanghai (World)'], + array['Arcade'], + '{"mame":["shanghai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shanghai.cpp"]}'::jsonb + ), + ( + 'shanghai-the-great-wall-shanghai-triple-threat-jue-950623-v1-005', + 'Shanghai - The Great Wall / Shanghai Triple Threat (JUE 950623 V1.005)', + 'Sunsoft / Activision', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["shanhigw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'shanghai-ii', + 'Shanghai II', + 'Sunsoft', + 1989, + array['Shanghai II (Japan, set 1)'], + array['Arcade'], + '{"mame":["shangha2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shanghai.cpp"]}'::jsonb + ), + ( + 'shanghai-iii', + 'Shanghai III', + 'Sunsoft', + 1993, + array['Shanghai III (World)'], + array['Arcade'], + '{"mame":["shangha3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/shangha3.cpp"]}'::jsonb + ), + ( + 'shanghai-kid', + 'Shanghai Kid', + 'Taiyo System (Data East license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["shangkid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/shangkid.cpp"]}'::jsonb + ), + ( + 'shark', + 'Shark', + 'US Billiards Inc.', + 1975, + array['Shark (US Billiards)'], + array['Arcade'], + '{"mame":["sharkusb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/usbilliards.cpp"]}'::jsonb + ), + ( + 'shark-attack', + 'Shark Attack', + 'Pacific Novelty', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["sharkatt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacific/thief.cpp"]}'::jsonb + ), + ( + 'shark-jaws', + 'Shark JAWS', + 'Atari/Horror Games', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["sharkjaw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'shark-party-italy-v1-3', + 'Shark Party (Italy, v1.3)', + 'Subsino', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["sharkpy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'sharpshooter', + 'Sharpshooter', + 'P&P Marketing', + 1998, + array['Sharpshooter (Rev 1.9)'], + array['Arcade'], + '{"mame":["sshooter"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/policetr.cpp"]}'::jsonb + ), + ( + 'shatekids', + 'Shatekids', + 'Sammy', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["shatekds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'shayu-daheng-v104cn', + 'Shayu Daheng (V104CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sydh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'sheng-dan-wu-xian', + 'Sheng Dan Wu Xian', + 'IGS', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["sdwx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'sheriff', + 'Sheriff', + 'Nintendo', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sheriff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/n8080.cpp"]}'::jsonb + ), + ( + 'shienryu-juet-961226-v1-000', + 'Shienryu (JUET 961226 V1.000)', + 'Warashi', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["shienryu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'shikigami-no-shiro-ii-the-castle-of-shikigami-ii-gdl-0021', + 'Shikigami no Shiro II / The Castle of Shikigami II (GDL-0021)', + 'Alfa System', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["shikgam2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shikigami-no-shiro-iii-v2-06j', + 'Shikigami no Shiro III (v2.06J)', + 'Alfa System/SKonec Entertainment', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["shikiga3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'shin-nihon-pro-wrestling-toukon-retsuden-3-arcade-edition', + 'Shin Nihon Pro Wrestling Toukon Retsuden 3 Arcade Edition', + 'Namco / Tomy', + 1997, + array['Shin Nihon Pro Wrestling Toukon Retsuden 3 Arcade Edition (Japan, TR1/VER.A)'], + array['Arcade'], + '{"mame":["toukon3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'shin-nihon-pro-wrestling-toukon-retsuden-4-arcade-edition', + 'Shin Nihon Pro Wrestling Toukon Retsuden 4 Arcade Edition', + 'Namco', + 2000, + array['Shin Nihon Pro Wrestling Toukon Retsuden 4 Arcade Edition (Japan, TRF1 Ver.A)'], + array['Arcade'], + '{"mame":["toukon4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shingen-samurai-fighter', + 'Shingen Samurai-Fighter', + 'Jaleco', + 1988, + array['Shingen Samurai-Fighter (Japan, English)'], + array['Arcade'], + '{"mame":["tshingen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'shinobi-mega-tech-sms-based', + 'Shinobi (Mega-Tech, SMS based)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_shnbi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'shinobi-unprotected', + 'Shinobi (unprotected)', + 'Sega', + 1987, + array['Shinobi (set 6, System 16A) (unprotected)'], + array['Arcade'], + '{"mame":["shinobi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'shinobi-fz-2006-isg-selection-master-type-2006', + 'Shinobi / FZ-2006 (ISG Selection Master Type 2006)', + 'bootleg (ISG)', + 2008, + array['Shinobi / FZ-2006 (Korean System 16 bootleg) (ISG Selection Master Type 2006)'], + array['Arcade'], + '{"mame":["shinfz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b_isgsm.cpp"]}'::jsonb + ), + ( + 'shinobi-iii-mega-play', + 'Shinobi III (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_shnb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'shiny-golds', + 'Shiny Golds', + 'Playmark', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["shinygld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'shippe-champion', + 'Shippe Champion', + 'Amuzy Corporation', + 2008, + array['Shippe Champion (Japan, ver 1.02)'], + array['Arcade'], + '{"mame":["shpchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'shizhan-ding-huang-maque', + 'Shizhan Ding Huang Maque', + 'GMS', + 1998, + array['Shizhan Ding Huang Maque (Version 4.1)'], + array['Arcade'], + '{"mame":["rbspm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'shizhan-majiang-wang', + 'Shizhan Majiang Wang', + 'GMS', + 1998, + array['Shizhan Majiang Wang (Version 8.8)'], + array['Arcade'], + '{"mame":["rbmk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'shizhan-majiang-wangchao', + 'Shizhan Majiang Wangchao', + 'GMS', + 1998, + array['Shizhan Majiang Wangchao (Version 2.0)'], + array['Arcade'], + '{"mame":["smwc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'shizhan-sanguo-ji-jiaqiang-ban', + 'Shizhan Sanguo Ji Jiaqiang Ban', + 'GMS', + 1998, + array['Shizhan Sanguo Ji Jiaqiang Ban (Version 8.9 980413)'], + array['Arcade'], + '{"mame":["ssanguoj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'shock-troopers', + 'Shock Troopers', + 'Saurus', + 1997, + array['Shock Troopers (set 1)'], + array['Arcade'], + '{"mame":["shocktro"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'shock-troopers-2nd-squad', + 'Shock Troopers - 2nd Squad', + 'Saurus', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["shocktr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'shocking', + 'Shocking', + 'Yun Sung', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["shocking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/yunsun16.cpp"]}'::jsonb + ), + ( + 'shogun-warriors', + 'Shogun Warriors', + 'Kaneko', + 1992, + array['Shogun Warriors (World)'], + array['Arcade'], + '{"mame":["shogwarr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'shoot-away-ii', + 'Shoot Away II', + 'Namco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["shootaw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/shootaway2.cpp"]}'::jsonb + ), + ( + 'shoot-out', + 'Shoot Out', + 'Data East USA', + 1985, + array['Shoot Out (US)'], + array['Arcade'], + '{"mame":["shootout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/shootout.cpp"]}'::jsonb + ), + ( + 'shoot-the-bull', + 'Shoot the Bull', + 'Bally Midway', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["shootbul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'shooting-gallery', + 'Shooting Gallery', + 'Seatongrove UK, Ltd. (Zaccaria license)', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["shootgal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'shooting-love-2007', + 'Shooting Love 2007', + 'Triangle Service', + 2007, + array['Shooting Love 2007 (Japan)'], + array['Arcade'], + '{"mame":["sl2007"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shooting-master-8751-315-5159a', + 'Shooting Master (8751 315-5159a)', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["shtngmst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'shooting-star', + 'Shooting Star', + 'Nova', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["shtstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/artmagic.cpp"]}'::jsonb + ), + ( + 'shootout-at-old-tucson-3do-hardware', + 'Shootout at Old Tucson (3DO hardware)', + 'American Laser Games', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["sht3do"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/3do.cpp"]}'::jsonb + ), + ( + 'shootout-pool', + 'Shootout Pool', + 'Sega', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["shootopl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'shot-rider', + 'Shot Rider', + 'Seibu Kaihatsu', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["shtrider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/travrusa.cpp"]}'::jsonb + ), + ( + 'shougi', + 'Shougi', + 'Alpha Denshi Co. (Tehkan license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["shougi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/shougi.cpp"]}'::jsonb + ), + ( + 'shougi-no-tatsujin-master-of-shougi', + 'Shougi no Tatsujin - Master of Shougi', + 'ADK / SNK', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["moshougi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'shougi-part-ii', + 'Shougi Part II', + 'Alpha Denshi Co. (Tehkan license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["shougi2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/shougi.cpp"]}'::jsonb + ), + ( + 'show-hand-italy', + 'Show Hand (Italy)', + 'Astro Corp.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["showhand"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'show-queen', + 'Show Queen', + 'Konami', + null, + array['Show Queen (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["showqn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'showdown', + 'Showdown', + 'Exidy', + 1988, + array['Showdown (version 5.0)'], + array['Arcade'], + '{"mame":["showdown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'shrike-avenger', + 'Shrike Avenger', + 'Bally/Sente', + 1986, + array['Shrike Avenger (prototype)'], + array['Arcade'], + '{"mame":["shrike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'shuang-long-qiang-zhu-2-vs', + 'Shuang Long Qiang Zhu 2 VS', + 'IGS', + 1998, + array['Shuang Long Qiang Zhu 2 VS (China, VS203J, set 1)'], + array['Arcade'], + '{"mame":["slqz2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'shuang-long-qiang-zhu-3', + 'Shuang Long Qiang Zhu 3', + 'IGS', + 1999, + array['Shuang Long Qiang Zhu 3 (China, VS107C)'], + array['Arcade'], + '{"mame":["slqz3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'shuang-long-qiang-zhu-tebie-ban-v104cn', + 'Shuang Long Qiang Zhu Tebie Ban (V104CN)', + 'IGS', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["slqzsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'shuffleboard', + 'Shuffleboard', + 'Midway', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["shuffle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'shuffleshot-v1-40', + 'Shuffleshot (v1.40)', + 'Incredible Technologies', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["shufshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'shuiguo-leyuan-ii-v150ui', + 'Shuiguo Leyuan II (V150UI)', + 'IGS', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["sleyuan2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'shuihu-feng-yun-zhuan', + 'Shuihu Feng Yun Zhuan', + 'WAH LAP', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["shuifeng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_ybox.cpp"]}'::jsonb + ), + ( + 'shun', + 'Shun', + 'Taito Corporation', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["shun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/pkspirit.cpp"]}'::jsonb + ), + ( + 'shuriken-boy', + 'Shuriken Boy', + 'Konami', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["shuriboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'shuttle-invader', + 'Shuttle Invader', + 'Omori Electric Co., Ltd.', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["shuttlei"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'shuuz', + 'Shuuz', + 'Atari Games', + 1990, + array['Shuuz (version 8.0)'], + array['Arcade'], + '{"mame":["shuuz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/shuuz.cpp"]}'::jsonb + ), + ( + 'si-se-7', + 'Si Se 7', + 'Yung Yu / CYE', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["sise7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gluck2.cpp"]}'::jsonb + ), + ( + 'side-by-side', + 'Side by Side', + 'Taito', + 1996, + array['Side by Side (Ver 3.0 OK)'], + array['Arcade'], + '{"mame":["sidebs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitojc.cpp"]}'::jsonb + ), + ( + 'side-by-side-2', + 'Side by Side 2', + 'Taito', + 1997, + array['Side by Side 2 (Ver 2.6 OK)'], + array['Arcade'], + '{"mame":["sidebs2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitojc.cpp"]}'::jsonb + ), + ( + 'side-pocket', + 'Side Pocket', + 'Data East Corporation', + 1986, + array['Side Pocket (World)', 'Side Pocket (Conny bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["sidepckt","sidepmbc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/sidepckt.cpp","sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'side-trak', + 'Side Trak', + 'Exidy', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sidetrac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'sidewinder', + 'Sidewinder', + 'Arcadia Systems', + 1988, + array['Sidewinder (Arcadia, set 1, V 2.1)'], + array['Arcade'], + '{"mame":["ar_sdwr","sidewndr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp","misc/acefruit.cpp"]}'::jsonb + ), + ( + 'silent-dragon', + 'Silent Dragon', + 'Taito Corporation Japan', + 1992, + array['Silent Dragon (World)'], + array['Arcade'], + '{"mame":["silentd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'silent-scope', + 'Silent Scope', + 'Konami', + 1999, + array['Silent Scope (ver UAD, Ver 1.33)'], + array['Arcade'], + '{"mame":["sscope"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hornet.cpp"]}'::jsonb + ), + ( + 'silent-scope-2-dark-silhouette', + 'Silent Scope 2 : Dark Silhouette', + 'Konami', + 2000, + array['Silent Scope 2 : Dark Silhouette (ver UAD, Ver 1.03)'], + array['Arcade'], + '{"mame":["sscope2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hornet.cpp"]}'::jsonb + ), + ( + 'silent-scope-ex', + 'Silent Scope EX', + 'Konami', + 2001, + array['Silent Scope EX (ver EAC 1.20)'], + array['Arcade'], + '{"mame":["sscopex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'silent-scope-fortune-hunter', + 'Silent Scope Fortune Hunter', + 'Konami', + 2002, + array['Silent Scope Fortune Hunter (ver EAA)'], + array['Arcade'], + '{"mame":["sscopefh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'silhouette', + 'Silhouette', + 'ACE', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["acefruit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/acefruit.cpp"]}'::jsonb + ), + ( + 'silk-worm', + 'Silk Worm', + 'Tecmo', + 1988, + array['Silk Worm (World)'], + array['Arcade'], + '{"mame":["silkworm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmo.cpp"]}'::jsonb + ), + ( + 'silver-game', + 'Silver Game', + '', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["silverga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'silver-millennium', + 'Silver Millennium', + 'Para', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["silvmil"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["f32/silvmil.cpp"]}'::jsonb + ), + ( + 'silverball-6-32', + 'Silverball (6.32)', + 'TAB Austria', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["slvrball632"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/silverball.cpp"]}'::jsonb + ), + ( + 'silverball-7-20', + 'Silverball (7.20)', + 'TAB Austria', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["slvrball720"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/silverball.cpp"]}'::jsonb + ), + ( + 'silverball-bulova', + 'Silverball Bulova', + 'TAB Austria', + null, + array['Silverball Bulova (4.09, set 1)'], + array['Arcade'], + '{"mame":["slvrballbu409"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/silverball.cpp"]}'::jsonb + ), + ( + 'simatic-pg675', + 'Simatic PG675', + 'Siemens', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pg675"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["siemens/pg685.cpp"]}'::jsonb + ), + ( + 'simatic-pg685-oua11', + 'Simatic PG685 OUA11', + 'Siemens', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pg685"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["siemens/pg685.cpp"]}'::jsonb + ), + ( + 'simple-6502-machine', + 'Simple 6502 Machine', + 'Grant Searle', + 2013, + '{}'::text[], + array['Arcade'], + '{"mame":["gs6502"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/gs6502.cpp"]}'::jsonb + ), + ( + 'simple-6809-machine', + 'Simple 6809 Machine', + 'Grant Searle', + 2011, + '{}'::text[], + array['Arcade'], + '{"mame":["gs6809"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/gs6809.cpp"]}'::jsonb + ), + ( + 'simple-cp-m-machine', + 'Simple CP/M Machine', + 'Grant Searle', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gscpm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/gscpm.cpp"]}'::jsonb + ), + ( + 'simple-z-80-machine', + 'Simple Z-80 Machine', + 'Grant Searle', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["gsz80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/gsz80.cpp"]}'::jsonb + ), + ( + 'simply-the-best-cz750-v1-0', + 'Simply the Best (CZ750, v1.0)', + 'Kajot', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["simpbest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magicard.cpp"]}'::jsonb + ), + ( + 'sindbad-mystery', + 'Sindbad Mystery', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["sindbadm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80r.cpp"]}'::jsonb + ), + ( + 'sinistar', + 'Sinistar', + 'Williams', + 1982, + array['Sinistar (revision 3, upright)'], + array['Arcade'], + '{"mame":["sinistar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'sitcom', + 'SITCOM', + 'San Bergmans & Izabella Malcolm', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["sitcom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/sitcom.cpp"]}'::jsonb + ), + ( + 'six-trak-model-610-rev-b-c', + 'Six-Trak (Model 610) Rev B/C', + 'Sequential Circuits', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sixtrak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sequential/sixtrak.cpp"]}'::jsonb + ), + ( + 'sk-1', + 'SK-1', + 'Casio', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sk1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/sk1.cpp"]}'::jsonb + ), + ( + 'sk-10', + 'SK-10', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sk10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/sk1.cpp"]}'::jsonb + ), + ( + 'sk-2', + 'SK-2', + 'Casio', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sk2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/sk1.cpp"]}'::jsonb + ), + ( + 'sk-5', + 'SK-5', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sk5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/sk1.cpp"]}'::jsonb + ), + ( + 'skat-bierskat-solitaire-f2', + 'Skat Bierskat Solitaire (F2)', + 'ADP', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["sbsoli"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/adp.cpp"]}'::jsonb + ), + ( + 'skat-tv', + 'Skat TV', + 'ADP', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["skattv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adp/adp.cpp"]}'::jsonb + ), + ( + 'skater', + 'Skater', + 'Data East Corporation', + 1983, + array['Skater (DECO Cassette) (Japan)'], + array['Arcade'], + '{"mame":["cskater"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'skeet-shot', + 'Skeet Shot', + 'Dynamo', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["skeetsht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/skeetsht.cpp"]}'::jsonb + ), + ( + 'ski-champ', + 'Ski Champ', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["skichamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'skill-98', + 'Skill ''98', + 'Amcoe', + 1998, + array['Skill ''98 (Talking ver. s98-1.33)'], + array['Arcade'], + '{"mame":["skill98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'skill-chance', + 'Skill Chance', + 'Wing Co., Ltd.', + 1986, + array['Skill Chance (W-7, set 1, 62-98 main)'], + array['Arcade'], + '{"mame":["skillch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'skill-cherry-97', + 'Skill Cherry ''97', + 'Amcoe', + 1997, + array['Skill Cherry ''97 (Talking ver. sc3.52)'], + array['Arcade'], + '{"mame":["schery97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'skill-drop-georgia', + 'Skill Drop Georgia', + 'Astro Corp.', + 2002, + array['Skill Drop Georgia (Ver. G1.01S, Oct 1 2002)'], + array['Arcade'], + '{"mame":["skilldrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'skimaxx', + 'Skimaxx', + 'Kyle Hodgetts / ICE', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["skimaxx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/skimaxx.cpp"]}'::jsonb + ), + ( + 'skins-game-1-06', + 'Skins Game (1.06)', + 'Midway', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["mwskins"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/atlantis.cpp"]}'::jsonb + ), + ( + 'skins-game-nintendo-super-system', + 'Skins Game (Nintendo Super System)', + 'Irem', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_skin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'skull-and-crossbones', + 'Skull & Crossbones', + 'Atari Games', + 1989, + array['Skull & Crossbones (rev 5)'], + array['Arcade'], + '{"mame":["skullxbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/skullxbo.cpp"]}'::jsonb + ), + ( + 'skull-fang', + 'Skull Fang', + 'Data East Corporation', + 1996, + array['Skull Fang (Europe 1.13)'], + array['Arcade'], + '{"mame":["skullfng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_mlc.cpp"]}'::jsonb + ), + ( + 'sky-adventure', + 'Sky Adventure', + 'Alpha Denshi Co.', + 1989, + array['Sky Adventure (World)'], + array['Arcade'], + '{"mame":["skyadvnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k.cpp"]}'::jsonb + ), + ( + 'sky-alert', + 'Sky Alert', + 'Metro', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["skyalert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'sky-army', + 'Sky Army', + 'Shoei', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["skyarmy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/skyarmy.cpp"]}'::jsonb + ), + ( + 'sky-base', + 'Sky Base', + 'Omori Electric Co., Ltd.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["skybase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'sky-bumper', + 'Sky Bumper', + 'Venture Line', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["skybump"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["videogames/looping.cpp"]}'::jsonb + ), + ( + 'sky-challenger-j-000406-v1-000', + 'Sky Challenger (J 000406 V1.000)', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["skychal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'sky-chuter', + 'Sky Chuter', + 'Irem', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["skychut"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m10.cpp"]}'::jsonb + ), + ( + 'sky-destroyer', + 'Sky Destroyer', + 'Taito Corporation', + 1985, + array['Sky Destroyer (Japan)'], + array['Arcade'], + '{"mame":["skydest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/cyclemb.cpp"]}'::jsonb + ), + ( + 'sky-diver', + 'Sky Diver', + 'Atari', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["skydiver"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/skydiver.cpp"]}'::jsonb + ), + ( + 'sky-fox', + 'Sky Fox', + 'Jaleco (Nichibutsu USA license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["skyfox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/skyfox.cpp"]}'::jsonb + ), + ( + 'sky-kid', + 'Sky Kid', + 'Namco', + 1985, + array['Sky Kid (new version)'], + array['Arcade'], + '{"mame":["skykid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/skykid.cpp"]}'::jsonb + ), + ( + 'sky-kid-deluxe', + 'Sky Kid Deluxe', + 'Namco', + 1986, + array['Sky Kid Deluxe (set 1)'], + array['Arcade'], + '{"mame":["skykiddx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos86.cpp"]}'::jsonb + ), + ( + 'sky-lancer', + 'Sky Lancer', + 'Orca', + 1983, + array['Sky Lancer (Bordun, version U450C)'], + array['Arcade'], + '{"mame":["skylancr","skylncr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/funkybee.cpp","bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'sky-love', + 'Sky Love', + 'Omori Electric Co., Ltd.', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["skylove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'sky-raider', + 'Sky Raider', + 'Atari', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["skyraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/skyraid.cpp"]}'::jsonb + ), + ( + 'sky-robo', + 'Sky Robo', + 'Nichibutsu', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["skyrobo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/armedf.cpp"]}'::jsonb + ), + ( + 'sky-skipper', + 'Sky Skipper', + 'Nintendo', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["skyskipr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/popeye.cpp"]}'::jsonb + ), + ( + 'sky-smasher', + 'Sky Smasher', + 'Nihon System', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["skysmash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/bloodbro.cpp"]}'::jsonb + ), + ( + 'sky-soldiers', + 'Sky Soldiers', + 'Alpha Denshi Co. (SNK of America/Romstar license)', + 1988, + array['Sky Soldiers (US)'], + array['Arcade'], + '{"mame":["skysoldr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k.cpp"]}'::jsonb + ), + ( + 'sky-target', + 'Sky Target', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["skytargt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'slap-shooter', + 'Slap Shooter', + 'Sega', + 1986, + '{}'::text[], + array['Shooter'], + '{"mame":["slapshtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'slap-shot', + 'Slap Shot', + 'Taito Corporation Japan', + 1994, + array['Slap Shot (Ver 3.0 O)'], + array['Arcade'], + '{"mame":["slapshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/slapshot.cpp"]}'::jsonb + ), + ( + 'slashout', + 'Slashout', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["slasho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'slashout-gds-0004', + 'Slashout (GDS-0004)', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["slashout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'slicer', + 'Slicer', + 'Slicer Computers', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["slicer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["slicer/slicer.cpp"]}'::jsonb + ), + ( + 'slime-kun', + 'Slime Kun', + 'Konami', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["slimekun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'slip-stream-brazil-950515', + 'Slip Stream (Brazil 950515)', + 'Capcom', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["slipstrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'slither', + 'Slither', + 'Century II (GDI license)', + 1982, + array['Slither (set 1)'], + array['Arcade'], + '{"mame":["slither"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'sliver', + 'Sliver', + 'Hollow Corp', + 1996, + array['Sliver (set 1)'], + array['Arcade'], + '{"mame":["sliver"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sliver.cpp"]}'::jsonb + ), + ( + 'slotters-club-umi-monogatari', + 'Slotters Club: Umi Monogatari', + 'Irem', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["scumimon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m119.cpp"]}'::jsonb + ), + ( + 'sm1810', + 'SM1810', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sm1810"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/isbc.cpp"]}'::jsonb + ), + ( + 'small-scale-experimental-machine-ssem-baby', + 'Small-Scale Experimental Machine (SSEM), ''Baby''', + 'Manchester University', + 1948, + '{}'::text[], + array['Arcade'], + '{"mame":["ssem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mchester/ssem.cpp"]}'::jsonb + ), + ( + 'smash-court-pro-tournament-scp1', + 'Smash Court Pro Tournament (SCP1)', + 'Namco', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["scptour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'smash-t-v', + 'Smash T.V.', + 'Williams', + 1990, + array['Smash T.V. (rev 8.00)'], + array['Arcade'], + '{"mame":["smashtv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'smashing-drive', + 'Smashing Drive', + 'Gaelco', + 2000, + array['Smashing Drive (World)'], + array['Arcade'], + '{"mame":["smashdrv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/atvtrack.cpp"]}'::jsonb + ), + ( + 'sms-1000', + 'SMS-1000', + 'Scientific Micro Systems', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sms1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/pdp11.cpp"]}'::jsonb + ), + ( + 'snacks-n-jaxson', + 'Snacks''n Jaxson', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["snakjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'snake-pit', + 'Snake Pit', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["snakepit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'snap-jack', + 'Snap Jack', + 'Universal', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["snapjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/ladybug.cpp"]}'::jsonb + ), + ( + 'snapper', + 'Snapper', + 'Philko', + 1990, + array['Snapper (Korea)'], + array['Arcade'], + '{"mame":["snapper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'snk-vs-capcom-svc-chaos-jamma-pcb-neo-mvh-mvo-pcb', + 'SNK vs. Capcom - SVC Chaos (JAMMA PCB, NEO-MVH MVO PCB)', + 'Playmore / Capcom', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["svcpcb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neopcb.cpp"]}'::jsonb + ), + ( + 'snk-vs-capcom-svc-chaos-ngm-2690-ngh-2690', + 'SNK vs. Capcom - SVC Chaos (NGM-2690 ~ NGH-2690)', + 'Playmore / Capcom', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["svc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'snooker-10', + 'Snooker 10', + 'Sandii''', + 1998, + array['Snooker 10 (Ver 1.11)'], + array['Arcade'], + '{"mame":["snookr10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/snookr10.cpp"]}'::jsonb + ), + ( + 'snow-board-championship', + 'Snow Board Championship', + 'Gaelco / OMK', + 1997, + array['Snow Board Championship (version 2.1)'], + array['Arcade'], + '{"mame":["snowboar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'snow-bros-nick-and-tom', + 'Snow Bros. - Nick & Tom', + 'Toaplan', + 1990, + array['Snow Bros. - Nick & Tom (set 1)'], + array['Arcade'], + '{"mame":["snowbros"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'snow-bros-2-with-new-elves-otenki-paradise-hanafram', + 'Snow Bros. 2 - With New Elves / Otenki Paradise (Hanafram)', + 'Hanafram', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["snowbro2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/snowbro2.cpp"]}'::jsonb + ), + ( + 'snow-brothers-3-magical-adventure', + 'Snow Brothers 3 - Magical Adventure', + 'Syrmex', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["snowbro3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'snowball-war-wakuwaku-yukigassen', + 'Snowball War - WakuWaku Yukigassen', + 'Sealy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["snowbwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sealy/sealy_fr.cpp"]}'::jsonb + ), + ( + 'soccer-ramtek', + 'Soccer (Ramtek)', + 'Ramtek', + 1973, + '{}'::text[], + array['Sports'], + '{"mame":["soccrrmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/ramtek.cpp"]}'::jsonb + ), + ( + 'soccer-10', + 'Soccer 10', + 'I.G.T. International Games Trade', + 1996, + array['Soccer 10 (ver. 16.44)'], + array['Sports'], + '{"mame":["soccer10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'soccer-brawl-ngm-031', + 'Soccer Brawl (NGM-031)', + 'SNK', + 1991, + '{}'::text[], + array['Sports'], + '{"mame":["socbrawl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'soccer-new-italian', + 'Soccer New (Italian)', + '', + null, + '{}'::text[], + array['Sports'], + '{"mame":["soccernw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'soccer-superstars', + 'Soccer Superstars', + 'Konami', + 1994, + array['Soccer Superstars (ver EAC)'], + array['Sports'], + '{"mame":["soccerss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'sokonuke-taisen-game', + 'Sokonuke Taisen Game', + 'Sammy Industries', + 1995, + array['Sokonuke Taisen Game (Japan)'], + array['Arcade'], + '{"mame":["sokonuke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'sol-divide-sword-of-darkness', + 'Sol Divide: Sword Of Darkness', + 'Psikyo', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["soldivid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'solar-assault', + 'Solar Assault', + 'Konami', + 1997, + array['Solar Assault (ver UAA)'], + array['Arcade'], + '{"mame":["slrasslt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/gticlub.cpp"]}'::jsonb + ), + ( + 'solar-fox-upright', + 'Solar Fox (upright)', + 'Bally Midway', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["solarfox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'solar-games-80-in-1-pal', + 'Solar Games 80-in-1 (PAL)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["solargm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'solar-jetman-playchoice-10', + 'Solar Jetman (PlayChoice-10)', + 'Rare', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_sjetm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'solar-quest', + 'Solar Quest', + 'Cinematronics', + 1981, + array['Solar Quest (rev 10 8 81)'], + array['Arcade'], + '{"mame":["solarq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'solar-war', + 'Solar War', + 'Atari', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["solarwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/videopin.cpp"]}'::jsonb + ), + ( + 'soldam', + 'Soldam', + 'Jaleco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["soldam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'soldier-girl-amazon', + 'Soldier Girl Amazon', + 'Nichibutsu', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["amazon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/terracre.cpp"]}'::jsonb + ), + ( + 'solitaire', + 'Solitaire', + 'F2 System', + 1999, + array['Solitaire (version 2.5)'], + array['Arcade'], + '{"mame":["solitaire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'solitary-fighter', + 'Solitary Fighter', + 'Taito Corporation Japan', + 1991, + array['Solitary Fighter (World)'], + array['Arcade'], + '{"mame":["solfigtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'solite-spirits', + 'Solite Spirits', + 'Promat', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["slspirit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["promat/1945kiii.cpp"]}'::jsonb + ), + ( + 'solomon-s-key', + 'Solomon''s Key', + 'Tecmo', + 1986, + array['Solomon''s Key (US)'], + array['Arcade'], + '{"mame":["solomon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/solomon.cpp"]}'::jsonb + ), + ( + 'solvalou', + 'Solvalou', + 'Namco', + 1991, + array['Solvalou (SV1, Japan)'], + array['Arcade'], + '{"mame":["solvalou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21_c67.cpp"]}'::jsonb + ), + ( + 'something-for-nothing', + 'Something For Nothing', + 'WMS', + null, + array['Something For Nothing (Russian)'], + array['Arcade'], + '{"mame":["sonoth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'son-son', + 'Son Son', + 'Capcom', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sonson"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/sonson.cpp"]}'::jsonb + ), + ( + 'songjiangyanyi-final', + 'Songjiangyanyi Final', + 'WAH LAP', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["songjang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_ybox.cpp"]}'::jsonb + ), + ( + 'sonic-blast-man-ii-special-turbo', + 'Sonic Blast Man II Special Turbo', + 'bootleg', + 1997, + array['Sonic Blast Man II Special Turbo (SNES bootleg)'], + array['Arcade'], + '{"mame":["sblast2b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'sonic-blast-man-no-janken-battle', + 'Sonic Blast Man no Janken Battle', + 'Taito Corporation', + 1998, + array['Sonic Blast Man no Janken Battle (Japan, main ver. 1.1, video ver. 1.0)'], + array['Arcade'], + '{"mame":["sbmjb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/sbmjb.cpp"]}'::jsonb + ), + ( + 'sonic-boom-fd1094-317-0053', + 'Sonic Boom (FD1094 317-0053)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sonicbom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'sonic-championship', + 'Sonic Championship', + 'Sega', + 1996, + array['Sonic Championship (USA)'], + array['Arcade'], + '{"mame":["schamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'sonic-the-hedgehog', + 'Sonic The Hedgehog', + 'Sega', + 1991, + array['Sonic The Hedgehog (Mega-Tech, set 1)'], + array['Arcade'], + '{"mame":["mt_sonic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'sonic-the-hedgehog-mega-play', + 'Sonic The Hedgehog (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_sonic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'sonic-the-hedgehog-2', + 'Sonic The Hedgehog 2', + 'bootleg / Sega', + 1993, + array['Sonic The Hedgehog 2 (bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["sonic2mb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'sonic-the-hedgehog-2-mega-play', + 'Sonic The Hedgehog 2 (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_soni2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'sonic-the-hedgehog-2-mega-tech', + 'Sonic The Hedgehog 2 (Mega-Tech)', + 'Sega', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_soni2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'sonic-the-hedgehog-3', + 'Sonic The Hedgehog 3', + 'bootleg / Sega', + 1993, + array['Sonic The Hedgehog 3 (bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["sonic3mb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'sonik-fighter', + 'Sonik Fighter', + 'Z Games', + 2000, + array['Sonik Fighter (version 02, encrypted)'], + array['Arcade'], + '{"mame":["sonikfig"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'sorcer-striker', + 'Sorcer Striker', + 'Raizing', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["sstriker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/raizing.cpp"]}'::jsonb + ), + ( + 'sorcerer', + 'Sorcerer', + 'Exidy Inc', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sorcerer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/sorcerer.cpp"]}'::jsonb + ), + ( + 'soreike-kokology', + 'Soreike Kokology', + 'Sega', + 1992, + array['Soreike Kokology (Rev A)'], + array['Arcade'], + '{"mame":["kokoroj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'soreike-kokology-vol-2-kokoro-no-tanteikyoku', + 'Soreike Kokology Vol. 2 - Kokoro no Tanteikyoku', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["kokoroj2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'soreike-anpanman-popcorn-koujou-2', + 'Soreike! Anpanman Popcorn Koujou 2', + 'Sega', + 2003, + array['Soreike! Anpanman Popcorn Koujou 2 (Rev C)'], + array['Arcade'], + '{"mame":["anpanman2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'soreyuke-anpanman-crayon-kids-j-001026-v1-000', + 'Soreyuke Anpanman Crayon Kids (J 001026 V1.000)', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["sackids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'sos', + 'SOS', + 'K.K. Tokki (Namco license)', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'sotsugyo-shousho', + 'Sotsugyo Shousho', + 'Mitchell (Atlus license)', + 1995, + array['Sotsugyo Shousho (Japan)'], + array['Arcade'], + '{"mame":["sotsugyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/funkyjet.cpp"]}'::jsonb + ), + ( + 'soukyugurentai-terra-diver-juet-960821-v1-000', + 'Soukyugurentai / Terra Diver (JUET 960821 V1.000)', + 'Raizing / Eighting', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["sokyugrt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'soul-calibur', + 'Soul Calibur', + 'Namco', + 1998, + array['Soul Calibur (World, SOC12/VER.A2)'], + array['Fighting'], + '{"mame":["soulclbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'soul-calibur-ii', + 'Soul Calibur II', + 'Namco', + 2002, + array['Soul Calibur II (SC23 Ver. A)'], + array['Fighting'], + '{"mame":["soulclb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'soul-calibur-iii-arcade-edition-sc31001-na-a-key-na-b-disc', + 'Soul Calibur III: Arcade Edition (SC31001-NA-A key, NA-B disc)', + 'Namco', + 2006, + '{}'::text[], + array['Fighting'], + '{"mame":["soulclb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'soul-edge-ver-ii', + 'Soul Edge Ver. II', + 'Namco', + 1996, + array['Soul Edge Ver. II (Asia, SO4/VER.C)'], + array['Arcade'], + '{"mame":["souledge"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'soul-surfer', + 'Soul Surfer', + 'Sega', + 2002, + array['Soul Surfer (Rev A)'], + array['Arcade'], + '{"mame":["soulsurf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'space-ace', + 'Space Ace', + 'Cinematronics', + 1983, + array['Space Ace (US Rev. A3)'], + array['Arcade'], + '{"mame":["spaceace"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/dlair.cpp"]}'::jsonb + ), + ( + 'space-attack', + 'Space Attack', + 'Sega', + 1979, + array['Space Attack (upright set 1)'], + array['Arcade'], + '{"mame":["sspaceat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'space-attack-head-on', + 'Space Attack / Head On', + 'Sega', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sspacaho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'space-battle', + 'Space Battle', + 'Hoei', + 1980, + array['Space Battle (Hoei, set 1)'], + array['Arcade'], + '{"mame":["sbhoei"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'space-beam', + 'Space Beam', + 'Irem', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["spacbeam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m10.cpp"]}'::jsonb + ), + ( + 'space-bomber', + 'Space Bomber', + 'Psikyo', + 1998, + array['Space Bomber (ver. B)'], + array['Arcade'], + '{"mame":["sbomber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'space-bugger', + 'Space Bugger', + 'Game-A-Tron', + 1981, + array['Space Bugger (set 1)'], + array['Arcade'], + '{"mame":["sbugger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gametron/sbugger.cpp"]}'::jsonb + ), + ( + 'space-chaser', + 'Space Chaser', + 'Taito', + 1979, + array['Space Chaser (set 1)'], + array['Arcade'], + '{"mame":["schaser"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'space-computer', + 'Space Computer', + '', + 1999, + array['Space Computer (ver. 1.8a)'], + array['Arcade'], + '{"mame":["spccomp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'space-cruiser', + 'Space Cruiser', + 'Taito Corporation', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["spacecr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'space-cyclone', + 'Space Cyclone', + 'Taito Corporation', + 1980, + array['Space Cyclone (Japan)'], + array['Arcade'], + '{"mame":["scyclone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/scyclone.cpp"]}'::jsonb + ), + ( + 'space-duel', + 'Space Duel', + 'Atari', + 1980, + array['Space Duel (version 2)'], + array['Arcade'], + '{"mame":["spacduel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/bwidow.cpp"]}'::jsonb + ), + ( + 'space-dungeon', + 'Space Dungeon', + 'Taito America Corporation', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["sdungeon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'space-encounters', + 'Space Encounters', + 'Midway', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["spcenctr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'space-fever', + 'Space Fever', + 'Nintendo', + 1979, + array['Space Fever (new version)'], + array['Arcade'], + '{"mame":["spacefev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/n8080.cpp"]}'::jsonb + ), + ( + 'space-fighter-mark-ii', + 'Space Fighter Mark II', + 'Data East', + 1979, + array['Space Fighter Mark II (set 1)'], + array['Arcade'], + '{"mame":["spfghmk2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/astrof.cpp"]}'::jsonb + ), + ( + 'space-firebird', + 'Space Firebird', + 'Nintendo', + 1980, + array['Space Firebird (rev. 04-u)'], + array['Arcade'], + '{"mame":["spacefb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/spacefb.cpp"]}'::jsonb + ), + ( + 'space-force', + 'Space Force', + 'Venture Line', + 1980, + array['Space Force (set 1)'], + array['Arcade'], + '{"mame":["spcforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/spcforce.cpp"]}'::jsonb + ), + ( + 'space-fortress-cvs', + 'Space Fortress (CVS)', + 'Century Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["spacefrt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'space-fury', + 'Space Fury', + 'Sega', + 1981, + array['Space Fury (revision C)'], + array['Arcade'], + '{"mame":["spacfury"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80v.cpp"]}'::jsonb + ), + ( + 'space-guerrilla', + 'Space Guerrilla', + 'Omori Electric Co., Ltd.', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["spaceg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omori/spaceg.cpp"]}'::jsonb + ), + ( + 'space-gun', + 'Space Gun', + 'Taito Corporation Japan', + 1990, + array['Space Gun (World)'], + array['Arcade'], + '{"mame":["spacegun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'space-harrier', + 'Space Harrier', + 'Sega', + 1985, + array['Space Harrier (Rev A, 8751 315-5163A)'], + array['Arcade'], + '{"mame":["sharrier"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segahang.cpp"]}'::jsonb + ), + ( + 'space-harrier-ii-mega-tech', + 'Space Harrier II (Mega-Tech)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_shar2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'space-intruder', + 'Space Intruder', + 'Shoei', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["spaceint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/astinvad.cpp"]}'::jsonb + ), + ( + 'space-invaders-95-the-attack-of-lunar-loonies', + 'Space Invaders ''95: The Attack Of Lunar Loonies', + 'Taito Corporation Japan', + 1995, + array['Space Invaders ''95: The Attack Of Lunar Loonies (Ver 2.5O 1995/06/14)'], + array['Shooter'], + '{"mame":["spcinv95"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'space-invaders-qix-silver-anniversary-edition', + 'Space Invaders / Qix Silver Anniversary Edition', + 'Taito / Namco', + 2003, + array['Space Invaders / Qix Silver Anniversary Edition (Ver. 2.03)'], + array['Shooter'], + '{"mame":["invqix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/invqix.cpp"]}'::jsonb + ), + ( + 'space-invaders-space-invaders-m', + 'Space Invaders / Space Invaders M', + 'Taito / Midway', + 1978, + '{}'::text[], + array['Shooter'], + '{"mame":["invaders"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'space-invaders-dx', + 'Space Invaders DX', + 'Taito Corporation', + 1994, + array['Space Invaders DX (US, v2.1)'], + array['Shooter'], + '{"mame":["spacedx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'space-invaders-ii-midway-cocktail', + 'Space Invaders II (Midway, cocktail)', + 'Midway', + 1980, + '{}'::text[], + array['Shooter'], + '{"mame":["invad2ct"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'space-invaders-multigame-m8-03d', + 'Space Invaders Multigame (M8.03D)', + 'hack (Braze Technologies)', + 2002, + '{}'::text[], + array['Shooter'], + '{"mame":["invmulti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'space-invaders-part-ii-taito-bigger-roms', + 'Space Invaders Part II (Taito, bigger ROMs)', + 'Taito', + 1979, + '{}'::text[], + array['Shooter'], + '{"mame":["invadpt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'space-invasion-eti', + 'Space Invasion (ETI)', + 'Tangerine/ETI', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["spinveti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tangerine/microtan.cpp"]}'::jsonb + ), + ( + 'space-king-2', + 'Space King 2', + 'Konami', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["spcking2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stern/astinvad.cpp"]}'::jsonb + ), + ( + 'space-launcher', + 'Space Launcher', + 'Nintendo', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["spacelnc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/n8080.cpp"]}'::jsonb + ), + ( + 'space-liner', + 'Space Liner', + 'Z Games', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["spcliner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'space-lords', + 'Space Lords', + 'Atari Games', + 1992, + array['Space Lords (rev C)'], + array['Arcade'], + '{"mame":["spclords"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarigx2.cpp"]}'::jsonb + ), + ( + 'space-micon-kit', + 'Space Micon Kit', + 'SNK', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["smiconk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/miconkit.cpp"]}'::jsonb + ), + ( + 'space-odyssey', + 'Space Odyssey', + 'Sega', + 1981, + array['Space Odyssey (version 2)'], + array['Arcade'], + '{"mame":["spaceod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80r.cpp"]}'::jsonb + ), + ( + 'space-panic', + 'Space Panic', + 'Universal', + 1980, + array['Space Panic (version E)'], + array['Arcade'], + '{"mame":["panic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/cosmic.cpp"]}'::jsonb + ), + ( + 'space-pirates-v2-2', + 'Space Pirates (v2.2)', + 'American Laser Games', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["spacepir"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'space-pokan', + 'Space Pokan', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["spcpokan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'space-position', + 'Space Position', + 'Sega / Nasco', + 1986, + array['Space Position (Japan)'], + array['Arcade'], + '{"mame":["spcpostn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/angelkds.cpp"]}'::jsonb + ), + ( + 'space-raider', + 'Space Raider', + 'Universal', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["sraider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/sraider.cpp"]}'::jsonb + ), + ( + 'space-ranger-arcadia-v-2-0', + 'Space Ranger (Arcadia, V 2.0)', + 'Arcadia Systems', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_sprg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'space-seeker', + 'Space Seeker', + 'Taito Corporation', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["spaceskr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'space-stranger', + 'Space Stranger', + 'Yachiyo Electric', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["sstrangr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yachiyo/sstrangr.cpp"]}'::jsonb + ), + ( + 'space-tactics', + 'Space Tactics', + 'Sega', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["stactics"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stactics.cpp"]}'::jsonb + ), + ( + 'space-trek-upright', + 'Space Trek (upright)', + 'Sega', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["spacetrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'space-walk', + 'Space Walk', + 'Midway', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["spacwalk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'space-war-leijac-corporation', + 'Space War (Leijac Corporation)', + 'Konami (Leijac Corporation license)', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["spcewarl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'space-warp', + 'Space Warp?', + 'Century Electronics', + 1983, + array['Space Warp? (Cosmos conversion on Galaxian hardware)'], + array['Arcade'], + '{"mame":["spcwarp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxold.cpp"]}'::jsonb + ), + ( + 'space-wars', + 'Space Wars', + 'Cinematronics', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["spacewar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'space-zap-midway', + 'Space Zap (Midway)', + 'Midway', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["spacezap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'spark-man', + 'Spark Man', + 'SunA', + 1989, + array['Spark Man (v2.0, set 1)'], + array['Arcade'], + '{"mame":["sparkman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna8.cpp"]}'::jsonb + ), + ( + 'sparkz', + 'Sparkz', + 'Atari Games', + 1992, + array['Sparkz (prototype)'], + array['Arcade'], + '{"mame":["sparkz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/arcadecl.cpp"]}'::jsonb + ), + ( + 'spatter-315-5096', + 'Spatter (315-5096)', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["spatter"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'spawn-in-the-demon-s-hand', + 'Spawn: In the Demon''s Hand', + 'Todd McFarlane / Capcom', + 1999, + array['Spawn: In the Demon''s Hand (Rev B)'], + array['Arcade'], + '{"mame":["spawn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'spc-1000', + 'SPC-1000', + 'Samsung', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["spc1000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["samsung/spc1000.cpp"]}'::jsonb + ), + ( + 'spc-1500', + 'SPC-1500', + 'Samsung', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["spc1500"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["samsung/spc1500.cpp"]}'::jsonb + ), + ( + 'speak-and-rescue', + 'Speak & Rescue', + 'Sun Electronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["speakres"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/route16.cpp"]}'::jsonb + ), + ( + 'special-7', + 'Special 7', + 'unknown', + null, + array['Special 7 (Taiwanese Hardware, encrypted, set 1)'], + array['Arcade'], + '{"mame":["special7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'special-criminal-investigation', + 'Special Criminal Investigation', + 'Taito Corporation Japan', + 1989, + array['Special Criminal Investigation (World set 1)'], + array['Arcade'], + '{"mame":["sci"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_z.cpp"]}'::jsonb + ), + ( + 'special-dream-9-v1-0-7g', + 'Special Dream 9 (v1.0.7G)', + 'Excellent System', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["specd9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/es9501.cpp"]}'::jsonb + ), + ( + 'special-forces-kung-fu-commando', + 'Special Forces - Kung Fu Commando', + 'Senko Industries (Magic Electronics Inc. license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["spclforc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'special-forces-elite-training-v01-02-00', + 'Special Forces Elite Training (v01.02.00)', + 'ICE/Play Mechanix', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["specfrce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/vp101.cpp"]}'::jsonb + ), + ( + 'special-forces-ii', + 'Special Forces II', + 'Senko Industries (Magic Electronics Inc. license)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["spcfrcii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'spectar', + 'Spectar', + 'Exidy', + 1980, + array['Spectar (revision 3)'], + array['Arcade'], + '{"mame":["spectar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'spectrum-2000', + 'Spectrum 2000', + 'Yona Tech', + 2000, + array['Spectrum 2000 (vertical, Korea)'], + array['Arcade'], + '{"mame":["spec2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'spectrum-i', + 'Spectrum I+', + 'Roy Abel & Associates', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["raaspec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["miltonbradley/vectrex.cpp"]}'::jsonb + ), + ( + 'speed-attack', + 'Speed Attack!', + 'Seta Kikaku', + 1984, + array['Speed Attack! (Japan)'], + array['Arcade'], + '{"mame":["speedatk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/speedatk.cpp"]}'::jsonb + ), + ( + 'speed-ball', + 'Speed Ball', + 'Tecfri / Desystem S.A.', + 1987, + array['Speed Ball (set 1)'], + array['Arcade'], + '{"mame":["speedbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/speedbal.cpp"]}'::jsonb + ), + ( + 'speed-ball-contest-at-neonworld', + 'Speed Ball - Contest at Neonworld', + 'Williams', + 1985, + array['Speed Ball - Contest at Neonworld (prototype)'], + array['Arcade'], + '{"mame":["spdball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'speed-coin', + 'Speed Coin', + 'Stern Electronics', + 1984, + array['Speed Coin (prototype)'], + array['Arcade'], + '{"mame":["spdcoin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'speed-driver', + 'Speed Driver', + 'IGS', + 2004, + '{}'::text[], + array['Racing'], + '{"mame":["speeddrv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspc.cpp"]}'::jsonb + ), + ( + 'speed-drop', + 'Speed Drop', + 'Astro Corp.', + 2003, + array['Speed Drop (Ver. 1.06, Sep 3 2003)'], + array['Arcade'], + '{"mame":["speeddrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'speed-freak', + 'Speed Freak', + 'Vectorbeam', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["speedfrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'speed-master-d2-01-c-apr-29-2004', + 'Speed Master (D2.01.C, Apr 29 2004)', + 'D2 Enterprises', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["speedmst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'speed-race-seletron-olympia', + 'Speed Race (Seletron / Olympia)', + 'Seletron / Olympia', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["speedrs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympia/lbeach.cpp"]}'::jsonb + ), + ( + 'speed-race-taito', + 'Speed Race (Taito)', + 'Taito', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["speedrac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 'speed-racer', + 'Speed Racer', + 'Namco', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["speedrcr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcofl.cpp"]}'::jsonb + ), + ( + 'speed-spin', + 'Speed Spin', + 'TCH', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["speedspn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/speedspn.cpp"]}'::jsonb + ), + ( + 'speed-up', + 'Speed Up', + 'Gaelco', + 1996, + array['Speed Up (version 2.20, checksum 2037)'], + array['Arcade'], + '{"mame":["speedup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco3d.cpp"]}'::jsonb + ), + ( + 'speedway', + 'Speedway', + 'hack (Drivers)', + null, + array['Speedway (set 1)'], + array['Arcade'], + '{"mame":["speedway"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'spell-master-atronic', + 'Spell Master (Atronic)', + 'Atronic', + 2002, + array['Spell Master (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["splmastr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'spellbound', + 'Spellbound', + 'ACE', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["spellbnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/acefruit.cpp"]}'::jsonb + ), + ( + 'spelunker', + 'Spelunker', + 'Irem (licensed from Broderbund)', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["spelunkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'spelunker-ii-23-no-kagi', + 'Spelunker II - 23 no Kagi', + 'Irem (licensed from Broderbund)', + 1986, + array['Spelunker II - 23 no Kagi (Japan)'], + array['Arcade'], + '{"mame":["spelunk2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'sphinx-40', + 'Sphinx 40', + 'Newcrest Technology / CXG Systems / Intelligent Chess Software', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sphinx40"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/sphinx40.cpp"]}'::jsonb + ), + ( + 'sphinx-chess-professor', + 'Sphinx Chess Professor', + 'Newcrest Technology / CXG Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["scprof"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/professor.cpp"]}'::jsonb + ), + ( + 'sphinx-commander-v2-00', + 'Sphinx Commander (v2.00)', + 'Newcrest Technology / CXG Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["scmder"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/dominator.cpp"]}'::jsonb + ), + ( + 'sphinx-dominator-v2-05', + 'Sphinx Dominator (v2.05)', + 'Newcrest Technology / CXG Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["sdtor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/dominator.cpp"]}'::jsonb + ), + ( + 'sphinx-galaxy-v2-03', + 'Sphinx Galaxy (v2.03)', + 'Newcrest Technology / CXG Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sgalaxy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/dominator.cpp"]}'::jsonb + ), + ( + 'sphinx-ii-atronic', + 'Sphinx II (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["sphinxii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'sphinx-junior', + 'Sphinx Junior', + 'Newcrest Technology / CXG Systems / Intelligent Chess Software', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sjunior"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/junior.cpp"]}'::jsonb + ), + ( + 'sphinx-legend', + 'Sphinx Legend', + 'National Telecommunication System', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["slegend"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/legend.cpp"]}'::jsonb + ), + ( + 'sphinx-royal', + 'Sphinx Royal', + 'Newcrest Technology / CXG Systems / Intelligent Chess Software', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sroyal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/royal.cpp"]}'::jsonb + ), + ( + 'spica-adventure-v2-03j', + 'Spica Adventure (v2.03J)', + 'Taito Corporation', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["spicaadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'spice-it-up', + 'Spice It Up', + 'Konami', + null, + array['Spice It Up (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["spiceup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'spider-buena-vision-without-nudity', + 'Spider (Buena Vision, without nudity)', + 'Buena Vision', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["spider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/twins.cpp"]}'::jsonb + ), + ( + 'spider-man-vs-the-kingpin-mega-tech', + 'Spider-Man vs The Kingpin (Mega-Tech)', + 'Sega / Marvel', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_spman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'spider-man-the-videogame', + 'Spider-Man: The Videogame', + 'Sega', + 1991, + array['Spider-Man: The Videogame (World)'], + array['Arcade'], + '{"mame":["spidman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'spiders', + 'Spiders', + 'Sigma Enterprises Inc.', + 1981, + array['Spiders (set 1)'], + array['Arcade'], + '{"mame":["spiders"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/spiders.cpp"]}'::jsonb + ), + ( + 'spiel-bude-german', + 'Spiel Bude (German)', + 'ADP', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["spielbud"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/slotcarn.cpp"]}'::jsonb + ), + ( + 'spikeout', + 'Spikeout', + 'Sega', + 1998, + array['Spikeout (Revision C)'], + array['Arcade'], + '{"mame":["spikeout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'spikeout-final-edition', + 'Spikeout Final Edition', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["spikeofe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'spiker-6-9-86', + 'Spiker (6/9/86)', + 'Bally/Sente', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["spiker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'spikers-battle-gds-0005', + 'Spikers Battle (GDS-0005)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["spkrbtl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'spillekonsol-game-console-108-in-1', + 'Spillekonsol Game console - 108-in-1', + 'Zebra AS / Tiger Retail', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tiger108"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'spin-fever', + 'Spin Fever', + 'Konami', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["spinfev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/cougar.cpp"]}'::jsonb + ), + ( + 'spin-master-miracle-adventure', + 'Spin Master / Miracle Adventure', + 'Data East Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["spinmast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'spinal-breakers', + 'Spinal Breakers', + 'V-System Co.', + 1990, + array['Spinal Breakers (World)'], + array['Arcade'], + '{"mame":["spinlbrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pspikes.cpp"]}'::jsonb + ), + ( + 'splash', + 'Splash!', + 'Gaelco / OMK Software', + 1992, + array['Splash! (ver. 1.3, checksum E7BEF3FA, World)'], + array['Arcade'], + '{"mame":["splash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/splash.cpp"]}'::jsonb + ), + ( + 'splat', + 'Splat!', + 'Williams', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["splat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'splatter-house', + 'Splatter House )', + 'Namco', + 1988, + array['Splatter House (World, new version (SH3))'], + array['Arcade'], + '{"mame":["splatter"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'splendor-blast', + 'Splendor Blast', + 'Alpha Denshi Co.', + 1985, + array['Splendor Blast (set 1)'], + array['Arcade'], + '{"mame":["splndrbt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/splendor.cpp"]}'::jsonb + ), + ( + 'splendor-blast-ii', + 'Splendor Blast II', + 'Alpha Denshi Co.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["splndrbt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/splendor.cpp"]}'::jsonb + ), + ( + 'spongebob-squarepants-ticket-boom', + 'SpongeBob SquarePants Ticket Boom', + 'Sega', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["spongbob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaatom.cpp"]}'::jsonb + ), + ( + 'spooky-night-2nd-edition', + 'Spooky Night 2nd Edition', + 'Amcoe', + null, + array['Spooky Night 2nd Edition (Version 2.0.4)'], + array['Arcade'], + '{"mame":["spooky"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'sport-fishing-2-uet-951106-v1-10e', + 'Sport Fishing 2 (UET 951106 V1.10e)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["sfish2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'sport-memory', + 'Sport Memory', + 'Nova Desitec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sportmem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novadesitec/novadesitec_fr002.cpp"]}'::jsonb + ), + ( + 'sports-and-dance-fit-games-mat-d-555-pal', + 'Sports and Dance Fit Games Mat D-555 (PAL)', + 'Subor', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dance555"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'sports-authority-challenge', + 'Sports Authority Challenge', + 'Classic Games', + 1992, + array['Sports Authority Challenge (Rev 3)'], + array['Arcade'], + '{"mame":["sprtauth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'sports-game-69-in-1', + 'Sports Game 69 in 1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mc_sp69"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'sports-jam-gds-0003', + 'Sports Jam (GDS-0003)', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["sprtjam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'sports-shooting-usa', + 'Sports Shooting USA', + 'Sammy USA', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["sprtshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'sportstation-nba-showtime-nba-on-nbc-nfl-blitz-2000-gold-edition', + 'SportStation: NBA Showtime NBA on NBC / NFL Blitz 2000 Gold Edition', + 'Midway Games', + 1999, + array['SportStation: NBA Showtime NBA on NBC (ver 2.1, Sep 22 1999) / NFL Blitz 2000 Gold Edition (ver 1.5, Sep 22 1999)'], + array['Sports'], + '{"mame":["nbanfl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'sportstation-nba-showtime-nba-on-nbc-gold-edition-nfl-blitz-2000-gold-edition', + 'SportStation: NBA Showtime NBA on NBC Gold Edition / NFL Blitz 2000 Gold Edition', + 'Midway Games', + 2000, + array['SportStation: NBA Showtime NBA on NBC Gold Edition (ver 3.0, Feb 18 2000) / NFL Blitz 2000 Gold Edition'], + array['Sports'], + '{"mame":["nbagold"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'sporttime-bowling-arcadia-v-2-1', + 'SportTime Bowling (Arcadia, V 2.1)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Sports'], + '{"mame":["ar_bowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'sporttime-table-hockey', + 'SportTime Table Hockey', + 'Arcadia Systems', + 1988, + array['SportTime Table Hockey (Arcadia, set 1, V 2.1)'], + array['Arcade'], + '{"mame":["ar_airh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'spot-arcadia-v-2-0', + 'Spot (Arcadia, V 2.0)', + 'Arcadia Systems', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_spot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'spotty', + 'Spotty', + 'Prince Co.', + 2001, + array['Spotty (Ver. 2.0.2)'], + array['Arcade'], + '{"mame":["spotty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/limenko.cpp"]}'::jsonb + ), + ( + 'springer', + 'Springer', + 'Orca', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["springer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'sprint-1', + 'Sprint 1', + 'Atari (Kee Games)', + 1978, + '{}'::text[], + array['Racing'], + '{"mame":["sprint1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/sprint2.cpp"]}'::jsonb + ), + ( + 'sprint-4', + 'Sprint 4', + 'Atari', + 1977, + array['Sprint 4 (Rev 03)'], + array['Racing'], + '{"mame":["sprint4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/sprint4.cpp"]}'::jsonb + ), + ( + 'sprint-8', + 'Sprint 8', + 'Atari', + 1977, + '{}'::text[], + array['Racing'], + '{"mame":["sprint8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/sprint8.cpp"]}'::jsonb + ), + ( + 'spy-hunter', + 'Spy Hunter', + 'Bally Midway', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["spyhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'spy-hunter-ii', + 'Spy Hunter II', + 'Bally Midway', + 1987, + array['Spy Hunter II (rev 2)'], + array['Arcade'], + '{"mame":["spyhunt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr68.cpp"]}'::jsonb + ), + ( + 'sq-1', + 'SQ-1', + 'Ensoniq', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["sq1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq5505.cpp"]}'::jsonb + ), + ( + 'sq-2', + 'SQ-2', + 'Ensoniq', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["sq2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq5505.cpp"]}'::jsonb + ), + ( + 'sq-80-cross-wave-synthesizer', + 'SQ-80 Cross Wave Synthesizer', + 'Ensoniq', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sq80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq1.cpp"]}'::jsonb + ), + ( + 'squash', + 'Squash', + 'Gaelco', + 1992, + array['Squash (World, ver. 1.0, checksum 015aef61)'], + array['Arcade'], + '{"mame":["squash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp"]}'::jsonb + ), + ( + 'squash-itisa', + 'Squash (Itisa)', + 'Itisa', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["squaitsa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["valadon/bagman.cpp"]}'::jsonb + ), + ( + 'srd-super-real-darwin', + 'SRD: Super Real Darwin', + 'Data East Corporation', + 1987, + array['SRD: Super Real Darwin (World)'], + array['Arcade'], + '{"mame":["srdarwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'st', + 'ST', + 'Atari', + 1985, + array['ST (USA)'], + array['Arcade'], + '{"mame":["st"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarist.cpp"]}'::jsonb + ), + ( + 'st-1700', + 'ST-1700', + 'Saturn', + null, + array['ST-1700 (headphone version)'], + array['Arcade'], + '{"mame":["st1700h"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1701', + 'ST-1701', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1701"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1702', + 'ST-1702', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1702"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1703', + 'ST-1703', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1703"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1704', + 'ST-1704', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1704"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1705', + 'ST-1705', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1705"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1706', + 'ST-1706', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1706"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1707', + 'ST-1707', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1707"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1708', + 'ST-1708', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1708"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-1714', + 'ST-1714', + 'Saturn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["st1714"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["saturn/st17xx.cpp"]}'::jsonb + ), + ( + 'st-v-486-dev-box-pc', + 'ST-V 486 dev box PC', + 'Sega / ALi', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["stvdev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stvdev.cpp"]}'::jsonb + ), + ( + 'stack-columns', + 'Stack Columns', + 'Sega', + 1994, + array['Stack Columns (World)'], + array['Puzzle'], + '{"mame":["stkclmns"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'stadium-cross', + 'Stadium Cross', + 'Sega', + 1992, + array['Stadium Cross (World)'], + array['Arcade'], + '{"mame":["scross"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'stadium-hero', + 'Stadium Hero', + 'Data East Corporation', + 1988, + array['Stadium Hero (Japan)'], + array['Arcade'], + '{"mame":["stadhero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/stadhero.cpp"]}'::jsonb + ), + ( + 'stadium-hero-96', + 'Stadium Hero ''96', + 'Data East Corporation', + 1996, + array['Stadium Hero ''96 (Europe, EAJ, Tuning license)'], + array['Arcade'], + '{"mame":["stadhr96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco_mlc.cpp"]}'::jsonb + ), + ( + 'stagger-i', + 'Stagger I', + 'Afega', + 1998, + array['Stagger I (Japan)'], + array['Arcade'], + '{"mame":["stagger1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'stakes-winner-stakes-winner-gi-kinzen-seiha-e-no-michi', + 'Stakes Winner / Stakes Winner - GI Kinzen Seiha e no Michi', + 'Saurus', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["stakwin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'stakes-winner-2', + 'Stakes Winner 2', + 'Saurus', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["stakwin2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'star-audition', + 'Star Audition', + 'Namco', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["staraudi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'star-ball-v1-0-0s', + 'Star Ball (v1.0.0S)', + 'Excellent System', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["starball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/es9501.cpp"]}'::jsonb + ), + ( + 'star-castle', + 'Star Castle', + 'Cinematronics', + 1980, + array['Star Castle (version 3)'], + array['Arcade'], + '{"mame":["starcas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'star-cruiser', + 'Star Cruiser', + 'Ramtek', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["starcrus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/starcrus.cpp"]}'::jsonb + ), + ( + 'star-diamond', + 'Star Diamond', + 'Perfect Technology / Intelligent Heuristic Programming', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["sdiamond"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/sdiamond.cpp"]}'::jsonb + ), + ( + 'star-fighter-v1', + 'Star Fighter (v1)', + 'SunA', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["starfigh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna8.cpp"]}'::jsonb + ), + ( + 'star-fire', + 'Star Fire', + 'Exidy', + 1979, + array['Star Fire (set 1)'], + array['Arcade'], + '{"mame":["starfire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/starfire.cpp"]}'::jsonb + ), + ( + 'star-fire-2', + 'Star Fire 2', + 'Exidy', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["starfir2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/starfire.cpp"]}'::jsonb + ), + ( + 'star-force', + 'Star Force', + 'Tehkan', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["starforc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/senjyo.cpp"]}'::jsonb + ), + ( + 'star-guards', + 'Star Guards', + 'Bally Midway', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["stargrds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'star-horse-satellite', + 'Star Horse (satellite)', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["shorse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-horse-2001', + 'Star Horse 2001', + 'Sega', + 2002, + array['Star Horse 2001 (satellite, Rev B)'], + array['Arcade'], + '{"mame":["shors2k1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-horse-2002', + 'Star Horse 2002', + 'Sega', + 2002, + array['Star Horse 2002 (sound, Export/Taiwan)', 'Star Horse 2002 (sound and backup, Rev A)'], + array['Arcade'], + '{"mame":["shors2k2","shors2k2s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-horse-2002-live', + 'Star Horse 2002 (live)', + 'Sega', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["shors2k2l"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-horse-2002-main-screens', + 'Star Horse 2002 (main screens)', + 'Sega', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["shors2k2m"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-horse-progress', + 'Star Horse Progress', + 'Sega', + 2003, + array['Star Horse Progress (satellite, Rev A)'], + array['Arcade'], + '{"mame":["shorsep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-horse-progress-returns-satellite', + 'Star Horse Progress Returns (satellite)', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["shorsepr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'star-jacker-sega', + 'Star Jacker (Sega)', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["starjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'star-rider', + 'Star Rider', + 'Williams', + 1984, + array['Star Rider (REV 1)'], + array['Arcade'], + '{"mame":["starridr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/starrider.cpp"]}'::jsonb + ), + ( + 'star-soldier-vanishing-earth', + 'Star Soldier: Vanishing Earth', + 'Hudson / Seta', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["starsldr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'star-sweep', + 'Star Sweep', + 'Axela / Namco', + 1997, + array['Star Sweep (World, STP2/VER.A)'], + array['Arcade'], + '{"mame":["starswep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'star-trek', + 'Star Trek', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["startrek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80v.cpp"]}'::jsonb + ), + ( + 'star-trek-voyager', + 'Star Trek: Voyager', + 'Team Play/Game Refuge/Monaco Entertainment', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["voyager"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/voyager.cpp"]}'::jsonb + ), + ( + 'star-trigon', + 'Star Trigon', + 'Namco', + 2002, + array['Star Trigon (Japan, STT1 Ver.A)'], + array['Arcade'], + '{"mame":["startrgn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'star-wars', + 'Star Wars', + 'Atari', + 1983, + array['Star Wars (set 1)'], + array['Arcade'], + '{"mame":["starwars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/starwars.cpp"]}'::jsonb + ), + ( + 'star-wars-arcade', + 'Star Wars Arcade', + 'Sega', + 1993, + array['Star Wars Arcade (US)'], + array['Arcade'], + '{"mame":["swa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model1.cpp"]}'::jsonb + ), + ( + 'star-wars-trilogy-arcade', + 'Star Wars Trilogy Arcade', + 'Sega / LucasArts', + 1998, + array['Star Wars Trilogy Arcade (Revision A)'], + array['Arcade'], + '{"mame":["swtrilgy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'star-wars-racer-arcade', + 'Star Wars: Racer Arcade', + 'Sega / Lucas Arts', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["swracer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/hikaru.cpp"]}'::jsonb + ), + ( + 'starblade', + 'Starblade', + 'Namco', + 1991, + array['Starblade (ST2, World)'], + array['Arcade'], + '{"mame":["starblad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21_c67.cpp"]}'::jsonb + ), + ( + 'stargate', + 'Stargate', + 'Williams / Vid Kidz', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["stargate"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'starhawk', + 'Starhawk', + 'Cinematronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["starhawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'starship-1', + 'Starship 1', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["starshp1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/starshp1.cpp"]}'::jsonb + ), + ( + 'starspinner-dutch-nederlands', + 'Starspinner (Dutch/Nederlands)', + 'ACE', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["starspnr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/acefruit.cpp"]}'::jsonb + ), + ( + 'status-black-jack-v1-0c', + 'Status Black Jack (V1.0c)', + 'Status Games', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["statusbj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'stc-3910-executel', + 'STC 3910 Executel', + 'STC Telecommunications Ltd.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["executel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/stc3910.cpp"]}'::jsonb + ), + ( + 'ste', + 'STe', + 'Atari', + 1989, + array['STe (USA)'], + array['Arcade'], + '{"mame":["ste"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarist.cpp"]}'::jsonb + ), + ( + 'steal-see', + 'Steal See', + 'Moov Generation / Eolith', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["stealsee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/eolith.cpp"]}'::jsonb + ), + ( + 'steel-force', + 'Steel Force', + 'Electronic Devices Italy / Ecogames S.L. Spain', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["stlforce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/stlforce.cpp"]}'::jsonb + ), + ( + 'steel-gunner', + 'Steel Gunner', + 'Namco', + 1990, + array['Steel Gunner (Rev B)'], + array['Arcade'], + '{"mame":["sgunner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'steel-gunner-2', + 'Steel Gunner 2', + 'Namco', + 1991, + array['Steel Gunner 2 (US)'], + array['Arcade'], + '{"mame":["sgunner2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'steel-talons', + 'Steel Talons', + 'Atari Games', + 1991, + array['Steel Talons (rev 2)'], + array['Arcade'], + '{"mame":["steeltal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/harddriv.cpp"]}'::jsonb + ), + ( + 'steel-worker', + 'Steel Worker', + 'Taito', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["steelwkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'steep-slope-sliders-juet-981110-v1-000', + 'Steep Slope Sliders (JUET 981110 V1.000)', + 'Capcom / Cave / Victor Interactive Software', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["sss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'steeplechase', + 'Steeplechase', + 'Atari', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["steeplec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'steering-champ', + 'Steering Champ', + 'Konami', + 1997, + array['Steering Champ (GQ710 97/12/18 VER. UAA)'], + array['Arcade'], + '{"mame":["strgchmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'stelle-e-cubi-italy', + 'Stelle e Cubi (Italy)', + 'Sure', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["stellecu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igspoker.cpp"]}'::jsonb + ), + ( + 'step-champ', + 'Step Champ', + 'Konami', + 1999, + array['Step Champ (GQ930 VER. JA)'], + array['Arcade'], + '{"mame":["stepchmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ksys573.cpp"]}'::jsonb + ), + ( + 'stepping-3-superior', + 'Stepping 3 Superior', + 'Jaleco', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["step3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'stepping-stage-special', + 'Stepping Stage Special', + 'Jaleco', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["stepstag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'stinger', + 'Stinger', + 'Seibu Denshi', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["stinger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/wiz.cpp"]}'::jsonb + ), + ( + 'stm-pc', + 'STM PC', + 'STM Electronics', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["stmpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["stm/stmpc.cpp"]}'::jsonb + ), + ( + 'stocker-3-19-85', + 'Stocker (3/19/85)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["stocker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'stompin-4-4-86', + 'Stompin'' (4/4/86)', + 'Bally/Sente', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["stompin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'stone-age', + 'Stone Age', + 'Astro Corp.', + 2005, + array['Stone Age (Astro, Ver. EN.03.A, 2005/02/21)'], + array['Arcade'], + '{"mame":["astoneag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'stone-ball-4-players-v1-20-13-12-1994', + 'Stone Ball (4 Players, v1-20 13/12/1994)', + 'Art & Magic', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["stonebal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/artmagic.cpp"]}'::jsonb + ), + ( + 'stop', + 'Stop', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["stop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/stop.cpp"]}'::jsonb + ), + ( + 'storm-blade', + 'Storm Blade', + 'Visco', + 1996, + array['Storm Blade (US)'], + array['Arcade'], + '{"mame":["stmblade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'straight-flush', + 'Straight Flush', + 'Taito', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sflush"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'strata-bowling-v3', + 'Strata Bowling (v3)', + 'Strata / Incredible Technologies', + 1990, + '{}'::text[], + array['Sports'], + '{"mame":["stratab"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'strategy-x', + 'Strategy X', + 'Konami', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["stratgyx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scobra.cpp"]}'::jsonb + ), + ( + 'streaking', + 'Streaking', + 'Shoei', + 1980, + array['Streaking (set 1)'], + array['Arcade'], + '{"mame":["streakng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'street-burners', + 'Street Burners', + 'Allied Leisure', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["sburners"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alliedleisure/aleisttl.cpp"]}'::jsonb + ), + ( + 'street-drivin', + 'Street Drivin''', + 'Atari Games', + 1993, + array['Street Drivin'' (prototype)'], + array['Arcade'], + '{"mame":["strtdriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/harddriv.cpp"]}'::jsonb + ), + ( + 'street-fighter', + 'Street Fighter', + 'Capcom', + 1987, + array['Street Fighter (US, set 1)'], + array['Fighting'], + '{"mame":["sf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/sf.cpp"]}'::jsonb + ), + ( + 'street-fighter-alpha-2', + 'Street Fighter Alpha 2', + 'Capcom', + 1996, + array['Street Fighter Alpha 2 (Europe 960229)'], + array['Fighting'], + '{"mame":["sfa2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'street-fighter-alpha-3', + 'Street Fighter Alpha 3', + 'Capcom', + 1998, + array['Street Fighter Alpha 3 (Europe 980904)'], + array['Fighting'], + '{"mame":["sfa3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'street-fighter-alpha-warriors-dreams', + 'Street Fighter Alpha: Warriors'' Dreams', + 'Capcom', + 1995, + array['Street Fighter Alpha: Warriors'' Dreams (Europe 950727)'], + array['Fighting'], + '{"mame":["sfa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'street-fighter-ii-the-world-warrior', + 'Street Fighter II: The World Warrior', + 'Capcom', + 1991, + array['Street Fighter II: The World Warrior (World 910522)'], + array['Fighting'], + '{"mame":["sf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'street-fighter-ii-champion-edition', + 'Street Fighter II'': Champion Edition', + 'Capcom', + 1992, + array['Street Fighter II'': Champion Edition (World 920513)'], + array['Fighting'], + '{"mame":["sf2ce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'street-fighter-ii-hyper-fighting', + 'Street Fighter II'': Hyper Fighting', + 'Capcom', + 1992, + array['Street Fighter II'': Hyper Fighting (World 921209)'], + array['Fighting'], + '{"mame":["sf2hf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'street-fighter-iii-2nd-impact-giant-attack', + 'Street Fighter III 2nd Impact: Giant Attack', + 'Capcom', + 1997, + array['Street Fighter III 2nd Impact: Giant Attack (USA 970930)'], + array['Fighting'], + '{"mame":["sfiii2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'street-fighter-iii-3rd-strike-fight-for-the-future', + 'Street Fighter III 3rd Strike: Fight for the Future', + 'Capcom', + 1999, + array['Street Fighter III 3rd Strike: Fight for the Future (Europe 990608)'], + array['Fighting'], + '{"mame":["sfiii3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'street-fighter-iii-new-generation', + 'Street Fighter III: New Generation', + 'Capcom', + 1997, + array['Street Fighter III: New Generation (Europe 970204)'], + array['Fighting'], + '{"mame":["sfiii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps3.cpp"]}'::jsonb + ), + ( + 'street-fighter-zero', + 'Street Fighter Zero', + 'Capcom', + 1995, + array['Street Fighter Zero (CPS Changer, Japan 951020)'], + array['Fighting'], + '{"mame":["sfzch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'street-fighter-zero-2-alpha', + 'Street Fighter Zero 2 Alpha', + 'Capcom', + 1996, + array['Street Fighter Zero 2 Alpha (Asia 960826)'], + array['Fighting'], + '{"mame":["sfz2al"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'street-fighter-zero-3-upper-gdl-0002', + 'Street Fighter Zero 3 Upper (GDL-0002)', + 'Capcom', + 2001, + array['Street Fighter Zero 3 Upper (Japan) (GDL-0002)'], + array['Fighting'], + '{"mame":["sfz3ugd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'street-fighter-the-movie-v1-12', + 'Street Fighter: The Movie (v1.12)', + 'Capcom / Incredible Technologies', + 1995, + '{}'::text[], + array['Fighting'], + '{"mame":["sftm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'street-football-11-12-86', + 'Street Football (11/12/86)', + 'Bally/Sente', + 1986, + '{}'::text[], + array['Sports'], + '{"mame":["sfootbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'street-heat', + 'Street Heat', + 'Epos Corporation', + 1985, + array['Street Heat (set 1, newer?)'], + array['Arcade'], + '{"mame":["strtheat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/dkong.cpp"]}'::jsonb + ), + ( + 'street-hoop-street-slam-dunk-dream-dem-004-deh-004', + 'Street Hoop / Street Slam / Dunk Dream (DEM-004 ~ DEH-004)', + 'Data East Corporation', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["strhoop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'street-smart', + 'Street Smart', + 'SNK', + 1989, + array['Street Smart (US version 2)'], + array['Arcade'], + '{"mame":["streetsm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk68.cpp"]}'::jsonb + ), + ( + 'streets-of-rage-mega-tech', + 'Streets of Rage (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Beat em up'], + '{"mame":["mt_srage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'streets-of-rage-ii-mega-play', + 'Streets of Rage II (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Beat em up'], + '{"mame":["mp_sor2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'strength-and-skill', + 'Strength & Skill', + 'Sun Electronics', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["strnskil"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/markham.cpp"]}'::jsonb + ), + ( + 'stress-busters-j-981020-v1-000', + 'Stress Busters (J 981020 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["stress"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'strider', + 'Strider', + 'Capcom', + 1989, + array['Strider (USA, B-Board 89624B-2)'], + array['Arcade'], + '{"mame":["strider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'strike-bowling', + 'Strike Bowling', + 'Taito Corporation', + 1982, + '{}'::text[], + array['Sports'], + '{"mame":["sbowling"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/sbowling.cpp"]}'::jsonb + ), + ( + 'strike-fighter', + 'Strike Fighter', + 'Sega', + 1991, + array['Strike Fighter (World)'], + array['Arcade'], + '{"mame":["strkfgtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaybd.cpp"]}'::jsonb + ), + ( + 'strike-force', + 'Strike Force', + 'Midway', + 1991, + array['Strike Force (rev 1 02/25/91)'], + array['Arcade'], + '{"mame":["strkforc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'strike-gunner-s-t-g', + 'Strike Gunner S.T.G', + 'Athena / Tecmo', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["stg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'strike-zone-baseball', + 'Strike Zone Baseball', + 'Leland Corporation', + 1988, + '{}'::text[], + array['Sports'], + '{"mame":["strkzone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'striker', + 'Striker', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["strker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enraya.cpp"]}'::jsonb + ), + ( + 'strikers-1945', + 'Strikers 1945', + 'Psikyo', + 1995, + array['Strikers 1945 (World)'], + array['Arcade'], + '{"mame":["s1945"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo.cpp"]}'::jsonb + ), + ( + 'strikers-1945-ii', + 'Strikers 1945 II', + 'Psikyo', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["s1945ii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'strikers-1945-iii-strikers-1999', + 'Strikers 1945 III / Strikers 1999', + 'Psikyo', + 1999, + array['Strikers 1945 III (World) / Strikers 1999 (Japan)'], + array['Arcade'], + '{"mame":["s1945iii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'strikers-1945-plus', + 'Strikers 1945 Plus', + 'Psikyo', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["s1945p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'strip-teaser', + 'Strip Teaser', + '', + 1993, + array['Strip Teaser (Italy, Ver. 1.22)'], + array['Arcade'], + '{"mame":["steaser"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'strong-link-ukraine-v-43-48', + 'Strong Link (Ukraine, V. 43.48)', + 'Extrema', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["strlink"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'studio-ii', + 'Studio II', + 'RCA', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["studio2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rca/studio2.cpp"]}'::jsonb + ), + ( + 'stunt-air', + 'Stunt Air', + 'Nuova Videotron', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["stuntair"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/stuntair.cpp"]}'::jsonb + ), + ( + 'stunt-cycle', + 'Stunt Cycle', + 'Atari', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["stuntcyc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'stunt-typhoon-plus', + 'Stunt Typhoon Plus', + 'Taito', + 2001, + array['Stunt Typhoon Plus (VER.2.04J)'], + array['Arcade'], + '{"mame":["styphp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotz.cpp"]}'::jsonb + ), + ( + 'su2000', + 'SU2000', + 'Virtuality', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["su2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/su2000.cpp"]}'::jsonb + ), + ( + 'sub-hunter-model-racing', + 'Sub Hunter (Model Racing)', + 'Model Racing', + 1979, + '{}'::text[], + array['Racing'], + '{"mame":["subhuntr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["modelracing/subhuntr.cpp"]}'::jsonb + ), + ( + 'submarine-sigma', + 'Submarine (Sigma)', + 'Sigma Enterprises Inc.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/sub.cpp"]}'::jsonb + ), + ( + 'subroc-3d', + 'Subroc-3D', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["subroc3d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/turbo.cpp"]}'::jsonb + ), + ( + 'subs', + 'Subs', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["subs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/subs.cpp"]}'::jsonb + ), + ( + 'success-joe', + 'Success Joe', + 'Taito Corporation / Wave', + 1990, + array['Success Joe (World)'], + array['Arcade'], + '{"mame":["scessjoe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/ashnojoe.cpp"]}'::jsonb + ), + ( + 'sugorotic-japan', + 'Sugorotic JAPAN', + 'Namco', + 2002, + array['Sugorotic JAPAN (STJ1 Ver.C)'], + array['Arcade'], + '{"mame":["sugorotc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'suhoseong', + 'Suhoseong', + 'SemiCom', + 1997, + array['Suhoseong (Korea)'], + array['Arcade'], + '{"mame":["suhosong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'suiko-enbu-outlaws-of-the-lost-dynasty-juetl-950314-v2-001', + 'Suiko Enbu / Outlaws of the Lost Dynasty (JUETL 950314 V2.001)', + 'Data East Corporation', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["suikoenb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'sukeban-jansi-ryuko', + 'Sukeban Jansi Ryuko', + 'White Board', + 1988, + array['Sukeban Jansi Ryuko (set 2, System 16B, FD1089B 317-5021)'], + array['Arcade'], + '{"mame":["sjryuko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'sultan-s-wish', + 'Sultan''s Wish', + 'Konami', + null, + array['Sultan''s Wish (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["sultanw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'sun-2-120', + 'Sun 2/120', + 'Sun Microsystems', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sun2_120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun2.cpp"]}'::jsonb + ), + ( + 'sun-2-50', + 'Sun 2/50', + 'Sun Microsystems', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sun2_50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun2.cpp"]}'::jsonb + ), + ( + 'sun-3-110', + 'Sun 3/110', + 'Sun Microsystems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3.cpp"]}'::jsonb + ), + ( + 'sun-3-260-280', + 'Sun 3/260/280', + 'Sun Microsystems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_260"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3.cpp"]}'::jsonb + ), + ( + 'sun-3-460-470-480', + 'Sun 3/460/470/480', + 'Sun Microsystems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_460"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3x.cpp"]}'::jsonb + ), + ( + 'sun-3-50', + 'Sun 3/50', + 'Sun Microsystems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3.cpp"]}'::jsonb + ), + ( + 'sun-3-60', + 'Sun 3/60', + 'Sun Microsystems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_60"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3.cpp"]}'::jsonb + ), + ( + 'sun-3-75-140-150-160-180', + 'Sun 3/75/140/150/160/180', + 'Sun Microsystems', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3.cpp"]}'::jsonb + ), + ( + 'sun-3-80', + 'Sun 3/80', + 'Sun Microsystems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3x.cpp"]}'::jsonb + ), + ( + 'sun-3-e', + 'Sun 3/E', + 'Sun Microsystems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sun3_e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun3.cpp"]}'::jsonb + ), + ( + 'sun-4-110', + 'Sun 4/110', + 'Sun Microsystems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sun4_110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun4.cpp"]}'::jsonb + ), + ( + 'sun-4-3x0', + 'Sun 4/3x0', + 'Sun Microsystems', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sun4_300"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun4.cpp"]}'::jsonb + ), + ( + 'sun-4-4x0', + 'Sun 4/4x0', + 'Sun Microsystems', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sun4_400"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun4.cpp"]}'::jsonb + ), + ( + 'sun-1', + 'Sun-1', + 'Sun Microsystems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["sun1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/sun1.cpp"]}'::jsonb + ), + ( + 'sundance', + 'Sundance', + 'Cinematronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sundance"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'sunset-riders', + 'Sunset Riders', + 'bootleg / Konami', + 1993, + array['Sunset Riders (scrambled bootleg of Mega Drive version)', 'Sunset Riders (4 Players ver EAC)'], + array['Arcade'], + '{"mame":["srmdb","ssriders"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp","konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'sunset-riders-super-street-fighter-ii-the-new-challengers', + 'Sunset Riders / Super Street Fighter II - The New Challengers', + 'bootleg / Sega', + 1994, + array['Sunset Riders / Super Street Fighter II - The New Challengers (scrambled bootleg of Mega Drive versions)'], + array['Fighting'], + '{"mame":["srssf2mb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'super-9-sensory-chess-challenger', + 'Super "9" Sensory Chess Challenger', + 'Fidelity Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["super9cc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/csc.cpp"]}'::jsonb + ), + ( + 'super-21', + 'Super 21', + 'Public MNG', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["super21p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'super-555', + 'Super 555', + 'GMS', + 1999, + array['Super 555 (English version V1.5)'], + array['Arcade'], + '{"mame":["super555"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'super-70-s', + 'Super 70''s', + 'IGS', + null, + array['Super 70''s (V100US)'], + array['Arcade'], + '{"mame":["super70s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'super-97', + 'Super 97', + 'Cadillac Jack', + 1997, + array['Super 97 (Ver. 1.00)'], + array['Arcade'], + '{"mame":["super97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'super-a-can', + 'Super A''Can', + 'Funtech Entertainment', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["supracan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["umc/supracan.cpp"]}'::jsonb + ), + ( + 'super-abc-pac-man-multigame-kit-sep-03-1999', + 'Super ABC (Pac-Man multigame kit, Sep. 03 1999)', + 'hack (Two-Bit Score)', + 1999, + '{}'::text[], + array['Classic'], + '{"mame":["superabc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'super-arcade-101-in-1', + 'Super Arcade 101-in-1', + '', + null, + array['Super Arcade 101-in-1 (Firecore/VT hybrid, set 1)'], + array['Arcade'], + '{"mame":["sarc110"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_firecore.cpp"]}'::jsonb + ), + ( + 'super-astro-fighter', + 'Super Astro Fighter', + 'Data East Corporation', + 1981, + array['Super Astro Fighter (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["csuperas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'super-bagman', + 'Super Bagman', + 'Valadon Automation', + 1984, + array['Super Bagman (version 5)'], + array['Arcade'], + '{"mame":["sbagman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["valadon/bagman.cpp"]}'::jsonb + ), + ( + 'super-ball', + 'Super Ball', + 'Amcoe', + 2002, + array['Super Ball (Version 1.3)'], + array['Arcade'], + '{"mame":["suprball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'super-ball-2001', + 'Super Ball 2001', + 'GMS', + 2001, + array['Super Ball 2001 (Italy version 5.23)'], + array['Arcade'], + '{"mame":["sball2k1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'super-baseball-double-play-home-run-derby', + 'Super Baseball Double Play Home Run Derby', + 'Leland Corporation / Tradewest', + 1987, + '{}'::text[], + array['Sports'], + '{"mame":["dblplay"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'super-basketball', + 'Super Basketball', + 'Konami', + 1984, + array['Super Basketball (version I, encrypted)'], + array['Arcade'], + '{"mame":["sbasketb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/sbasketb.cpp"]}'::jsonb + ), + ( + 'super-bass-station', + 'Super Bass Station', + 'Novation', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["sbasssta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novation/basssta.cpp"]}'::jsonb + ), + ( + 'super-bishi-bashi-champ', + 'Super Bishi Bashi Champ', + 'Konami', + 1998, + array['Super Bishi Bashi Champ (ver JAA, 2 Players)'], + array['Arcade'], + '{"mame":["sbishi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/bishi.cpp"]}'::jsonb + ), + ( + 'super-bowl', + 'Super Bowl', + 'Greyhound Electronics', + 1982, + array['Super Bowl (Version 16.03B)'], + array['Arcade'], + '{"mame":["superbwl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'super-breakout', + 'Super Breakout', + 'Atari', + 1978, + array['Super Breakout (rev 04)'], + array['Arcade'], + '{"mame":["sbrkout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/sbrkout.cpp"]}'::jsonb + ), + ( + 'super-bubble-2003', + 'Super Bubble 2003', + 'Limenko', + 2003, + array['Super Bubble 2003 (World, Ver 1.0)'], + array['Arcade'], + '{"mame":["sb2003"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/limenko.cpp"]}'::jsonb + ), + ( + 'super-bubble-bobble-sun-mixing-mega-drive-clone-hardware', + 'Super Bubble Bobble (Sun Mixing, Mega Drive clone hardware)', + 'Sun Mixing', + 1996, + '{}'::text[], + array['Platformer', 'Puzzle'], + '{"mame":["sbubsm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_sunmix.cpp"]}'::jsonb + ), + ( + 'super-bubble-pop', + 'Super Bubble Pop', + 'Vektorlogic', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["sbp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'super-bug', + 'Super Bug', + 'Atari (Kee Games)', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["superbug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/firetrk.cpp"]}'::jsonb + ), + ( + 'super-burger-time', + 'Super Burger Time', + 'Data East Corporation', + 1990, + array['Super Burger Time (World, set 1)'], + array['Arcade'], + '{"mame":["supbtime"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/supbtime.cpp"]}'::jsonb + ), + ( + 'super-butterfly-2000', + 'Super Butterfly 2000', + 'Random Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["superb2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'super-c-playchoice-10', + 'Super C (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_suprc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'super-card-v417-encrypted', + 'Super Card (v417, encrypted)', + 'Fun World', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["supercrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/supercrd.cpp"]}'::jsonb + ), + ( + 'super-card-2-in-1', + 'Super Card 2 in 1', + 'GMS', + 2001, + array['Super Card 2 in 1 (English version 03.23)'], + array['Arcade'], + '{"mame":["sc2in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'super-champion-baseball', + 'Super Champion Baseball', + 'Alpha Denshi Co. (SNK of America license)', + 1989, + array['Super Champion Baseball (US)'], + array['Sports'], + '{"mame":["sbasebal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k.cpp"]}'::jsonb + ), + ( + 'super-chase-criminal-termination', + 'Super Chase - Criminal Termination', + 'Taito Corporation Japan', + 1992, + array['Super Chase - Criminal Termination (World)'], + array['Arcade'], + '{"mame":["superchs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/superchs.cpp"]}'::jsonb + ), + ( + 'super-cherry-master-v1-1', + 'Super Cherry Master (v1.1)', + 'bootleg', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["scmaster"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'super-cherry-master-v5-2', + 'Super Cherry Master (V5.2)', + 'Dyna', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["scherrym"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'super-cherry-master-plus-v1-6', + 'Super Cherry Master Plus (V1.6)', + 'Dyna', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["scherrymp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'super-chick', + 'Super Chick', + 'Microhard', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["schick"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/schick.cpp"]}'::jsonb + ), + ( + 'super-cobra', + 'Super Cobra', + 'Konami', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["scobra"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'super-constellation', + 'Super Constellation', + 'Novag Industries / Intelligent Heuristic Programming', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["supercon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/const.cpp"]}'::jsonb + ), + ( + 'super-contra', + 'Super Contra', + 'Konami', + 1988, + array['Super Contra (set 1)'], + array['Shooter', 'Platformer'], + '{"mame":["scontra"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/thunderx.cpp"]}'::jsonb + ), + ( + 'super-cross-ii', + 'Super Cross II', + 'Sanritsu / GM Shoji', + 1986, + array['Super Cross II (Japan, set 1)'], + array['Arcade'], + '{"mame":["sprcros2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sanritsu/sprcros2.cpp"]}'::jsonb + ), + ( + 'super-crowns-golf', + 'Super Crowns Golf', + 'Nasco', + 1989, + array['Super Crowns Golf (World)'], + array['Sports'], + '{"mame":["suprgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nasco/suprgolf.cpp"]}'::jsonb + ), + ( + 'super-cup-finals', + 'Super Cup Finals', + 'Taito Corporation Japan', + 1993, + array['Super Cup Finals (Ver 2.2O 1994/01/13, single PCB)'], + array['Arcade'], + '{"mame":["scfinals"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'super-dead-heat', + 'Super Dead Heat', + 'Taito Corporation', + 1985, + array['Super Dead Heat (World)'], + array['Arcade'], + '{"mame":["spdheat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/spdheat.cpp"]}'::jsonb + ), + ( + 'super-denshi-techou-pet-world', + 'Super Denshi Techou - Pet World', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jd362"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/superjr.cpp"]}'::jsonb + ), + ( + 'super-denshi-techou-jr-nigaoe-telepathy', + 'Super Denshi Techou Jr. - Nigaoe Telepathy', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jd320"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/superjr.cpp"]}'::jsonb + ), + ( + 'super-denshi-techou-jr-pet-telepathy', + 'Super Denshi Techou Jr. - Pet Telepathy', + 'Casio', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["jd361"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/superjr.cpp"]}'::jsonb + ), + ( + 'super-denshi-techou-jr-puppy-telepathy', + 'Super Denshi Techou Jr. - Puppy Telepathy', + 'Casio', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["jd360"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/superjr.cpp"]}'::jsonb + ), + ( + 'super-derby-playmark-v-07-03', + 'Super Derby (Playmark, v.07.03)', + 'Playmark', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["sderby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'super-derby-satellite-board', + 'Super Derby (satellite board)', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sderbys"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000a.cpp"]}'::jsonb + ), + ( + 'super-derby-ii', + 'Super Derby II', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sderby2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sderby2.cpp"]}'::jsonb + ), + ( + 'super-derby-ii-satellite-board', + 'Super Derby II (satellite board)', + 'Sega', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sderby2s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sg1000a.cpp"]}'::jsonb + ), + ( + 'super-dodge-ball', + 'Super Dodge Ball', + 'Technos Japan', + 1987, + array['Super Dodge Ball (US)'], + array['Arcade'], + '{"mame":["spdodgeb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/spdodgeb.cpp"]}'::jsonb + ), + ( + 'super-dodge-ball-kunio-no-nekketsu-toukyuu-densetsu', + 'Super Dodge Ball / Kunio no Nekketsu Toukyuu Densetsu', + 'Technos Japan', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["sdodgeb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'super-don-quix-ote-long-scenes', + 'Super Don Quix-ote (Long Scenes)', + 'Universal', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["superdq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/superdq.cpp"]}'::jsonb + ), + ( + 'super-donkey-kong-super-bomberman-2-super-famicom-box', + 'Super Donkey Kong / Super Bomberman 2 (Super Famicom Box)', + 'Nintendo / Hudson Soft', + null, + '{}'::text[], + array['Platformer', 'Classic'], + '{"mame":["pss64"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/sfcbox.cpp"]}'::jsonb + ), + ( + 'super-donkey-kong-super-tetris-2-bombliss-super-famicom-box', + 'Super Donkey Kong / Super Tetris 2 + Bombliss (Super Famicom Box)', + 'Nintendo / BPS', + 1994, + '{}'::text[], + array['Platformer', 'Puzzle', 'Classic'], + '{"mame":["pss63"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/sfcbox.cpp"]}'::jsonb + ), + ( + 'super-dou-di-zhu-special-v122cn', + 'Super Dou Di Zhu Special (V122CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["cjddzsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'super-doubles-tennis', + 'Super Doubles Tennis', + 'Data East Corporation', + 1983, + array['Super Doubles Tennis (DECO Cassette) (Japan)'], + array['Sports'], + '{"mame":["csdtenis","sdtennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp","dataeast/btime.cpp"]}'::jsonb + ), + ( + 'super-dragon', + 'Super Dragon', + 'OCT', + 1995, + array['Super Dragon (Ver 211)'], + array['Arcade'], + '{"mame":["superdrg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'super-dragon-ball-z', + 'Super Dragon Ball Z', + 'Banpresto / Spike', + 2005, + array['Super Dragon Ball Z (DB1 Ver. B)'], + array['Arcade'], + '{"mame":["superdbz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'super-duck', + 'Super Duck', + 'Comad', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["supduck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/supduck.cpp"]}'::jsonb + ), + ( + 'super-eagle-shot', + 'Super Eagle Shot', + 'Seta', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["speglsht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/speglsht.cpp"]}'::jsonb + ), + ( + 'super-enterprise-model-210', + 'Super Enterprise (model 210)', + 'Newcrest Technology / CXG Systems / LogiSoft', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["senterp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["newcrest/senterprise.cpp"]}'::jsonb + ), + ( + 'super-expert', + 'Super Expert', + 'Novag Industries / Intelligent Heuristic Programming', + 1988, + array['Super Expert (version A, set 1)'], + array['Arcade'], + '{"mame":["sexperta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/sexpert.cpp"]}'::jsonb + ), + ( + 'super-forte', + 'Super Forte', + 'Novag Industries / Intelligent Heuristic Programming', + 1987, + array['Super Forte (version A, set 1)'], + array['Arcade'], + '{"mame":["sfortea"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/sexpert.cpp"]}'::jsonb + ), + ( + 'super-game', + 'Super Game', + 'Sono Corp Japan', + null, + array['Super Game (Sega Master System Multi-game bootleg, 01 Final Bubble Bobble)'], + array['Arcade'], + '{"mame":["smssgame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sms_bootleg.cpp"]}'::jsonb + ), + ( + 'super-game-25-in-1-gm-228', + 'Super Game 25-in-1 (GM-228)', + 'Timetop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["timetp25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'super-game-36-in-1-timetop-supergame-pal', + 'Super Game 36-in-1 (TimeTop SuperGame) (PAL)', + 'TimeTop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["timetp36"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'super-game-7-in-1-timetop-supergame-pal', + 'Super Game 7-in-1 (TimeTop SuperGame) (PAL)', + 'TimeTop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["timetp7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'super-game-iii', + 'Super Game III', + '', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["supergm3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/multigam.cpp"]}'::jsonb + ), + ( + 'super-game-mega-type-1', + 'Super Game Mega Type 1', + '', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["sgmt1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/multigam.cpp"]}'::jsonb + ), + ( + 'super-gem-fighter-mini-mix', + 'Super Gem Fighter: Mini Mix', + 'Capcom', + 1997, + array['Super Gem Fighter: Mini Mix (USA 970904)'], + array['Arcade'], + '{"mame":["sgemf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'super-glob', + 'Super Glob', + 'Epos Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["suprglob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'super-gran-safari', + 'Super Gran Safari', + 'New Impeuropex Corp.', + 1996, + array['Super Gran Safari (ver. 3.11)'], + array['Arcade'], + '{"mame":["sgsafari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'super-gt-24h', + 'Super GT 24h', + 'Jaleco', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["sgt24h"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'super-hana-paradise', + 'Super Hana Paradise', + 'Dynax', + 1994, + array['Super Hana Paradise (Japan)'], + array['Arcade'], + '{"mame":["hparadis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'super-hang-on-mega-tech', + 'Super Hang-On (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_shang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'super-hang-on-sitdown-upright-unprotected', + 'Super Hang-On (sitdown/upright) (unprotected)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["shangon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaorun.cpp"]}'::jsonb + ), + ( + 'super-high-impact', + 'Super High Impact', + 'Midway', + 1991, + array['Super High Impact (rev LA1 09/30/91)'], + array['Arcade'], + '{"mame":["shimpact"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'super-jolly', + 'Super Jolly', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["supjolly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl3.cpp"]}'::jsonb + ), + ( + 'super-kids-jiu-nan-xiao-yingxiong-s019cn', + 'Super Kids / Jiu Nan Xiao Yingxiong (S019CN)', + 'IGS (Golden Dragon Amusement license)', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["superkds"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_fear.cpp"]}'::jsonb + ), + ( + 'super-league-fd1094-317-0045', + 'Super League (FD1094 317-0045)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["suprleag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'super-loco-93', + 'Super Loco 93', + '', + 1993, + array['Super Loco 93 (Spanish, set 1)'], + array['Arcade'], + '{"mame":["sloco93"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'super-locomotive', + 'Super Locomotive', + 'Sega', + 1982, + array['Super Locomotive (Rev.A)'], + array['Arcade'], + '{"mame":["suprloco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/suprloco.cpp"]}'::jsonb + ), + ( + 'super-lucky-roulette', + 'Super Lucky Roulette', + 'bootleg', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["roul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/roul.cpp"]}'::jsonb + ), + ( + 'super-lup-lup-puzzle-zhuan-zhuan-puzzle', + 'Super Lup Lup Puzzle / Zhuan Zhuan Puzzle', + 'Omega System', + 1999, + array['Super Lup Lup Puzzle / Zhuan Zhuan Puzzle (version 4.0 / 990518)'], + array['Puzzle'], + '{"mame":["suplup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'super-major-league-u-960108-v1-000', + 'Super Major League (U 960108 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["smleague"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'super-mario-all-stars-nintendo-super-system', + 'Super Mario All-Stars (Nintendo Super System)', + 'Nintendo', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_smas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'super-mario-bros-playchoice-10', + 'Super Mario Bros. (PlayChoice-10)', + 'Nintendo', + 1985, + '{}'::text[], + array['Platformer'], + '{"mame":["pc_smb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'super-mario-bros-2-playchoice-10', + 'Super Mario Bros. 2 (PlayChoice-10)', + 'Nintendo', + 1988, + '{}'::text[], + array['Platformer'], + '{"mame":["pc_smb2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'super-mario-bros-3', + 'Super Mario Bros. 3', + 'Sang Ho Soft', + 1987, + array['Super Mario Bros. 3 (NES bootleg)'], + array['Platformer'], + '{"mame":["smb3bl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_arcade_bl.cpp"]}'::jsonb + ), + ( + 'super-mario-bros-3-playchoice-10', + 'Super Mario Bros. 3 (PlayChoice-10)', + 'Nintendo', + 1988, + '{}'::text[], + array['Platformer'], + '{"mame":["pc_smb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'super-mario-fushigi-no-janjanland', + 'Super Mario Fushigi no JanJanLand', + 'Nintendo / Capcom', + 2006, + array['Super Mario Fushigi no JanJanLand (Ver.1.00C, 2006/08/29)'], + array['Arcade'], + '{"mame":["mariojjl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'super-mario-fushigi-no-korokoro-party-center', + 'Super Mario Fushigi no Korokoro Party (center)', + 'Nintendo / Capcom', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["masmario"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'super-mario-fushigi-no-korokoro-party-satellite', + 'Super Mario Fushigi no Korokoro Party (satellite)', + 'Nintendo / Capcom', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["masmarios"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'super-mario-fushigi-no-korokoro-party-2', + 'Super Mario Fushigi no Korokoro Party 2', + 'Nintendo / Capcom', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["masmario2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'super-mario-kart-super-mario-collection-star-fox-super-famicom-box', + 'Super Mario Kart / Super Mario Collection / Star Fox (Super Famicom Box)', + 'Nintendo', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["pss61"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/sfcbox.cpp"]}'::jsonb + ), + ( + 'super-mario-world-mario-undoukai', + 'Super Mario World - Mario Undoukai', + 'Banpresto', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["marioun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/banprestoms.cpp"]}'::jsonb + ), + ( + 'super-mario-world-nintendo-super-system', + 'Super Mario World (Nintendo Super System)', + 'Nintendo', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_smw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'super-marukin-ban', + 'Super Marukin-Ban', + 'Yuga', + 1990, + array['Super Marukin-Ban (Japan 911128)'], + array['Arcade'], + '{"mame":["marukin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'super-masters-golf', + 'Super Masters Golf', + 'Sega', + 1989, + array['Super Masters Golf (World?, Floppy Based, FD1094 317-0058-05d?)'], + array['Sports'], + '{"mame":["sgmast"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'super-match-2003', + 'Super Match 2003', + 'GMS', + 2003, + array['Super Match 2003 (Version 3.1 2003-11-04)'], + array['Arcade'], + '{"mame":["smatch03"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'super-mini-boy', + 'Super Mini-Boy', + 'Bonanza Enterprises, Ltd', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sminiboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/miniboy7.cpp"]}'::jsonb + ), + ( + 'super-miss-world', + 'Super Miss World', + 'Comad', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["smissw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'super-model', + 'Super Model', + 'Comad & New Japan System', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["supmodel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'super-model-ii', + 'Super Model II', + 'Comad', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["supmodl2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'super-monaco-gp-fd1094-317-0126a', + 'Super Monaco GP (FD1094 317-0126a)', + 'Sega', + 1989, + array['Super Monaco GP (World, Rev B) (FD1094 317-0126a)'], + array['Arcade'], + '{"mame":["smgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'super-monaco-gp-mega-tech', + 'Super Monaco GP (Mega-Tech)', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_smgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'super-motor', + 'Super Motor', + 'Duintronic', + null, + array['Super Motor (prototype)'], + array['Arcade'], + '{"mame":["smotor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/smotor.cpp"]}'::jsonb + ), + ( + 'super-mouse', + 'Super Mouse', + 'Taito Corporation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["suprmous"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'super-nova', + 'Super Nova', + 'Novag Industries / Intelligent Heuristic Programming', + 1990, + array['Super Nova (Novag, set 1)'], + array['Arcade'], + '{"mame":["nsnova"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/primo.cpp"]}'::jsonb + ), + ( + 'super-nudger-ii-p173', + 'Super Nudger II - P173', + 'Coinmaster', + 1989, + array['Super Nudger II - P173 (Version 5.21)'], + array['Arcade'], + '{"mame":["supnudg2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmstr.cpp"]}'::jsonb + ), + ( + 'super-othello', + 'Super Othello', + 'Success / Fujiwara', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["sothello"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/sothello.cpp"]}'::jsonb + ), + ( + 'super-pac-man', + 'Super Pac-Man', + 'Namco', + 1982, + '{}'::text[], + array['Classic'], + '{"mame":["superpac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'super-pacman-v1-2-cherry-master', + 'Super Pacman (v1.2) + Cherry Master', + '', + null, + array['Super Pacman (v1.2) + Cherry Master (Corsica, v8.31, unencrypted, set 1)'], + array['Arcade'], + '{"mame":["cmpacman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'super-pang', + 'Super Pang', + 'Mitchell', + 1990, + array['Super Pang (World 900914)'], + array['Arcade'], + '{"mame":["spang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/mitchell.cpp"]}'::jsonb + ), + ( + 'super-petrix', + 'Super Petrix', + '', + null, + array['Super Petrix (ver. 1P)'], + array['Arcade'], + '{"mame":["spetrix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'super-picky-talk-access-pet', + 'Super Picky Talk - Access Pet', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jd368"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'super-picky-talk-forest-of-gurutan', + 'Super Picky Talk - Forest of Gurutan', + 'Casio', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["pickytlk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'super-picky-talk-my-room-fantasy', + 'Super Picky Talk - My room fantasy', + 'Casio', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["jd366"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/pickytlk.cpp"]}'::jsonb + ), + ( + 'super-pit-boss-9221-02a', + 'Super Pit Boss (9221-02A)', + 'Merit', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["spitboss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'super-pool', + 'Super Pool', + 'ABM Games', + 1998, + array['Super Pool (ver. 1.2)'], + array['Arcade'], + '{"mame":["suprpool"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/magic10.cpp"]}'::jsonb + ), + ( + 'super-pool-99', + 'Super Pool 99', + 'Electronic Projects', + 1998, + array['Super Pool 99 (Version 0.36)'], + array['Arcade'], + '{"mame":["spool99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/spool99.cpp"]}'::jsonb + ), + ( + 'super-punch-out', + 'Super Punch-Out!!', + 'Nintendo', + 1984, + array['Super Punch-Out!! (Rev B)'], + array['Arcade'], + '{"mame":["spnchout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/punchout.cpp"]}'::jsonb + ), + ( + 'super-puzzle-fighter-ii-turbo', + 'Super Puzzle Fighter II Turbo', + 'Capcom', + 1996, + array['Super Puzzle Fighter II Turbo (Europe 960529)'], + array['Puzzle'], + '{"mame":["spf2t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'super-qix', + 'Super Qix', + 'Kaneko / Taito', + 1987, + array['Super Qix (World/Japan, V1.2)'], + array['Arcade'], + '{"mame":["sqix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/superqix.cpp"]}'::jsonb + ), + ( + 'super-queen-bee', + 'Super Queen Bee', + 'Subsino', + 2002, + array['Super Queen Bee (Ver. 101)'], + array['Arcade'], + '{"mame":["squeenb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'super-quique-mega-duck-spain', + 'Super Quique / Mega Duck (Spain)', + 'Cefa Toys', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mduckspa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/gb.cpp"]}'::jsonb + ), + ( + 'super-ranger-v2-0', + 'Super Ranger (v2.0)', + 'SunA', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["sranger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna8.cpp"]}'::jsonb + ), + ( + 'super-real-basketball-mega-tech', + 'Super Real Basketball (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_srbb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'super-rider', + 'Super Rider', + 'Taito Corporation (Venture Line license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["suprridr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/suprridr.cpp"]}'::jsonb + ), + ( + 'super-rider-italy-v2-0', + 'Super Rider (Italy, v2.0)', + 'Subsino', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["smoto20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'super-road-champions', + 'Super Road Champions', + 'Model Racing', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["srdchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 'super-roller-v7-0', + 'Super Roller (v7.0)', + 'Nova Desitec', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["srollnd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'super-sensor-iv', + 'Super Sensor IV', + 'Novag Industries / Intelligent Heuristic Programming', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["ssensor4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/const.cpp"]}'::jsonb + ), + ( + 'super-shanghai-2000', + 'Super Shanghai 2000', + 'bootleg', + 2001, + array['Super Shanghai 2000 (set 1, green board)'], + array['Arcade'], + '{"mame":["ssh2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sshanghai.cpp"]}'::jsonb + ), + ( + 'super-shanghai-2000-wrestle-fiesta', + 'Super Shanghai 2000 - Wrestle Fiesta', + 'bootleg', + 2000, + array['Super Shanghai 2000 - Wrestle Fiesta (30% bonus, red board)'], + array['Arcade'], + '{"mame":["ssh2000wf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sshanghai.cpp"]}'::jsonb + ), + ( + 'super-shanghai-2001', + 'Super Shanghai 2001', + 'bootleg', + 2001, + array['Super Shanghai 2001 (set 1, red board)'], + array['Arcade'], + '{"mame":["ssh2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sshanghai.cpp"]}'::jsonb + ), + ( + 'super-shanghai-2005-gdl-0031a', + 'Super Shanghai 2005 (GDL-0031A)', + 'Starfish', + 2005, + array['Super Shanghai 2005 (Japan, Rev A) (GDL-0031A)'], + array['Arcade'], + '{"mame":["ss2005"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'super-shanghai-dragon-s-eye', + 'Super Shanghai Dragon''s Eye', + 'Hot-B Co., Ltd.', + 1992, + array['Super Shanghai Dragon''s Eye (World)'], + array['Arcade'], + '{"mame":["sshangha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/sshangha.cpp"]}'::jsonb + ), + ( + 'super-shot', + 'Super Shot', + 'Model Racing', + 1979, + array['Super Shot (set 1)'], + array['Arcade'], + '{"mame":["sshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["modelracing/sshot.cpp"]}'::jsonb + ), + ( + 'super-sidekicks-tokuten-ou', + 'Super Sidekicks / Tokuten Ou', + 'SNK', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["ssideki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'super-sidekicks-2-the-world-championship-tokuten-ou-2-real-fight-football-ngm-061-ngh-061', + 'Super Sidekicks 2 - The World Championship / Tokuten Ou 2 - Real Fight Football (NGM-061 ~ NGH-061)', + 'SNK', + 1994, + '{}'::text[], + array['Sports'], + '{"mame":["ssideki2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'super-sidekicks-3-the-next-glory-tokuten-ou-3-eikou-e-no-chousen', + 'Super Sidekicks 3 - The Next Glory / Tokuten Ou 3 - Eikou e no Chousen', + 'SNK', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["ssideki3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'super-six', + 'Super Six', + 'Advanced Digital Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["super6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adc/super6.cpp"]}'::jsonb + ), + ( + 'super-slam', + 'Super Slam', + 'Playmark', + 1993, + array['Super Slam (set 1)'], + array['Arcade'], + '{"mame":["sslam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sslam.cpp"]}'::jsonb + ), + ( + 'super-slave', + 'Super Slave', + 'Advanced Digital Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["superslv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["adc/superslave.cpp"]}'::jsonb + ), + ( + 'super-soccer-nintendo-super-system', + 'Super Soccer (Nintendo Super System)', + 'Human Inc.', + 1992, + '{}'::text[], + array['Sports'], + '{"mame":["nss_ssoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'super-space-2001', + 'Super Space 2001', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sspac2k1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'super-space-invaders-91', + 'Super Space Invaders ''91', + 'Taito Corporation Japan', + 1990, + array['Super Space Invaders ''91 (World, revised code, Rev 1)'], + array['Shooter'], + '{"mame":["ssi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'super-spacefortress-macross-chou-jikuu-yousai-macross', + 'Super Spacefortress Macross / Chou-Jikuu Yousai Macross', + 'Banpresto', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["macross"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'super-spacefortress-macross-ii-chou-jikuu-yousai-macross-ii', + 'Super Spacefortress Macross II / Chou-Jikuu Yousai Macross II', + 'Banpresto', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["macross2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'super-speed-race', + 'Super Speed Race', + 'Taito (Midway license)', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sspeedr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/sspeedr.cpp"]}'::jsonb + ), + ( + 'super-speed-race-junior', + 'Super Speed Race Junior', + 'Taito Corporation', + 1985, + array['Super Speed Race Junior (Japan)'], + array['Arcade'], + '{"mame":["ssrj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/ssrj.cpp"]}'::jsonb + ), + ( + 'super-sprint', + 'Super Sprint', + 'Atari Games', + 1986, + array['Super Sprint (rev 4)'], + array['Racing'], + '{"mame":["ssprint"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy2.cpp"]}'::jsonb + ), + ( + 'super-star', + 'Super Star', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["sstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'super-star-97-ming-xing-97', + 'Super Star 97 / Ming Xing 97', + 'Bordun International', + null, + array['Super Star 97 / Ming Xing 97 (version V153B)'], + array['Arcade'], + '{"mame":["sstar97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bordun/skylncr.cpp"]}'::jsonb + ), + ( + 'super-stars', + 'Super Stars', + 'Amatic Trading GmbH', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["suprstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amaticmg.cpp"]}'::jsonb + ), + ( + 'super-stars-v839-encrypted', + 'Super Stars (v839, encrypted)', + 'Fun World', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["supst839"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/supercrd.cpp"]}'::jsonb + ), + ( + 'super-stingray', + 'Super Stingray', + 'Alpha Denshi Co.', + 1986, + array['Super Stingray (Japan)'], + array['Arcade'], + '{"mame":["sstingry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k_n.cpp"]}'::jsonb + ), + ( + 'super-street-fighter-ii-turbo', + 'Super Street Fighter II Turbo', + 'Capcom', + 1994, + array['Super Street Fighter II Turbo (World 940223)'], + array['Fighting'], + '{"mame":["ssf2t"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'super-street-fighter-ii-the-new-challengers', + 'Super Street Fighter II: The New Challengers', + 'Capcom', + 1993, + array['Super Street Fighter II: The New Challengers (World 931005)', 'Super Street Fighter II - The New Challengers (scrambled bootleg of Mega Drive version)'], + array['Fighting'], + '{"mame":["ssf2","ssf2mdb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp","sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'super-tank', + 'Super Tank', + 'Video Games GmbH', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["supertnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["videogames/supertnk.cpp"]}'::jsonb + ), + ( + 'super-tank-attack', + 'Super Tank Attack', + 'Microprose Games Inc.', + 1992, + array['Super Tank Attack (prototype rev. 1.12)'], + array['Arcade'], + '{"mame":["stankatk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/micro3d.cpp"]}'::jsonb + ), + ( + 'super-tarzan-italy-v100i', + 'Super Tarzan (Italy, V100I)', + 'IGS (G.F. Gioca license)', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["starzan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'super-ten-v8-3', + 'Super Ten V8.3', + 'U.S. Games, Inc.', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["superten"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/usgames.cpp"]}'::jsonb + ), + ( + 'super-tennis-nintendo-super-system', + 'Super Tennis (Nintendo Super System)', + 'Nintendo', + 1991, + '{}'::text[], + array['Sports'], + '{"mame":["nss_sten"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'super-thunder-blade-mega-tech', + 'Super Thunder Blade (Mega-Tech)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_stbld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'super-toffy', + 'Super Toffy', + 'Midas', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["stoffy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'super-train', + 'Super Train', + 'Subsino', + 1996, + array['Super Train (Ver. 1.9)'], + array['Arcade'], + '{"mame":["strain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'super-trio', + 'Super Trio', + 'Gameace', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["suprtrio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'super-triv-english-questions', + 'Super Triv (English questions)', + 'Nova du Canada', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["striv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ), + ( + 'super-triv-ii', + 'Super Triv II', + 'Status Games', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["supertr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'super-triv-iii', + 'Super Triv III', + 'Status Games', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["supertr3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'super-tv-boy-pal', + 'Super TV Boy (PAL)', + 'Akor', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["stvboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/a2600.cpp"]}'::jsonb + ), + ( + 'super-twenty-one', + 'Super Twenty One', + 'Mirco Games', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["super21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/hitme.cpp"]}'::jsonb + ), + ( + 'super-two-in-one', + 'Super Two In One', + 'Fun Tech Corporation', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["fts2in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funtech/funtech_z80.cpp"]}'::jsonb + ), + ( + 'super-vip-v3-7', + 'Super VIP (v3.7)', + 'Novag Industries / Intelligent Heuristic Programming', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["nsvip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/vip.cpp"]}'::jsonb + ), + ( + 'super-vision', + 'Super Vision', + 'Watara', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["svision"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["svision/svision.cpp"]}'::jsonb + ), + ( + 'super-vision-8000', + 'Super Vision 8000', + 'Bandai', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["sv8000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bandai/sv8000.cpp"]}'::jsonb + ), + ( + 'super-visual-football-european-sega-cup', + 'Super Visual Football: European Sega Cup', + 'Sega', + 1994, + array['Super Visual Football: European Sega Cup (Rev A)'], + array['Sports'], + '{"mame":["svf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'super-volleyball', + 'Super Volleyball', + 'V-System Co.', + 1989, + array['Super Volleyball (Japan)'], + array['Arcade'], + '{"mame":["svolley"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/rpunch.cpp"]}'::jsonb + ), + ( + 'super-wing', + 'Super Wing', + 'Wing', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["superwng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wing/superwng.cpp"]}'::jsonb + ), + ( + 'super-world-court', + 'Super World Court', + 'Namco', + 1992, + array['Super World Court (World)'], + array['Arcade'], + '{"mame":["swcourt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'super-world-stadium', + 'Super World Stadium', + 'Namco', + 1992, + array['Super World Stadium (Japan)'], + array['Arcade'], + '{"mame":["sws"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-92', + 'Super World Stadium ''92', + 'Namco', + 1992, + array['Super World Stadium ''92 (Japan)'], + array['Arcade'], + '{"mame":["sws92"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-93', + 'Super World Stadium ''93', + 'Namco', + 1993, + array['Super World Stadium ''93 (Japan)'], + array['Arcade'], + '{"mame":["sws93"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-95', + 'Super World Stadium ''95', + 'Namco', + 1995, + array['Super World Stadium ''95 (Japan)'], + array['Arcade'], + '{"mame":["sws95"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-96', + 'Super World Stadium ''96', + 'Namco', + 1996, + array['Super World Stadium ''96 (Japan)'], + array['Arcade'], + '{"mame":["sws96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-97', + 'Super World Stadium ''97', + 'Namco', + 1997, + array['Super World Stadium ''97 (Japan)'], + array['Arcade'], + '{"mame":["sws97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-98', + 'Super World Stadium ''98', + 'Namco', + 1998, + array['Super World Stadium ''98 (Japan, SS81/VER.A)'], + array['Arcade'], + '{"mame":["sws98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-99', + 'Super World Stadium ''99', + 'Namco', + 1999, + array['Super World Stadium ''99 (Japan, SS91/VER.A3)'], + array['Arcade'], + '{"mame":["sws99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-2000', + 'Super World Stadium 2000', + 'Namco', + 2000, + array['Super World Stadium 2000 (Japan, SS01/VER.A)'], + array['Arcade'], + '{"mame":["sws2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'super-world-stadium-2001', + 'Super World Stadium 2001', + 'Namco', + 2001, + array['Super World Stadium 2001 (Japan, SS11/VER.A)'], + array['Arcade'], + '{"mame":["sws2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'super-xevious', + 'Super Xevious', + 'Namco', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sxevious"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/galaga.cpp"]}'::jsonb + ), + ( + 'super-zaxxon-315-5013', + 'Super Zaxxon (315-5013)', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["szaxxon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/zaxxon.cpp"]}'::jsonb + ), + ( + 'super-80-v1-2', + 'Super-80 (V1.2)', + 'Dick Smith Electronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["super80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/super80.cpp"]}'::jsonb + ), + ( + 'super-x-ntc', + 'Super-X (NTC)', + 'Dooyong (NTC license)', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["superx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'superbike', + 'Superbike', + 'Century Electronics', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["superbik"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'superboard-ii-model-600', + 'Superboard II Model 600', + 'Ohio Scientific', + 1978, + array['Superboard II Model 600 (Rev. B)'], + array['Arcade'], + '{"mame":["sb2m600b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["osi/osi.cpp"]}'::jsonb + ), + ( + 'superior-soldiers', + 'Superior Soldiers', + 'Irem America', + 1993, + array['Superior Soldiers (US)'], + array['Arcade'], + '{"mame":["ssoldier"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'superman', + 'Superman', + 'Taito Corporation', + 1988, + array['Superman (World)'], + array['Arcade'], + '{"mame":["superman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_x.cpp"]}'::jsonb + ), + ( + 'superstar-4435-81-u5-1', + 'Superstar (4435-81, U5-1)', + 'Merit', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["msupstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'supreme-200-handheld', + 'Supreme 200 (handheld)', + 'Fizz Creations', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["supr200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'supremo', + 'Supremo', + 'Novag Industries / Intelligent Heuristic Programming', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["supremo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/primo.cpp"]}'::jsonb + ), + ( + 'sure-shot', + 'Sure Shot', + 'SMS Manufacturing Corp.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sureshot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/smsmcorp.cpp"]}'::jsonb + ), + ( + 'sure-shot-older-dphl-hardware', + 'Sure Shot (older, dphl hardware)', + 'SMS Manufacturing Corp.', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["sureshoto"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'surf-planet', + 'Surf Planet', + 'Gaelco (Atari license)', + 1997, + array['Surf Planet (version 4.1)'], + array['Arcade'], + '{"mame":["surfplnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco3d.cpp"]}'::jsonb + ), + ( + 'surprise-5', + 'Surprise 5', + 'Cadillac Jack', + 1997, + array['Surprise 5 (Ver. 1.19)'], + array['Arcade'], + '{"mame":["surpr5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'surprise-attack', + 'Surprise Attack', + 'Konami', + 1990, + array['Surprise Attack (World ver. K)'], + array['Arcade'], + '{"mame":["suratk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/surpratk.cpp"]}'::jsonb + ), + ( + 'survival', + 'Survival', + 'Rock-Ola', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["survival"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["phoenix/phoenix.cpp"]}'::jsonb + ), + ( + 'survival-arts', + 'Survival Arts', + 'Sammy', + 1993, + array['Survival Arts (World)'], + array['Arcade'], + '{"mame":["survarts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'sushi-bar-toretore-sushi', + 'Sushi Bar / Toretore! Sushi', + 'Sammy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["sushibar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'susume-mile-smile-go-go-mile-smile-newer', + 'Susume! Mile Smile / Go Go! Mile Smile (newer)', + 'Fuuki', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["gogomile"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fuuki/fuukifg2.cpp"]}'::jsonb + ), + ( + 'sutjaro-haeyo-deluxe', + 'Sutjaro Haeyo Deluxe', + 'SemiCom', + 1996, + array['Sutjaro Haeyo Deluxe (Korea)'], + array['Arcade'], + '{"mame":["sutjarod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'suzuka-8-hours', + 'Suzuka 8 Hours', + 'Namco', + 1992, + array['Suzuka 8 Hours (World, Rev C)'], + array['Arcade'], + '{"mame":["suzuka8h"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'suzuka-8-hours-2', + 'Suzuka 8 Hours 2', + 'Namco', + 1993, + array['Suzuka 8 Hours 2 (World, Rev B)'], + array['Arcade'], + '{"mame":["suzuk8h2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'svi-318-pal', + 'SVI-318 (PAL)', + 'Spectravideo', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["svi318"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["svi/svi318.cpp"]}'::jsonb + ), + ( + 'svi-328-pal', + 'SVI-328 (PAL)', + 'Spectravideo', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["svi328"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["svi/svi318.cpp"]}'::jsonb + ), + ( + 'swat-315-5048', + 'SWAT (315-5048)', + 'Coreland / Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["swat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'swat-police', + 'SWAT Police', + 'ESD', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["swatpolc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'sweet-life', + 'Sweet Life', + 'Igrosoft', + 2004, + array['Sweet Life (041220 World)'], + array['Arcade'], + '{"mame":["sweetl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'sweet-life-2', + 'Sweet Life 2', + 'Igrosoft', + 2007, + array['Sweet Life 2 (071217 Russia)'], + array['Arcade'], + '{"mame":["sweetl2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'swimmer', + 'Swimmer', + 'Tehkan', + 1982, + array['Swimmer (set 1)'], + array['Arcade'], + '{"mame":["swimmer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'swing-gal', + 'Swing Gal', + 'Digital Denshi', + 1987, + array['Swing Gal (Japan 871221)'], + array['Arcade'], + '{"mame":["swinggal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8688.cpp"]}'::jsonb + ), + ( + 'swingin-in-the-green', + 'Swingin In The Green', + 'WMS', + 2000, + array['Swingin In The Green (Russian)'], + array['Arcade'], + '{"mame":["swingin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'swinging-singles', + 'Swinging Singles', + 'Yachiyo Denki (Entertainment Enterprises, Ltd. license)', + 1983, + array['Swinging Singles (US)'], + array['Arcade'], + '{"mame":["ssingles"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yachiyo/ssingles.cpp"]}'::jsonb + ), + ( + 'swp-hopper-board', + 'SWP Hopper Board', + 'Sega', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["hopper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'swtpc-6800-computer-system-with-swtbug', + 'SWTPC 6800 Computer System (with SWTBUG)', + 'Southwest Technical Products Corporation', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["swtpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["swtpc/swtpc.cpp"]}'::jsonb + ), + ( + 'swtpc-s-09-sbug', + 'swtpc S/09 Sbug', + 'SWTPC', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["swtpc09"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["swtpc/swtpc09.cpp"]}'::jsonb + ), + ( + 'sx-240-8-voice-programmable-polyphonic-synthesizer', + 'SX-240 8-Voice Programmable Polyphonic Synthesizer', + 'Kawai Musical Instrument Manufacturing', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sx240"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kawai/sx240.cpp"]}'::jsonb + ), + ( + 'sx-kn5000', + 'SX-KN5000', + 'Technics', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["kn5000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["matsushita/kn5000.cpp"]}'::jsonb + ), + ( + 'sx1010', + 'SX1010', + 'Casio', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["sx1010"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/sx1000.cpp"]}'::jsonb + ), + ( + 'sy-019s', + 'SY-019S', + 'Soyo', + null, + array['SY-019S (UMC UM8498F & UM8496 chipset)'], + array['Arcade'], + '{"mame":["sy019s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["umc/pc486vl.cpp"]}'::jsonb + ), + ( + 'sy-888b-288-in-1-handheld', + 'SY-888B 288 in 1 Handheld', + 'SY Corp', + 2016, + '{}'::text[], + array['Arcade'], + '{"mame":["sy888b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'sy-889-300-in-1-handheld', + 'SY-889 300 in 1 Handheld', + 'SY Corp', + 2017, + '{}'::text[], + array['Arcade'], + '{"mame":["sy889"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'sy35-music-synthesizer', + 'SY35 Music Synthesizer', + 'Yamaha', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["sy35"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymsy35.cpp"]}'::jsonb + ), + ( + 'sym-1-sy-vim-1', + 'SYM-1/SY-VIM-1', + 'Synertek Systems Corp.', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["sym1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["synertek/sym1.cpp"]}'::jsonb + ), + ( + 'symbols', + 'Symbols', + 'Advanced Video Technology', + 1985, + array['Symbols (ver 1.4)'], + array['Arcade'], + '{"mame":["avtsym14"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/avt.cpp"]}'::jsonb + ), + ( + 'sys1121', + 'SYS1121', + 'Motorola', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["sys1121"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["motorola/sys1121.cpp"]}'::jsonb + ), + ( + 'sys16', + 'SYS16', + 'National Semiconductor', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["sys16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["natsemi/sys16.cpp"]}'::jsonb + ), + ( + 'system-board-y2', + 'System Board Y2', + 'SI Electronics', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["systemy2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/y2.cpp"]}'::jsonb + ), + ( + 'system-gx', + 'System GX', + 'Konami', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["konamigx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'systemsp-factory-check-server', + 'SystemSP Factory Check Server', + 'Sega', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["spchecksrv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'syusse-oozumou', + 'Syusse Oozumou', + 'Technos Japan', + 1984, + array['Syusse Oozumou (Japan)'], + array['Arcade'], + '{"mame":["ssozumo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ssozumo.cpp"]}'::jsonb + ), + ( + 'syvalion', + 'Syvalion', + 'Taito Corporation', + 1988, + array['Syvalion (Japan)'], + array['Arcade'], + '{"mame":["syvalion"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_h.cpp"]}'::jsonb + ), + ( + 'sz-1', + 'SZ-1', + 'Casio', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["sz1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/cz230s.cpp"]}'::jsonb + ), + ( + 't-mek-v5-1-the-warlords', + 'T-MEK (v5.1, The Warlords)', + 'Atari Games', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["tmek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarigt.cpp"]}'::jsonb + ), + ( + 't-n-k-iii', + 'T.N.K III', + 'SNK', + 1985, + array['T.N.K III (US)'], + array['Arcade'], + '{"mame":["tnk3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 't-t-block', + 'T.T Block', + 'Taito', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["ttblock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 't-t-speed-race-cl', + 'T.T. Speed Race CL', + 'Taito', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["ttsracec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 't-v-21', + 'T.V. 21', + 'A-1 Supply', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tv21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/a1supply.cpp"]}'::jsonb + ), + ( + 't-v-21-iii', + 'T.V. 21 III', + 'A-1 Supply', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tv21_3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/a1supply.cpp"]}'::jsonb + ), + ( + 't410-test-suite', + 'T410 test suite', + 'T400 uController project', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["test410"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/test_t400.cpp"]}'::jsonb + ), + ( + 'table-tennis-champions', + 'Table Tennis Champions', + 'Gamart', + 1995, + '{}'::text[], + array['Sports'], + '{"mame":["ttchamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ttchamp.cpp"]}'::jsonb + ), + ( + 'tac-scan', + 'Tac/Scan', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["tacscan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80v.cpp"]}'::jsonb + ), + ( + 'tactician', + 'Tactician', + 'Konami (Sega license)', + 1982, + array['Tactician (set 1)'], + array['Arcade'], + '{"mame":["tactcian"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/rallyx.cpp"]}'::jsonb + ), + ( + 'taihou-de-doboon', + 'Taihou de Doboon', + 'Sammy', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["tdoboon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-10-t101001-na-a', + 'Taiko no Tatsujin 10 (T101001-NA-A)', + 'Namco', + 2007, + '{}'::text[], + array['Rhythm'], + '{"mame":["taiko10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-11-t111001-na-a', + 'Taiko no Tatsujin 11 (T111001-NA-A)', + 'Namco', + 2008, + '{}'::text[], + array['Rhythm'], + '{"mame":["taiko11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-2', + 'Taiko no Tatsujin 2', + 'Namco', + 2001, + array['Taiko no Tatsujin 2 (Japan, TK21 Ver.C)'], + array['Rhythm'], + '{"mame":["taiko2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-3', + 'Taiko no Tatsujin 3', + 'Namco', + 2002, + array['Taiko no Tatsujin 3 (Japan, TK31 Ver.A)'], + array['Rhythm'], + '{"mame":["taiko3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-4', + 'Taiko no Tatsujin 4', + 'Namco', + 2002, + array['Taiko no Tatsujin 4 (Japan, TK41 Ver.A)'], + array['Rhythm'], + '{"mame":["taiko4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-5', + 'Taiko no Tatsujin 5', + 'Namco', + 2003, + array['Taiko no Tatsujin 5 (Japan, TK51 Ver.A)'], + array['Rhythm'], + '{"mame":["taiko5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-6', + 'Taiko no Tatsujin 6', + 'Namco', + 2004, + array['Taiko no Tatsujin 6 (Japan, TK61 Ver.A)'], + array['Rhythm'], + '{"mame":["taiko6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-7-tk71-na-a', + 'Taiko no Tatsujin 7 (TK71-NA-A)', + 'Namco', + 2005, + '{}'::text[], + array['Rhythm'], + '{"mame":["taiko7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-8-tk8100-1-na-a', + 'Taiko no Tatsujin 8 (TK8100-1-NA-A)', + 'Namco', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["taiko8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-9-tk91001-na-a', + 'Taiko no Tatsujin 9 (TK91001-NA-A)', + 'Namco', + 2006, + '{}'::text[], + array['Rhythm'], + '{"mame":["taiko9"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'taiko-no-tatsujin-rt-nippon-no-kokoro', + 'Taiko no Tatsujin RT: Nippon no Kokoro', + 'Namco', + 2004, + array['Taiko no Tatsujin RT: Nippon no Kokoro (Japan, TKN1 Ver.A)'], + array['Rhythm'], + '{"mame":["taikort"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'tail-to-nose-great-championship-super-formula', + 'Tail to Nose - Great Championship / Super Formula', + 'V-System Co.', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["tail2nos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/tail2nos.cpp"]}'::jsonb + ), + ( + 'tailgunner', + 'Tailgunner', + 'Cinematronics', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["tailg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'taisen-hot-gimmick', + 'Taisen Hot Gimmick', + 'Psikyo', + 1997, + array['Taisen Hot Gimmick (Japan)'], + array['Arcade'], + '{"mame":["hotgmck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo4.cpp"]}'::jsonb + ), + ( + 'taisen-hot-gimmick-3-digital-surfing', + 'Taisen Hot Gimmick 3 Digital Surfing', + 'Psikyo', + 1999, + array['Taisen Hot Gimmick 3 Digital Surfing (Japan)'], + array['Arcade'], + '{"mame":["hotgmck3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo4.cpp"]}'::jsonb + ), + ( + 'taisen-hot-gimmick-4-ever', + 'Taisen Hot Gimmick 4 Ever', + 'Psikyo', + 2000, + array['Taisen Hot Gimmick 4 Ever (Japan)'], + array['Arcade'], + '{"mame":["hotgm4ev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo4.cpp"]}'::jsonb + ), + ( + 'taisen-hot-gimmick-kairakuten', + 'Taisen Hot Gimmick Kairakuten', + 'Psikyo', + 1998, + array['Taisen Hot Gimmick Kairakuten (Japan)'], + array['Arcade'], + '{"mame":["hgkairak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo4.cpp"]}'::jsonb + ), + ( + 'taisen-hot-gimmick-mix-party', + 'Taisen Hot Gimmick Mix Party', + 'XNauts', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["hotgmkmp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'taisen-tanto-r-sashissu-j-980216-v1-000', + 'Taisen Tanto-R Sashissu!! (J 980216 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["sasissu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'taisen-tokkae-dama', + 'Taisen Tokkae-dama', + 'Konami', + 1996, + array['Taisen Tokkae-dama (ver JAA)'], + array['Arcade'], + '{"mame":["tokkae"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'taishan-wuxian-jiaqiang-ban-v101cn', + 'Taishan Wuxian Jiaqiang Ban (V101CN)', + 'IGS', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["tswxp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'taito-cup-finals', + 'Taito Cup Finals', + 'Taito Corporation Japan', + 1993, + array['Taito Cup Finals (Ver 1.0O 1993/02/28)'], + array['Arcade'], + '{"mame":["cupfinal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'taito-power-goal', + 'Taito Power Goal', + 'Taito Corporation Japan', + 1994, + array['Taito Power Goal (Ver 2.5O 1994/11/03)'], + array['Arcade'], + '{"mame":["pwrgoal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'taiwan-chess-legend', + 'Taiwan Chess Legend', + 'Uniwang', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["tcl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'tajmahal-atronic', + 'Tajmahal (Atronic)', + 'Atronic', + 2002, + array['Tajmahal (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["tajmah"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'take-5', + 'Take 5', + 'Fun Games', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["take5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/fungames.cpp"]}'::jsonb + ), + ( + 'talbot', + 'Talbot', + 'Alpha Denshi Co. (Volt Electronics license)', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["talbot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/champbas.cpp"]}'::jsonb + ), + ( + 'tandy-200', + 'Tandy 200', + 'Tandy Radio Shack', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["tandy200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kyocera/kyocera.cpp"]}'::jsonb + ), + ( + 'tang-tang', + 'Tang Tang', + 'ESD', + 2000, + array['Tang Tang (ver. 0526, 26/05/2000, set 1)'], + array['Arcade'], + '{"mame":["tangtang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esd16.cpp"]}'::jsonb + ), + ( + 'tangram-q', + 'Tangram Q', + 'SNK', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["tangramq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'tank-8', + 'Tank 8', + 'Atari (Kee Games)', + 1976, + array['Tank 8 (set 1)'], + array['Arcade'], + '{"mame":["tank8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/tank8.cpp"]}'::jsonb + ), + ( + 'tank-battalion', + 'Tank Battalion', + 'Namco', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["tankbatt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/tankbatt.cpp"]}'::jsonb + ), + ( + 'tank-battle', + 'Tank Battle', + 'Microprose Games Inc.', + 1992, + array['Tank Battle (prototype rev. 4/21/92)'], + array['Arcade'], + '{"mame":["tankbatl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/micro3d.cpp"]}'::jsonb + ), + ( + 'tank-busters', + 'Tank Busters', + 'Valadon Automation', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["tankbust"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["valadon/tankbust.cpp"]}'::jsonb + ), + ( + 'tank-force', + 'Tank Force', + 'Namco', + 1991, + array['Tank Force (US, 2 Players)'], + array['Arcade'], + '{"mame":["tankfrce"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos1.cpp"]}'::jsonb + ), + ( + 'tank-ii', + 'Tank II', + 'Atari/Kee', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["tankii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'tank-tank-cocktail', + 'Tank/Tank Cocktail', + 'Atari/Kee', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["tank"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarittl.cpp"]}'::jsonb + ), + ( + 'tankers', + 'Tankers', + 'Fun Games', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["tankers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/fungames.cpp"]}'::jsonb + ), + ( + 'tao-taido', + 'Tao Taido', + 'Video System Co.', + 1993, + array['Tao Taido (2 button version)'], + array['Arcade'], + '{"mame":["taotaido"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/taotaido.cpp"]}'::jsonb + ), + ( + 'tap-a-tune', + 'Tap a Tune', + 'Moloney Manufacturing Inc. / Creative Electronics and Software', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["tapatune"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tapatune.cpp"]}'::jsonb + ), + ( + 'tapper-budweiser-1-27-84', + 'Tapper (Budweiser, 1/27/84)', + 'Bally Midway', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["tapper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'targ', + 'Targ', + 'Exidy', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["targ"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'target-ball-96', + 'Target Ball ''96', + 'Yun Sung', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["tgtbal96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'target-hits', + 'Target Hits', + 'Gaelco', + 1994, + array['Target Hits (ver 1.1, checksum 5152)'], + array['Arcade'], + '{"mame":["targeth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/targeth.cpp"]}'::jsonb + ), + ( + 'target-panic', + 'Target Panic', + 'Konami', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["tgtpanic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tgtpanic.cpp"]}'::jsonb + ), + ( + 'tarzan-chuang-tian-guan', + 'Tarzan Chuang Tian Guan', + 'IGS', + 1999, + array['Tarzan Chuang Tian Guan (China, V109C, set 1)'], + array['Arcade'], + '{"mame":["tarzanc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'tarzan-chuang-tian-guan-2-jiaqiang-ban-v306cn', + 'Tarzan Chuang Tian Guan 2 Jiaqiang Ban (V306CN)', + 'IGS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["tct2p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'task-force-harrier', + 'Task Force Harrier', + 'UPL', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["tharrier"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'tatsunoko-vs-capcom-cross-generation-of-heroes', + 'Tatsunoko Vs Capcom : Cross Generation of Heroes', + 'Capcom', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["tvcapcom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/tvcapcom.cpp"]}'::jsonb + ), + ( + 'tattoo-assassins', + 'Tattoo Assassins', + 'Data East Pinball', + 1994, + array['Tattoo Assassins (US prototype, Mar 14 1995)'], + array['Arcade'], + '{"mame":["tattass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco32.cpp"]}'::jsonb + ), + ( + 'taxi-driver', + 'Taxi Driver', + 'Graphic Techno', + 1984, + '{}'::text[], + array['Racing'], + '{"mame":["taxidriv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/taxidriv.cpp"]}'::jsonb + ), + ( + 'tazz-mania', + 'Tazz-Mania', + 'Stern Electronics', + 1982, + array['Tazz-Mania (set 1)'], + array['Arcade'], + '{"mame":["tazmania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'td-831', + 'TD 831', + 'Burroughs', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["td831"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["burroughs/td831.cpp"]}'::jsonb + ), + ( + 'tdv-2324', + 'TDV 2324', + 'Tandberg', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["tdv2324"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tandberg/tdv2324.cpp"]}'::jsonb + ), + ( + 'tdv-2115l', + 'TDV-2115L', + 'Tandberg', + 1976, + '{}'::text[], + array['Arcade'], + '{"mame":["tdv2115l"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tandberg/tdv2115l.cpp"]}'::jsonb + ), + ( + 'team-hat-trick-11-16-84', + 'Team Hat Trick (11/16/84)', + 'Bally/Sente', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["teamht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'tec-1', + 'TEC-1', + 'Talking Electronics magazine', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["tec1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ausnz/tec1.cpp"]}'::jsonb + ), + ( + 'technical-bowling-j-971212-v1-000', + 'Technical Bowling (J 971212 V1.000)', + 'Sega', + 1997, + '{}'::text[], + array['Sports'], + '{"mame":["techbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'technigame-super-4-in-1-sports-pal', + 'Technigame Super 4-in-1 Sports (PAL)', + 'Technigame', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["techni4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'techno-drive', + 'Techno Drive', + 'Namco', + 1998, + array['Techno Drive (Japan, TH1/VER.B)'], + array['Arcade'], + '{"mame":["technodr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'tecmo-bowl', + 'Tecmo Bowl', + 'Tecmo', + 1987, + array['Tecmo Bowl (World, set 1)'], + array['Arcade'], + '{"mame":["tbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tbowl.cpp"]}'::jsonb + ), + ( + 'tecmo-bowl-playchoice-10', + 'Tecmo Bowl (PlayChoice-10)', + 'Tecmo (Nintendo of America license)', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_tbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'tecmo-world-cup-90', + 'Tecmo World Cup ''90', + 'Tecmo', + 1989, + array['Tecmo World Cup ''90 (World set 1)'], + array['Arcade'], + '{"mame":["twcup90"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/wc90.cpp"]}'::jsonb + ), + ( + 'tecmo-world-cup-94', + 'Tecmo World Cup ''94', + 'Tecmo', + 1994, + array['Tecmo World Cup ''94 (set 1)'], + array['Arcade'], + '{"mame":["twcup94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/gstriker.cpp"]}'::jsonb + ), + ( + 'tecmo-world-cup-98-juet-980410-v1-000', + 'Tecmo World Cup ''98 (JUET 980410 V1.000)', + 'Tecmo', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["twcup98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'tecmo-world-cup-mega-play', + 'Tecmo World Cup (Mega Play)', + 'Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["mp_twcup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megaplay.cpp"]}'::jsonb + ), + ( + 'tecmo-world-soccer-96', + 'Tecmo World Soccer ''96', + 'Tecmo', + 1996, + '{}'::text[], + array['Sports'], + '{"mame":["twsoc96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'teddyboy-blues', + 'TeddyBoy Blues', + 'Sega', + 1985, + array['TeddyBoy Blues (315-5115, New Ver.)'], + array['Arcade'], + '{"mame":["teddybb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'tee-d-off', + 'Tee''d Off', + 'Tecmo', + 1987, + array['Tee''d Off (World)'], + array['Arcade'], + '{"mame":["teedoff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tehkanwc.cpp"]}'::jsonb + ), + ( + 'teenage-mutant-ninja-turtles', + 'Teenage Mutant Ninja Turtles', + 'Konami', + 1989, + array['Teenage Mutant Ninja Turtles (World 4 Players, version X)'], + array['Beat em up'], + '{"mame":["tmnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt.cpp"]}'::jsonb + ), + ( + 'teenage-mutant-ninja-turtles-mutant-warriors', + 'Teenage Mutant Ninja Turtles - Mutant Warriors', + 'bootleg', + 1997, + array['Teenage Mutant Ninja Turtles - Mutant Warriors (SNES bootleg)'], + array['Beat em up'], + '{"mame":["tmntmwb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'teenage-mutant-ninja-turtles-playchoice-10', + 'Teenage Mutant Ninja Turtles (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1989, + '{}'::text[], + array['Beat em up'], + '{"mame":["pc_tmnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'teenage-mutant-ninja-turtles-ii-the-arcade-game-playchoice-10', + 'Teenage Mutant Ninja Turtles II: The Arcade Game (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1990, + '{}'::text[], + array['Beat em up'], + '{"mame":["pc_tmnt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'teenage-mutant-ninja-turtles-turtles-in-time', + 'Teenage Mutant Ninja Turtles: Turtles in Time', + 'Konami', + 1991, + array['Teenage Mutant Ninja Turtles: Turtles in Time (4 Players ver UAA)'], + array['Beat em up'], + '{"mame":["tmnt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'teeter-torture', + 'Teeter Torture', + 'Exidy', + 1982, + array['Teeter Torture (prototype)'], + array['Arcade'], + '{"mame":["teetert"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'tehkan-world-cup', + 'Tehkan World Cup', + 'Tehkan', + 1985, + array['Tehkan World Cup (set 1)'], + array['Arcade'], + '{"mame":["tehkanwc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tehkanwc.cpp"]}'::jsonb + ), + ( + 'teki-paki', + 'Teki Paki', + 'Toaplan', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["tekipaki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/tekipaki.cpp"]}'::jsonb + ), + ( + 'tekken', + 'Tekken', + 'Namco', + 1994, + array['Tekken (World, TE2/VER.C)'], + array['Fighting'], + '{"mame":["tekken"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'tekken-2-ver-b', + 'Tekken 2 Ver.B', + 'Namco', + 1996, + array['Tekken 2 Ver.B (World, TES2/VER.D)'], + array['Fighting'], + '{"mame":["tekken2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'tekken-3', + 'Tekken 3', + 'Namco', + 1997, + array['Tekken 3 (World, TET2/VER.E1)'], + array['Fighting'], + '{"mame":["tekken3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'tekken-4', + 'Tekken 4', + 'Namco', + 2001, + array['Tekken 4 (TEF3 Ver. C)'], + array['Fighting'], + '{"mame":["tekken4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'tekken-5-dark-resurrection', + 'Tekken 5 Dark Resurrection', + 'Namco', + 2005, + array['Tekken 5 Dark Resurrection (TED1 Ver. A)'], + array['Fighting'], + '{"mame":["tekken5d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'tekken-5-1', + 'Tekken 5.1', + 'Namco', + 2005, + array['Tekken 5.1 (TE51 Ver. B)'], + array['Fighting'], + '{"mame":["tekken51"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'tekken-battle-scratch', + 'Tekken Battle Scratch', + 'Namco', + 1998, + '{}'::text[], + array['Fighting'], + '{"mame":["tekkenbs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'tekken-card-world', + 'Tekken Card World', + 'Namco', + 1997, + '{}'::text[], + array['Fighting'], + '{"mame":["tekkencw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'tekken-tag-tournament', + 'Tekken Tag Tournament', + 'Namco', + 1999, + array['Tekken Tag Tournament (World, TEG2/VER.C1, set 1)'], + array['Fighting'], + '{"mame":["tektagt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'tel-jan', + 'Tel Jan', + 'Electro Design', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["teljan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'telepachi-fever-lion-v1-0', + 'TelePachi Fever Lion (V1.0)', + 'Sunsoft', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["telpacfl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'televideo-955', + 'TeleVideo 955', + 'TeleVideo Systems', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["tv955"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/tv955.cpp"]}'::jsonb + ), + ( + 'televideo-965', + 'TeleVideo 965', + 'TeleVideo Systems', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["tv965"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/tv965.cpp"]}'::jsonb + ), + ( + 'televideo-990', + 'TeleVideo 990', + 'TeleVideo', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["tv990"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/tv990.cpp"]}'::jsonb + ), + ( + 'televideo-995-65', + 'TeleVideo 995-65', + 'TeleVideo', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["tv995"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/tv990.cpp"]}'::jsonb + ), + ( + 'televideo-model-910', + 'TeleVideo Model 910', + 'TeleVideo Systems', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["tv910"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/tv910.cpp"]}'::jsonb + ), + ( + 'telmac-1800', + 'Telmac 1800', + 'Telercas Oy', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["tmc1800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["telercas/tmc1800.cpp"]}'::jsonb + ), + ( + 'telmac-2000', + 'Telmac 2000', + 'Telercas Oy', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["tmc2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["telercas/tmc1800.cpp"]}'::jsonb + ), + ( + 'telmac-2000e', + 'Telmac 2000E', + 'Telercas Oy', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["tmc2000e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["telercas/tmc2000e.cpp"]}'::jsonb + ), + ( + 'telmac-tmc-600-sarja-ii', + 'Telmac TMC-600 (Sarja II)', + 'Telercas Oy', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["tmc600s2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["telercas/tmc600.cpp"]}'::jsonb + ), + ( + 'tempest', + 'Tempest', + 'Atari', + 1980, + array['Tempest (rev 3, Revised Hardware)'], + array['Classic'], + '{"mame":["tempest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/tempest.cpp"]}'::jsonb + ), + ( + 'ten-spot', + 'Ten Spot', + 'Thomas Automatics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["tenspot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'tenchi-wo-kurau-ii-sekiheki-no-tatakai', + 'Tenchi wo Kurau II: Sekiheki no Tatakai', + 'Capcom', + 1994, + array['Tenchi wo Kurau II: Sekiheki no Tatakai (CPS Changer, Japan 921031)'], + array['Arcade'], + '{"mame":["wofch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'tengai', + 'Tengai', + 'Psikyo', + 1996, + array['Tengai (World)'], + array['Arcade'], + '{"mame":["tengai"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyo.cpp"]}'::jsonb + ), + ( + 'tenkomori-shooting', + 'Tenkomori Shooting', + 'Namco', + 1998, + array['Tenkomori Shooting (World, TKM2/VER.A1)'], + array['Arcade'], + '{"mame":["tenkomor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'tennis-playchoice-10', + 'Tennis (PlayChoice-10)', + 'Nintendo', + 1983, + '{}'::text[], + array['Sports'], + '{"mame":["pc_tenis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'tenth-degree', + 'Tenth Degree', + 'Atari Games', + 1998, + array['Tenth Degree (prototype)'], + array['Arcade'], + '{"mame":["tenthdeg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'teraburst', + 'Teraburst', + 'Konami', + 1998, + array['Teraburst (1998/07/17 ver UEL)'], + array['Arcade'], + '{"mame":["terabrst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/hornet.cpp"]}'::jsonb + ), + ( + 'terebi-denwa-doraemon', + 'Terebi Denwa Doraemon', + 'Banpresto', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["tvdenwad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/banprestoms.cpp"]}'::jsonb + ), + ( + 'terebi-denwa-super-mario-world', + 'Terebi Denwa Super Mario World', + 'Banpresto', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["tvdenwam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/banprestoms.cpp"]}'::jsonb + ), + ( + 'terebi-denwa-thomas-the-tank-engine-and-friends', + 'Terebi Denwa Thomas the Tank Engine and Friends', + 'Banpresto', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["tvdenwat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/banprestoms.cpp"]}'::jsonb + ), + ( + 'terminator-2-judgment-day', + 'Terminator 2 - Judgment Day', + 'Midway', + 1991, + array['Terminator 2 - Judgment Day (rev LA4 08/03/92)'], + array['Light gun'], + '{"mame":["term2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'terra-cresta', + 'Terra Cresta', + 'Nichibutsu', + 1985, + array['Terra Cresta (YM3526 set 1)'], + array['Arcade'], + '{"mame":["terracre"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/terracre.cpp"]}'::jsonb + ), + ( + 'terra-force', + 'Terra Force', + 'Nichibutsu', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["terraf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/armedf.cpp"]}'::jsonb + ), + ( + 'terranean', + 'Terranean', + 'Data East Corporation', + 1981, + array['Terranean (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["cterrani"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'test-console-serial-5', + 'Test Console Serial #5', + 'Westinghouse', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["whousetc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["westinghouse/testconsole.cpp"]}'::jsonb + ), + ( + 'test-tape', + 'Test Tape', + 'Data East Corporation', + 1981, + array['Test Tape (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["ctsttape"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'tetris', + 'Tetris', + 'Atari Games', + 1988, + array['Tetris (set 1)', 'Tetris (Japan, System E)', 'Tetris (D.R. Korea, set 1, encrypted)'], + array['Puzzle'], + '{"mame":["atetris","tetrisse","tetrsark"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atetris.cpp","sega/segae.cpp","taito/arkanoid.cpp"]}'::jsonb + ), + ( + 'tetris-fd1094-317-0093', + 'Tetris (FD1094 317-0093)', + 'Sega', + 1988, + array['Tetris (set 4, Japan, System 16A) (FD1094 317-0093)'], + array['Puzzle'], + '{"mame":["tetris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16a.cpp"]}'::jsonb + ), + ( + 'tetris-mega-tech', + 'Tetris (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Puzzle'], + '{"mame":["mt_tetri"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'tetris-photon-system', + 'Tetris (Photon System)', + '', + null, + '{}'::text[], + array['Puzzle'], + '{"mame":["phtetris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/photon.cpp"]}'::jsonb + ), + ( + 'tetris-bloxeed-isg-selection-master-type-2006', + 'Tetris / Bloxeed (ISG Selection Master Type 2006)', + 'bootleg (ISG)', + 2006, + array['Tetris / Bloxeed (Korean System 16 bootleg) (ISG Selection Master Type 2006)'], + array['Puzzle'], + '{"mame":["tetrbx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b_isgsm.cpp"]}'::jsonb + ), + ( + 'tetris-cherry-master', + 'Tetris + Cherry Master', + '', + null, + array['Tetris + Cherry Master (Corsica, v8.01, unencrypted, set 1)'], + array['Puzzle'], + '{"mame":["cmtetris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'tetris-arcade-in-a-tin', + 'Tetris Arcade in a Tin', + 'Fizz Creations', + 2021, + '{}'::text[], + array['Puzzle'], + '{"mame":["tetrtin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'tetris-giant-tetris-dekaris', + 'Tetris Giant / Tetris Dekaris', + 'Sega', + 2009, + array['Tetris Giant / Tetris Dekaris (Ver.2.000)'], + array['Puzzle'], + '{"mame":["tetgiant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'tetris-kiwamemichi-gdl-0020', + 'Tetris Kiwamemichi (GDL-0020)', + 'Success', + 2004, + array['Tetris Kiwamemichi (Japan) (GDL-0020)'], + array['Puzzle'], + '{"mame":["tetkiwam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'tetris-plus', + 'Tetris Plus', + 'Jaleco / BPS', + 1995, + array['Tetris Plus (ver 1.0)'], + array['Puzzle'], + '{"mame":["tetrisp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'tetris-plus-2', + 'Tetris Plus 2', + 'Jaleco / The Tetris Company', + 1997, + array['Tetris Plus 2 (World, V2.8)'], + array['Puzzle'], + '{"mame":["tetrisp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'tetris-the-absolute-the-grand-master-2', + 'Tetris: The Absolute - The Grand Master 2', + 'Arika', + 2000, + '{}'::text[], + array['Puzzle'], + '{"mame":["tgm2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'texas-holdem', + 'Texas Holdem', + 'IGS', + null, + array['Texas Holdem (V015US)'], + array['Arcade'], + '{"mame":["texashld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'texas-reels', + 'Texas Reels', + 'Cadillac Jack', + 1998, + array['Texas Reels (Ver. 2.00)'], + array['Arcade'], + '{"mame":["texasrls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'tg100', + 'TG100', + 'Yamaha', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["tg100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/tg100.cpp"]}'::jsonb + ), + ( + 'th-strikes-back', + 'TH Strikes Back', + 'Gaelco', + 1994, + array['TH Strikes Back (non North America, version 1.0, checksum 020EB356)'], + array['Arcade'], + '{"mame":["thoop2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/thoop2.cpp"]}'::jsonb + ), + ( + 'thayer-s-quest', + 'Thayer''s Quest', + 'RDI Video Systems', + 1984, + array['Thayer''s Quest (set 1)'], + array['Arcade'], + '{"mame":["thayers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/thayers.cpp"]}'::jsonb + ), + ( + 'the-addams-family-nintendo-super-system', + 'The Addams Family (Nintendo Super System)', + 'Ocean', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["nss_adam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nss.cpp"]}'::jsonb + ), + ( + 'the-adventures-of-robby-roto', + 'The Adventures of Robby Roto!', + 'Dave Nutting Associates / Bally Midway', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["robby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'the-aladdin-v1-2u', + 'The Aladdin (V1.2U)', + 'Dyna', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["aladdin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'the-alphax-z', + 'The Alphax Z', + 'Ed Co., Ltd. (Wood Place Co., Ltd. license)', + 1986, + array['The Alphax Z (Japan)'], + array['Arcade'], + '{"mame":["alphaxz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tsamurai.cpp"]}'::jsonb + ), + ( + 'the-amazing-adventures-of-mr-f-lea', + 'The Amazing Adventures of Mr. F. Lea', + 'Pacific Novelty', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["mrflea"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacific/mrflea.cpp"]}'::jsonb + ), + ( + 'the-astyanax', + 'The Astyanax', + 'Jaleco', + 1989, + array['The Astyanax (EPROM version)'], + array['Arcade'], + '{"mame":["astyanax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/megasys1.cpp"]}'::jsonb + ), + ( + 'the-battle-of-yu-yu-hakusho-shitou-ankoku-bujutsukai', + 'The Battle of Yu Yu Hakusho: Shitou! Ankoku Bujutsukai!', + 'Banpresto', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["yuyuhaku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'the-battle-road', + 'The Battle-Road', + 'Irem', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["battroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'the-berenstain-bears-in-bigpaw-s-cave', + 'The Berenstain Bears in Bigpaw''s Cave', + 'Enter-Tech, Ltd.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["berenstn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tugboat.cpp"]}'::jsonb + ), + ( + 'the-berlin-wall', + 'The Berlin Wall', + 'Kaneko', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["berlwall"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'the-big-apple-2131-13-u5-0', + 'The Big Apple (2131-13, U5-0)', + 'Big Apple Games / Merit', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["bigappg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'the-big-joke', + 'The Big Joke', + 'Grayhound Electronics', + 1987, + array['The Big Joke (Version 0.00)'], + array['Arcade'], + '{"mame":["bigjoke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gei.cpp"]}'::jsonb + ), + ( + 'the-big-pro-wrestling', + 'The Big Pro Wrestling!', + 'Technos Japan', + 1983, + array['The Big Pro Wrestling! (set 1)'], + array['Arcade'], + '{"mame":["bigprowr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/tagteam.cpp"]}'::jsonb + ), + ( + 'the-boat', + 'The Boat', + 'Hit Gun Co, LTD', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["theboat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tvg01.cpp"]}'::jsonb + ), + ( + 'the-bounty', + 'The Bounty', + 'Orca', + 1982, + array['The Bounty (set 1)'], + array['Arcade'], + '{"mame":["bounty"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/zodiack.cpp"]}'::jsonb + ), + ( + 'the-burning-cavern-31-03-87', + 'The Burning Cavern (31/03/87)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_burn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'the-castle', + 'The Castle', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["thecastle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/smd2144c.cpp"]}'::jsonb + ), + ( + 'the-classic-model-6079', + 'The Classic (model 6079)', + 'Fidelity International', + 1986, + '{}'::text[], + array['Classic'], + '{"mame":["classic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/sc6.cpp"]}'::jsonb + ), + ( + 'the-cliffhanger-edward-randy', + 'The Cliffhanger - Edward Randy', + 'Data East Corporation', + 1990, + array['The Cliffhanger - Edward Randy (World ver 3)'], + array['Arcade'], + '{"mame":["edrandy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cninja.cpp"]}'::jsonb + ), + ( + 'the-combatribes', + 'The Combatribes', + 'Technos Japan', + 1990, + array['The Combatribes (US, rev 2, set 1)'], + array['Arcade'], + '{"mame":["ctribe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon3.cpp"]}'::jsonb + ), + ( + 'the-crystal-of-kings', + 'The Crystal of Kings', + 'BrezzaSoft', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["crysking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'the-dealer', + 'The Dealer', + 'Epos Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["dealer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/epos.cpp"]}'::jsonb + ), + ( + 'the-dealer-acl', + 'The Dealer (ACL)', + 'ACL Manufacturing', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["dealracl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/kingpin.cpp"]}'::jsonb + ), + ( + 'the-dealer-visco', + 'The Dealer (Visco)', + 'Visco Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["thedealr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/thedealr.cpp"]}'::jsonb + ), + ( + 'the-deep', + 'The Deep', + 'Woodplace Inc.', + 1987, + array['The Deep (Japan)'], + array['Arcade'], + '{"mame":["thedeep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/thedeep.cpp"]}'::jsonb + ), + ( + 'the-destroyer-from-jail', + 'The Destroyer From Jail', + 'Philko', + 1991, + array['The Destroyer From Jail (Korea)'], + array['Arcade'], + '{"mame":["dfjail"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'the-double-dynamites', + 'The Double Dynamites', + 'Seibu Kaihatsu', + 1989, + array['The Double Dynamites (Japan, 13NOV89)'], + array['Arcade'], + '{"mame":["dbldynj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/dynduke.cpp"]}'::jsonb + ), + ( + 'the-drink', + 'The Drink', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["thedrink"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'the-electric-yo-yo', + 'The Electric Yo-Yo', + 'Taito America Corporation', + 1982, + array['The Electric Yo-Yo (rev 1)'], + array['Arcade'], + '{"mame":["elecyoyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'the-empire-strikes-back', + 'The Empire Strikes Back', + 'Atari Games', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["esb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/starwars.cpp"]}'::jsonb + ), + ( + 'the-end', + 'The End', + 'Konami', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["theend"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'the-euro-game', + 'The Euro Game', + 'Novotech', + null, + array['The Euro Game (set 1)'], + array['Arcade'], + '{"mame":["eurogame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gamtor.cpp"]}'::jsonb + ), + ( + 'the-excellence-model-6080b', + 'The Excellence (model 6080B)', + 'Fidelity International', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["fexcel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/excel.cpp"]}'::jsonb + ), + ( + 'the-fairyland-story', + 'The FairyLand Story', + 'Taito', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["flstory"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/flstory.cpp"]}'::jsonb + ), + ( + 'the-fallen-angels-daraku-tenshi-the-fallen-angels', + 'The Fallen Angels / Daraku Tenshi: The Fallen Angels', + 'Psikyo', + 1998, + array['The Fallen Angels (World) / Daraku Tenshi: The Fallen Angels (Japan)'], + array['Arcade'], + '{"mame":["daraku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["psikyo/psikyosh.cpp"]}'::jsonb + ), + ( + 'the-fast-and-the-furious-v3-06', + 'The Fast And The Furious (v3.06)', + 'Raw Thrills', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["fnf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/rawthrillspc.cpp"]}'::jsonb + ), + ( + 'the-final-round', + 'The Final Round', + 'Konami', + 1988, + array['The Final Round (version M)'], + array['Arcade'], + '{"mame":["fround"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twin16.cpp"]}'::jsonb + ), + ( + 'the-first-funky-fighter', + 'The First Funky Fighter', + 'Nakanihon / East Technology (Taito license)', + 1993, + array['The First Funky Fighter (USA, Canada, Mexico / Japan, set 1)'], + array['Arcade'], + '{"mame":["funkyfig"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/ddenlovr.cpp"]}'::jsonb + ), + ( + 'the-game-paradise-master-of-shooting-game-tengoku-the-game-paradise', + 'The Game Paradise - Master of Shooting! / Game Tengoku - The Game Paradise', + 'Jaleco', + 1995, + array['The Game Paradise - Master of Shooting! / Game Tengoku - The Game Paradise (ver 1.0)'], + array['Arcade'], + '{"mame":["gametngk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'the-gladiator-shen-jian-fu-mo-lu-shen-jian-fengyun-m68k-label-v101-arm-label-v107-rom-06-0', + 'The Gladiator / Shen Jian Fu Mo Lu / Shen Jian Fengyun (M68k label V101) (ARM label V107, ROM 06/06/03 SHEN JIAN V107)', + 'IGS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["theglad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'the-goonies-playchoice-10', + 'The Goonies (PlayChoice-10)', + 'Konami', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_goons"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'the-grid', + 'The Grid', + 'Midway', + 2000, + array['The Grid (version 1.2)'], + array['Arcade'], + '{"mame":["thegrid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midzeus.cpp"]}'::jsonb + ), + ( + 'the-hand', + 'The Hand', + 'T.I.C.', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["thehand"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gametron/gotya.cpp"]}'::jsonb + ), + ( + 'the-hardware-chiptune-project', + 'The Hardware Chiptune Project', + 'Linus Åkesson / kryo', + 2007, + '{}'::text[], + array['Arcade'], + '{"mame":["hwchiptn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/lft_chiptune.cpp"]}'::jsonb + ), + ( + 'the-hermit', + 'The Hermit', + 'Dugamex', + 1995, + array['The Hermit (Ver. 1.14)'], + array['Arcade'], + '{"mame":["hermit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'the-history-of-martial-arts', + 'The History of Martial Arts', + 'bootleg', + null, + array['The History of Martial Arts (set 1)'], + array['Arcade'], + '{"mame":["histryma"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nix/fitfight.cpp"]}'::jsonb + ), + ( + 'the-house-of-the-dead', + 'The House of the Dead', + 'Sega', + 1997, + array['The House of the Dead (Revision A)'], + array['Light gun'], + '{"mame":["hotd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'the-house-of-the-dead-2', + 'The House of the Dead 2', + 'Sega', + 1998, + array['The House of the Dead 2 (USA)'], + array['Light gun'], + '{"mame":["hotd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'the-house-of-the-dead-4-export', + 'The House of the Dead 4 (Export)', + 'Sega', + 2005, + array['The House of the Dead 4 (Export) (Rev B)'], + array['Light gun'], + '{"mame":["hotd4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'the-house-of-the-dead-ex', + 'The House of the Dead EX', + 'Sega', + 2008, + array['The House of the Dead EX (Japan)'], + array['Light gun'], + '{"mame":["hotdex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'the-house-of-the-dead-iii-gdx-0001', + 'The House of the Dead III (GDX-0001)', + 'Sega / Wow Entertainment', + 2002, + '{}'::text[], + array['Light gun'], + '{"mame":["hotd3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'the-invaders', + 'The Invaders', + 'Zaccaria / Zelco', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tinv2650"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["zaccaria/zac1b1120.cpp"]}'::jsonb + ), + ( + 'the-irritating-maze-ultra-denryu-iraira-bou', + 'The Irritating Maze / Ultra Denryu Iraira Bou', + 'SNK / Saurus', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["irrmaze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-karate-tournament', + 'The Karate Tournament', + 'Mitchell', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["karatour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'the-keisatsukan-shinjuku-24-ji', + 'The Keisatsukan: Shinjuku 24-ji', + 'Konami', + 2000, + array['The Keisatsukan: Shinjuku 24-ji (ver AAE)'], + array['Arcade'], + '{"mame":["p911"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-the-wizard-master-gdt-0005g', + 'The Key Of Avalon - The Wizard Master (GDT-0005G)', + 'Sega / Hitmaker', + 2003, + array['The Key Of Avalon - The Wizard Master (server, Rev G) (GDT-0005G)'], + array['Arcade'], + '{"mame":["avalons"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-the-wizard-master-gdt-0006g', + 'The Key Of Avalon - The Wizard Master (GDT-0006G)', + 'Sega / Hitmaker', + 2003, + array['The Key Of Avalon - The Wizard Master (client, Rev G) (GDT-0006G)'], + array['Arcade'], + '{"mame":["avalonc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-1-3-chaotic-sabbat-gdt-0009c', + 'The Key Of Avalon 1.3 - Chaotic Sabbat (GDT-0009C)', + 'Sega / Hitmaker', + 2004, + array['The Key Of Avalon 1.3 - Chaotic Sabbat (server, Rev C) (GDT-0009C)'], + array['Arcade'], + '{"mame":["avalns13"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-1-3-chaotic-sabbat-gdt-0010c', + 'The Key Of Avalon 1.3 - Chaotic Sabbat (GDT-0010C)', + 'Sega / Hitmaker', + 2004, + array['The Key Of Avalon 1.3 - Chaotic Sabbat (client, Rev C) (GDT-0010C)'], + array['Arcade'], + '{"mame":["avalnc13"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-2-0-eutaxy-and-commandment-gdt-0017b', + 'The Key Of Avalon 2.0 - Eutaxy and Commandment (GDT-0017B)', + 'Sega / Hitmaker', + 2004, + array['The Key Of Avalon 2.0 - Eutaxy and Commandment (client, Rev B) (GDT-0017B)'], + array['Arcade'], + '{"mame":["avalon20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-2-5-war-of-the-key-gdt-0018b', + 'The Key Of Avalon 2.5 - War of the Key (GDT-0018B)', + 'Sega / Hitmaker', + 2005, + array['The Key Of Avalon 2.5 - War of the Key (server, Rev B) (GDT-0018B)'], + array['Arcade'], + '{"mame":["avalns25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-key-of-avalon-2-5-war-of-the-key-gdt-0019b', + 'The Key Of Avalon 2.5 - War of the Key (GDT-0019B)', + 'Sega / Hitmaker', + 2005, + array['The Key Of Avalon 2.5 - War of the Key (client, Rev B) (GDT-0019B)'], + array['Arcade'], + '{"mame":["avalnc25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'the-killing-blade-ao-jian-kuang-dao', + 'The Killing Blade / Ao Jian Kuang Dao', + 'IGS', + 1998, + array['The Killing Blade / Ao Jian Kuang Dao (ver. 109, Chinese Board)'], + array['Arcade'], + '{"mame":["killbld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'the-killing-blade-plus-ao-jian-kuang-dao-jiaqiang-ban', + 'The Killing Blade Plus / Ao Jian Kuang Dao Jiaqiang Ban', + 'IGS', + 2005, + array['The Killing Blade Plus / Ao Jian Kuang Dao Jiaqiang Ban (China, ver. 300)'], + array['Arcade'], + '{"mame":["killbldp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'the-king-of-dragons', + 'The King of Dragons', + 'Capcom', + 1991, + array['The King of Dragons (World 910805)'], + array['Arcade'], + '{"mame":["kod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-fuchou-zhi-lu-road-to-revenge-the-king-of-fighters-2002-unlimited-mat', + 'The King of Fighters - Fuchou Zhi Lu/Road to Revenge / The King of Fighters 2002 Unlimited Match', + 'SNK Playmore / New Channel', + 2009, + array['The King of Fighters - Fuchou Zhi Lu/Road to Revenge / The King of Fighters 2002 Unlimited Match (China)'], + array['Fighting'], + '{"mame":["kof2002um"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/y2.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-94-ngm-055-ngh-055', + 'The King of Fighters ''94 (NGM-055 ~ NGH-055)', + 'SNK', + 1994, + '{}'::text[], + array['Fighting'], + '{"mame":["kof94"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-95-ngm-084', + 'The King of Fighters ''95 (NGM-084)', + 'SNK', + 1995, + '{}'::text[], + array['Fighting'], + '{"mame":["kof95"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-96-ngm-214', + 'The King of Fighters ''96 (NGM-214)', + 'SNK', + 1996, + '{}'::text[], + array['Fighting'], + '{"mame":["kof96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-97-ngm-2320', + 'The King of Fighters ''97 (NGM-2320)', + 'SNK', + 1997, + '{}'::text[], + array['Fighting'], + '{"mame":["kof97"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-98-the-slugfest-king-of-fighters-98-dream-match-never-ends-ngm-2420', + 'The King of Fighters ''98 - The Slugfest / King of Fighters ''98 - Dream Match Never Ends (NGM-2420)', + 'SNK', + 1998, + '{}'::text[], + array['Fighting'], + '{"mame":["kof98"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-98-ultimate-match-v1-00', + 'The King of Fighters ''98: Ultimate Match (v1.00)', + 'SNK', + 2008, + '{}'::text[], + array['Fighting'], + '{"mame":["kof98um"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-98-ultimate-match-hero', + 'The King of Fighters ''98: Ultimate Match HERO', + 'IGS / SNK Playmore / New Channel', + 2009, + array['The King of Fighters ''98: Ultimate Match HERO (China, V100, 09-08-23)'], + array['Fighting'], + '{"mame":["kof98umh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm2.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-99-millennium-battle-ngm-2510', + 'The King of Fighters ''99 - Millennium Battle (NGM-2510)', + 'SNK', + 1999, + '{}'::text[], + array['Fighting'], + '{"mame":["kof99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-2000-ngm-2570-ngh-2570', + 'The King of Fighters 2000 (NGM-2570 ~ NGH-2570)', + 'SNK', + 2000, + '{}'::text[], + array['Fighting'], + '{"mame":["kof2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-2001-ngm-262', + 'The King of Fighters 2001 (NGM-262?)', + 'Eolith / SNK', + 2001, + '{}'::text[], + array['Fighting'], + '{"mame":["kof2001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-2002-ngm-2650-ngh-2650', + 'The King of Fighters 2002 (NGM-2650 ~ NGH-2650)', + 'Eolith / Playmore', + 2002, + '{}'::text[], + array['Fighting'], + '{"mame":["kof2002"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-2003', + 'The King of Fighters 2003', + 'SNK Playmore', + 2003, + array['The King of Fighters 2003 (Japan, JAMMA PCB)'], + array['Fighting'], + '{"mame":["kf2k3pcb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neopcb.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-2003-ngm-2710-export', + 'The King of Fighters 2003 (NGM-2710, Export)', + 'SNK Playmore', + 2003, + '{}'::text[], + array['Fighting'], + '{"mame":["kof2003"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-neowave', + 'The King of Fighters Neowave', + 'Sammy / SNK Playmore', + 2004, + '{}'::text[], + array['Fighting'], + '{"mame":["kofnw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-xi', + 'The King of Fighters XI', + 'Sammy / SNK Playmore', + 2005, + '{}'::text[], + array['Fighting'], + '{"mame":["kofxi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'the-king-of-fighters-xii-v1-00', + 'The King of Fighters XII (v1.00)', + 'SNK Playmore', + 2009, + '{}'::text[], + array['Fighting'], + '{"mame":["kofxii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'the-king-of-route-66', + 'The King of Route 66', + 'Sega', + 2002, + array['The King of Route 66 (Rev A)'], + array['Arcade'], + '{"mame":["kingrt66"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'the-koukou-yakyuu', + 'The Koukou Yakyuu', + 'Alpha Denshi Co.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["kouyakyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/equites.cpp"]}'::jsonb + ), + ( + 'the-last-apostle-puppetshow', + 'The Last Apostle Puppetshow', + 'Home Data', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["lastapos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/homedata.cpp"]}'::jsonb + ), + ( + 'the-last-blade-bakumatsu-roman-gekka-no-kenshi-ngm-2340', + 'The Last Blade / Bakumatsu Roman - Gekka no Kenshi (NGM-2340)', + 'SNK', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["lastblad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-last-blade-2-bakumatsu-roman-dai-ni-maku-gekka-no-kenshi-ngm-2430-ngh-2430', + 'The Last Blade 2 / Bakumatsu Roman - Dai Ni Maku Gekka no Kenshi (NGM-2430 ~ NGH-2430)', + 'SNK', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["lastbld2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-last-bounty-hunter-v1-01', + 'The Last Bounty Hunter (v1.01)', + 'American Laser Games', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["lastbh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'the-last-day', + 'The Last Day', + 'Dooyong', + 1990, + array['The Last Day (set 1)'], + array['Arcade'], + '{"mame":["lastday"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/dooyong.cpp"]}'::jsonb + ), + ( + 'the-last-starfighter', + 'The Last Starfighter', + 'Atari Games', + 1984, + array['The Last Starfighter (prototype)'], + array['Arcade'], + '{"mame":["laststar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarisy4.cpp"]}'::jsonb + ), + ( + 'the-legend-of-kage', + 'The Legend of Kage', + 'Taito Corporation', + 1984, + array['The Legend of Kage (rev 2)'], + array['Arcade'], + '{"mame":["lkage"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/lkage.cpp"]}'::jsonb + ), + ( + 'the-legend-of-silkroad', + 'The Legend of Silkroad', + 'Unico', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["silkroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/silkroad.cpp"]}'::jsonb + ), + ( + 'the-lost-castle-in-darkmist', + 'The Lost Castle In Darkmist', + 'Seibu Kaihatsu (Taito license)', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["darkmist"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/darkmist.cpp"]}'::jsonb + ), + ( + 'the-lost-world-jurassic-park', + 'The Lost World: Jurassic Park', + 'Sega', + 1997, + array['The Lost World: Jurassic Park (Revision A)'], + array['Light gun'], + '{"mame":["lostwsga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'the-mah-jong', + 'The Mah-jong', + 'Visco', + 1987, + array['The Mah-jong (Japan, set 1)'], + array['Arcade'], + '{"mame":["themj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/rmhaihai.cpp"]}'::jsonb + ), + ( + 'the-main-event', + 'The Main Event', + 'Konami', + 1988, + array['The Main Event (4 Players ver. Y)'], + array['Arcade'], + '{"mame":["mainevt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mainevt.cpp"]}'::jsonb + ), + ( + 'the-masters-of-kin', + 'The Masters of Kin', + 'Du Tech', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["mastkin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/trackfld.cpp"]}'::jsonb + ), + ( + 'the-maze-of-the-kings-gds-0022', + 'The Maze of the Kings (GDS-0022)', + 'Sega', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["mok"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'the-monster-show', + 'The Monster Show', + 'Konami', + null, + array['The Monster Show (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["monshow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'the-nanpa', + 'The Nanpa', + 'Nichibutsu/Love Factory/eic', + 1999, + array['The Nanpa (Japan)'], + array['Arcade'], + '{"mame":["thenanpa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'the-new-york-times-sudoku', + 'The New York Times Sudoku', + 'Excalibur Electronics / Nice Code', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["nytsudo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'the-newzealand-story-p0-043a-pcb', + 'The NewZealand Story (P0-043A PCB)', + 'Taito Corporation Japan', + 1988, + array['The NewZealand Story (World, new version) (P0-043A PCB)'], + array['Arcade'], + '{"mame":["tnzs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tnzs.cpp"]}'::jsonb + ), + ( + 'the-next-space', + 'The Next Space', + 'SNK', + 1989, + array['The Next Space (set 1)'], + array['Arcade'], + '{"mame":["tnextspc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k_i.cpp"]}'::jsonb + ), + ( + 'the-ninja-kids', + 'The Ninja Kids', + 'Taito Corporation Japan', + 1990, + array['The Ninja Kids (World)'], + array['Arcade'], + '{"mame":["ninjak"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'the-ninja-warriors', + 'The Ninja Warriors', + 'Taito Corporation Japan', + 1987, + array['The Ninja Warriors (World, later version)'], + array['Arcade'], + '{"mame":["ninjaw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/ninjaw.cpp"]}'::jsonb + ), + ( + 'the-ocean-hunter', + 'The Ocean Hunter', + 'Sega', + 1998, + array['The Ocean Hunter (Revision A)'], + array['Arcade'], + '{"mame":["oceanhun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'the-oregon-trail', + 'The Oregon Trail', + 'Basic Fun', + 2017, + '{}'::text[], + array['Arcade'], + '{"mame":["otrail"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'the-outfoxies', + 'The Outfoxies', + 'Namco', + 1994, + array['The Outfoxies (World, OU2)'], + array['Arcade'], + '{"mame":["outfxies"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namconb1.cpp"]}'::jsonb + ), + ( + 'the-par-excellence', + 'The Par Excellence', + 'Fidelity International', + 1986, + array['The Par Excellence (set 1)'], + array['Arcade'], + '{"mame":["fexcelp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/excel.cpp"]}'::jsonb + ), + ( + 'the-percussor', + 'The Percussor', + 'Orca', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["percuss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/zodiack.cpp"]}'::jsonb + ), + ( + 'the-pirates-of-dark-water', + 'The Pirates of Dark Water', + 'bootleg (Conny)', + 1996, + array['The Pirates of Dark Water (SNES bootleg)'], + array['Arcade'], + '{"mame":["piratdwb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'the-pit', + 'The Pit', + 'Zilec Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["thepit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'the-pit-boss-2214-07-u5-0a', + 'The Pit Boss (2214-07, U5-0A)', + 'Merit', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["pitboss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'the-punisher', + 'The Punisher', + 'Capcom', + 1993, + array['The Punisher (World 930422)'], + array['Arcade'], + '{"mame":["punisher"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'the-quest', + 'The Quest', + 'Konami', + 1997, + array['The Quest (NSW, Australia)'], + array['Arcade'], + '{"mame":["thequest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'the-real-broadway-9131-20-00-r0c', + 'The Real Broadway (9131-20-00 R0C)', + 'Merit', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["realbrod"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/meritm.cpp"]}'::jsonb + ), + ( + 'the-real-ghostbusters', + 'The Real Ghostbusters', + 'Data East USA', + 1987, + array['The Real Ghostbusters (US 2 Players, revision 2)'], + array['Arcade'], + '{"mame":["ghostb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dec8.cpp"]}'::jsonb + ), + ( + 'the-return-of-ishtar', + 'The Return of Ishtar', + 'Namco', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["roishtar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos86.cpp"]}'::jsonb + ), + ( + 'the-return-of-lady-frog', + 'The Return of Lady Frog', + 'Microhard', + 1993, + array['The Return of Lady Frog (set 1)'], + array['Arcade'], + '{"mame":["roldfrog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/splash.cpp"]}'::jsonb + ), + ( + 'the-revenge-of-shinobi-mega-tech', + 'The Revenge of Shinobi (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_revsh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'the-roulette-visco', + 'The Roulette (Visco)', + 'Visco', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["setaroul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'the-round-up', + 'The Round Up', + 'Merit', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["mroundup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["merit/merit.cpp"]}'::jsonb + ), + ( + 'the-rumble-fish', + 'The Rumble Fish', + 'Sammy / Dimps', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["rumblef"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'the-rumble-fish-2', + 'The Rumble Fish 2', + 'Sammy / Dimps', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["rumblef2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'the-simpsons', + 'The Simpsons', + 'Konami', + 1991, + array['The Simpsons (4 Players World, set 1)'], + array['Beat em up'], + '{"mame":["simpsons"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/simpsons.cpp"]}'::jsonb + ), + ( + 'the-simpsons-bowling-gq829-uaa', + 'The Simpsons Bowling (GQ829 UAA)', + 'Konami', + 2000, + '{}'::text[], + array['Sports', 'Beat em up'], + '{"mame":["simpbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'the-speed-rumbler', + 'The Speed Rumbler', + 'Capcom', + 1986, + array['The Speed Rumbler (set 1)'], + array['Arcade'], + '{"mame":["srumbler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/srumbler.cpp"]}'::jsonb + ), + ( + 'the-super-spy-ngm-011-ngh-011', + 'The Super Spy (NGM-011 ~ NGH-011)', + 'SNK', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["superspy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-three-stooges-in-brides-is-brides', + 'The Three Stooges In Brides Is Brides', + 'Mylstar', + 1984, + array['The Three Stooges In Brides Is Brides (set 1)'], + array['Arcade'], + '{"mame":["3stooges"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'the-tin-star', + 'The Tin Star', + 'Taito Corporation', + 1983, + array['The Tin Star (A10, 4 PCB version)'], + array['Arcade'], + '{"mame":["tinstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'the-tower', + 'The Tower', + 'Data East Corporation', + 1981, + array['The Tower (DECO Cassette) (Europe)'], + array['Arcade'], + '{"mame":["ctower"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'the-tower-of-druaga', + 'The Tower of Druaga', + 'Namco', + 1984, + array['The Tower of Druaga (New Ver.)'], + array['Arcade'], + '{"mame":["todruaga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/mappy.cpp"]}'::jsonb + ), + ( + 'the-typing-of-the-dead', + 'The Typing of the Dead', + 'Sega', + 2000, + array['The Typing of the Dead (Rev A)'], + array['Arcade'], + '{"mame":["totd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'the-ultimate-11-the-snk-football-championship-tokuten-ou-honoo-no-libero', + 'The Ultimate 11 - The SNK Football Championship / Tokuten Ou - Honoo no Libero', + 'SNK', + 1996, + '{}'::text[], + array['Sports'], + '{"mame":["ssideki4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'the-x-files', + 'The X-Files', + 'dgPIX Entertainment Inc.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["xfiles"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/dgpix.cpp"]}'::jsonb + ), + ( + 'the-yakyuken', + 'The Yakyuken', + 'bootleg', + 1982, + array['The Yakyuken (bootleg)'], + array['Arcade'], + '{"mame":["yakyuken"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["omori/yakyuken.cpp"]}'::jsonb + ), + ( + 'thief', + 'Thief', + 'Pacific Novelty', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["thief"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacific/thief.cpp"]}'::jsonb + ), + ( + 'thinkpad-600', + 'ThinkPad 600', + 'IBM', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["tpad600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/thinkpad600.cpp"]}'::jsonb + ), + ( + 'thinkpad-600e', + 'ThinkPad 600E', + 'IBM', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["tpad600e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/thinkpad600.cpp"]}'::jsonb + ), + ( + 'thinkpad-600x', + 'ThinkPad 600X', + 'IBM', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["tpad600x"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/thinkpad600.cpp"]}'::jsonb + ), + ( + 'thinkpad-760xd', + 'ThinkPad 760XD', + 'IBM', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["tpad760xd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/thinkpad600.cpp"]}'::jsonb + ), + ( + 'thinkpad-770z', + 'ThinkPad 770Z', + 'IBM', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["tpad770z"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/thinkpad600.cpp"]}'::jsonb + ), + ( + 'thinkpad-850', + 'ThinkPad 850', + 'IBM', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["tpad850"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ibm/thinkpad8xx.cpp"]}'::jsonb + ), + ( + 'thrash-rally-alm-003-alh-003', + 'Thrash Rally (ALM-003 ~ ALH-003)', + 'Alpha Denshi Co.', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["trally"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'three-wishes-red-atronic', + 'Three Wishes Red (Atronic)', + 'Atronic', + 2002, + array['Three Wishes Red (Russia) (Atronic)'], + array['Arcade'], + '{"mame":["3wishrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'three-wonders', + 'Three Wonders', + 'Capcom', + 1991, + array['Three Wonders (World 910520)'], + array['Arcade'], + '{"mame":["3wonders"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'thrill-drive-ude', + 'Thrill Drive (UDE)', + 'Konami', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["thrilld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nwk-tr.cpp"]}'::jsonb + ), + ( + 'thrill-drive-2', + 'Thrill Drive 2', + 'Konami', + 2001, + array['Thrill Drive 2 (ver EBB)'], + array['Arcade'], + '{"mame":["thrild2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'thrill-drive-3-d44-j-a-a-20050316', + 'Thrill Drive 3 (D44:J:A:A:20050316)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["thrild3j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'thunder-and-lightning', + 'Thunder & Lightning', + 'Seta', + 1990, + array['Thunder & Lightning (set 1)'], + array['Arcade'], + '{"mame":["thunderl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'thunder-blade-upright-fd1094-317-0056', + 'Thunder Blade (upright) (FD1094 317-0056)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["thndrbld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaxbd.cpp"]}'::jsonb + ), + ( + 'thunder-ceptor', + 'Thunder Ceptor', + 'Namco', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["tceptor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/tceptor.cpp"]}'::jsonb + ), + ( + 'thunder-cross', + 'Thunder Cross', + 'Konami', + 1988, + array['Thunder Cross (set 1)'], + array['Arcade'], + '{"mame":["thunderx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/thunderx.cpp"]}'::jsonb + ), + ( + 'thunder-cross-ii', + 'Thunder Cross II', + 'Konami', + 1991, + array['Thunder Cross II (World)'], + array['Arcade'], + '{"mame":["thndrx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tmnt2.cpp"]}'::jsonb + ), + ( + 'thunder-dragon-8th-jan-1992-unprotected', + 'Thunder Dragon (8th Jan. 1992, unprotected)', + 'NMK (Tecmo license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["tdragon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'thunder-dragon-2-9th-nov-1993', + 'Thunder Dragon 2 (9th Nov. 1993)', + 'NMK', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["tdragon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'thunder-force-ac', + 'Thunder Force AC', + 'Technosoft / Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["tfrceac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'thunder-force-ii-md-mega-tech', + 'Thunder Force II MD (Mega-Tech)', + 'Techno Soft / Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_tfor2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'thunder-fox', + 'Thunder Fox', + 'Taito Corporation Japan', + 1990, + array['Thunder Fox (World, rev 1)'], + array['Arcade'], + '{"mame":["thundfox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'thunder-heroes', + 'Thunder Heroes', + 'Primetek Investments', + 2001, + array['Thunder Heroes (set 1)'], + array['Arcade'], + '{"mame":["theroes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'thunder-hoop', + 'Thunder Hoop', + 'Gaelco', + 1992, + array['Thunder Hoop (ver. 1, checksum 02a09f7d)'], + array['Arcade'], + '{"mame":["thoop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp"]}'::jsonb + ), + ( + 'thunder-strike', + 'Thunder Strike', + 'East Coast Coin Company', + 1991, + array['Thunder Strike (set 1)'], + array['Arcade'], + '{"mame":["tstrike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'thunder-zone', + 'Thunder Zone', + 'Data East Corporation', + 1991, + array['Thunder Zone (World, Rev 1)'], + array['Arcade'], + '{"mame":["thndzone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/dassault.cpp"]}'::jsonb + ), + ( + 'thundercade-twin-formation', + 'Thundercade / Twin Formation', + 'Seta (Taito license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["tndrcade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'thunderjaws', + 'ThunderJaws', + 'Atari Games', + 1990, + array['ThunderJaws (rev 3)'], + array['Arcade'], + '{"mame":["thunderj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/thunderj.cpp"]}'::jsonb + ), + ( + 'tian-jiang-shen-bing', + 'Tian Jiang Shen Bing', + 'IGS', + 1997, + array['Tian Jiang Shen Bing (China, V137C)'], + array['Arcade'], + '{"mame":["tjsb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs017.cpp"]}'::jsonb + ), + ( + 'tiansheng-haoshou-v201cn', + 'Tiansheng Haoshou (V201CN)', + 'IGS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["tshs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'tic-tac-toe', + 'Tic Tac Toe', + 'bootleg (Sundance)', + null, + array['Tic Tac Toe (Sundance bootleg of New Lucky 8 Lines)'], + array['Arcade'], + '{"mame":["ttactoe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'tickee-tickats', + 'Tickee Tickats', + 'Raster Elite', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["tickee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tickee.cpp"]}'::jsonb + ), + ( + 'tieban-shensuan', + 'Tieban Shensuan', + 'GMS', + 1998, + array['Tieban Shensuan (Mainland version 2.0)'], + array['Arcade'], + '{"mame":["tbss"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'tierras-salvajes-100hz-display', + 'Tierras Salvajes (100Hz display)', + 'Picmatic', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["tierras100hz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'tim-011', + 'TIM-011', + 'Mihajlo Pupin Institute', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["tim011"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/tim011.cpp"]}'::jsonb + ), + ( + 'tim-100', + 'TIM-100', + 'Mihajlo Pupin Institute', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["tim100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sfrj/tim100.cpp"]}'::jsonb + ), + ( + 'timber', + 'Timber', + 'Bally Midway', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["timber"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'time-attacker', + 'Time Attacker', + 'Shonan', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tattack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tattack.cpp"]}'::jsonb + ), + ( + 'time-crisis', + 'Time Crisis', + 'Namco', + 1996, + array['Time Crisis (World, TS2 Ver.B)'], + array['Light gun'], + '{"mame":["timecris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'time-crisis-3-tst1', + 'Time Crisis 3 (TST1)', + 'Namco', + 2003, + '{}'::text[], + array['Light gun'], + '{"mame":["timecrs3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'time-crisis-4', + 'Time Crisis 4', + 'Namco', + 2006, + array['Time Crisis 4 (World, TSF1002-NA-A)'], + array['Light gun'], + '{"mame":["timecrs4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'time-crisis-ii', + 'Time Crisis II', + 'Namco', + 1997, + array['Time Crisis II (US, TSS3 Ver. B)'], + array['Light gun'], + '{"mame":["timecrs2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos23.cpp"]}'::jsonb + ), + ( + 'time-fighter', + 'Time Fighter', + 'Taito do Brasil', + null, + array['Time Fighter (Time Pilot conversion on Galaxian hardware)'], + array['Arcade'], + '{"mame":["timefgtr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'time-killers-v1-32', + 'Time Killers (v1.32)', + 'Strata / Incredible Technologies', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["timekill"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'time-limit', + 'Time Limit', + 'Chuo Co. Ltd', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["timelimt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/timelimt.cpp"]}'::jsonb + ), + ( + 'time-pilot', + 'Time Pilot', + 'Konami', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["timeplt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/timeplt.cpp"]}'::jsonb + ), + ( + 'time-pilot-84', + 'Time Pilot ''84', + 'Konami', + 1984, + array['Time Pilot ''84 (set 1)'], + array['Arcade'], + '{"mame":["tp84"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tp84.cpp"]}'::jsonb + ), + ( + 'time-scanner', + 'Time Scanner', + 'Sega', + 1987, + array['Time Scanner (set 2, System 16B)'], + array['Arcade'], + '{"mame":["timescan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'time-scanner-ts-2-0-magnet-system', + 'Time Scanner (TS 2.0, Magnet System)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_time"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'time-soldiers', + 'Time Soldiers', + 'Alpha Denshi Co. (SNK/Romstar license)', + 1987, + array['Time Soldiers (US Rev 3)'], + array['Arcade'], + '{"mame":["timesold"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["alpha/alpha68k.cpp"]}'::jsonb + ), + ( + 'time-traveler', + 'Time Traveler', + 'Virtual Image Productions (Sega license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["timetrv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/timetrv.cpp"]}'::jsonb + ), + ( + 'time-tunnel', + 'Time Tunnel', + 'Taito Corporation', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["timetunl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'tinker-bell', + 'Tinker Bell', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["tinkerbl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasm1.cpp"]}'::jsonb + ), + ( + 'tinkle-pit', + 'Tinkle Pit', + 'Namco', + 1993, + array['Tinkle Pit (Japan)'], + array['Arcade'], + '{"mame":["tinklpit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'tiny-toon-adventures-playchoice-10', + 'Tiny Toon Adventures (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1991, + array['Tiny Toon Adventures (prototype) (PlayChoice-10)'], + array['Arcade'], + '{"mame":["pc_ttoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'title-fight', + 'Title Fight', + 'Sega', + 1992, + array['Title Fight (World)'], + array['Arcade'], + '{"mame":["titlef"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas32.cpp"]}'::jsonb + ), + ( + 'to-heart-house', + 'To Heart House', + 'Limenko', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["hrthouse"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/limenko.cpp"]}'::jsonb + ), + ( + 'tobe-polystars', + 'Tobe! Polystars', + 'Konami', + 1997, + array['Tobe! Polystars (ver JAA)'], + array['Arcade'], + '{"mame":["polystar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamim2.cpp"]}'::jsonb + ), + ( + 'tobikose-jumpman', + 'Tobikose! Jumpman', + 'Namco', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["tjumpman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atlus/cave.cpp"]}'::jsonb + ), + ( + 'toffy-encrypted', + 'Toffy (encrypted)', + 'Midas', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["toffy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon.cpp"]}'::jsonb + ), + ( + 'toggle', + 'Toggle', + 'Bally/Sente', + 1985, + array['Toggle (prototype)'], + array['Arcade'], + '{"mame":["toggle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'toki', + 'Toki', + 'TAD Corporation', + 1989, + array['Toki (World, set 1)'], + array['Arcade'], + '{"mame":["toki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/toki.cpp"]}'::jsonb + ), + ( + 'toki-no-senshi-chrono-soldier-mc-8123-317-0040', + 'Toki no Senshi - Chrono Soldier (MC-8123, 317-0040)', + 'Sega', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["tokisens"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'tokimeki-memorial-oshiete-your-heart-gq673-jaa', + 'Tokimeki Memorial Oshiete Your Heart (GQ673 JAA)', + 'Konami', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["tmosh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'tokimeki-memorial-oshiete-your-heart-seal-version-ge755-jaa', + 'Tokimeki Memorial Oshiete Your Heart Seal Version (GE755 JAA)', + 'Konami', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["tmoshs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'tokimeki-memorial-oshiete-your-heart-seal-version-plus-ge756-jab', + 'Tokimeki Memorial Oshiete Your Heart Seal Version Plus (GE756 JAB)', + 'Konami', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["tmoshsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'tokimeki-memorial-taisen-puzzle-dama', + 'Tokimeki Memorial Taisen Puzzle-dama', + 'Konami', + 1995, + array['Tokimeki Memorial Taisen Puzzle-dama (ver JAB)'], + array['Puzzle'], + '{"mame":["tkmmpzdm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'tokio-scramble-formation-newer', + 'Tokio / Scramble Formation (newer)', + 'Taito Corporation', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["tokio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/bublbobl.cpp"]}'::jsonb + ), + ( + 'tokoro-san-no-mahmahjan', + 'Tokoro San no MahMahjan', + 'Sega', + 1992, + array['Tokoro San no MahMahjan (Japan, ROM Based)'], + array['Arcade'], + '{"mame":["mahmajn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'tokoro-san-no-mahmahjan-2', + 'Tokoro San no MahMahjan 2', + 'Sega', + 1994, + array['Tokoro San no MahMahjan 2 (Japan, ROM Based)'], + array['Arcade'], + '{"mame":["mahmajn2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas24.cpp"]}'::jsonb + ), + ( + 'tokyo-bus-guide', + 'Tokyo Bus Guide', + 'Fortyfive', + 1999, + array['Tokyo Bus Guide (Japan, Rev A)'], + array['Arcade'], + '{"mame":["tokyobus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'tokyo-cop', + 'Tokyo Cop', + 'Gaelco', + 2003, + array['Tokyo Cop (US, dedicated version)'], + array['Arcade'], + '{"mame":["tokyocop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelcopc.cpp"]}'::jsonb + ), + ( + 'tokyo-gal-zukan', + 'Tokyo Gal Zukan', + 'Nichibutsu', + 1989, + array['Tokyo Gal Zukan (Japan)'], + array['Arcade'], + '{"mame":["tokyogal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8991.cpp"]}'::jsonb + ), + ( + 'tokyo-wars', + 'Tokyo Wars', + 'Namco', + 1996, + array['Tokyo Wars (World, TW2 Ver.A)'], + array['Arcade'], + '{"mame":["tokyowar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos22.cpp"]}'::jsonb + ), + ( + 'tom-tom-magic', + 'Tom Tom Magic', + 'Hobbitron T.K.Trading Co. Ltd.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["tomagic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'tomahawk-777', + 'Tomahawk 777', + 'Data East', + 1980, + array['Tomahawk 777 (rev 5)'], + array['Arcade'], + '{"mame":["tomahawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/astrof.cpp"]}'::jsonb + ), + ( + 'tomcat', + 'TomCat', + 'Atari', + 1985, + array['TomCat (prototype)'], + array['Arcade'], + '{"mame":["tomcat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/tomcat.cpp"]}'::jsonb + ), + ( + 'tommy-lasorda-baseball-mega-tech', + 'Tommy Lasorda Baseball (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Sports'], + '{"mame":["mt_tlbba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'tomy-tutor', + 'Tomy Tutor', + 'Tomy', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tutor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tomy/tutor.cpp"]}'::jsonb + ), + ( + 'tonton', + 'Tonton', + 'Dynax', + 1987, + array['Tonton (Japan, set 1)'], + array['Arcade'], + '{"mame":["tontonb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'toobin', + 'Toobin''', + 'Atari Games', + 1988, + array['Toobin'' (rev 3)'], + array['Arcade'], + '{"mame":["toobin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/toobin.cpp"]}'::jsonb + ), + ( + 'top-banana', + 'Top Banana', + 'WMS', + 1999, + array['Top Banana (Russian)'], + array['Arcade'], + '{"mame":["wmstopb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'top-blade-v', + 'Top Blade V', + 'SonoKong / Expotato', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["topbladv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'top-draw', + 'Top Draw', + 'SMS Manufacturing Corp.', + null, + array['Top Draw (encrypted, set 1)'], + array['Arcade'], + '{"mame":["topdraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/norautp.cpp"]}'::jsonb + ), + ( + 'top-driving', + 'Top Driving', + 'Proyesel', + 1995, + array['Top Driving (version 1.1)'], + array['Arcade'], + '{"mame":["topdrive"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/topdrive.cpp"]}'::jsonb + ), + ( + 'top-gunner-exidy', + 'Top Gunner (Exidy)', + 'Exidy', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["topgunnr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/vertigo.cpp"]}'::jsonb + ), + ( + 'top-hunter-roddy-and-cathy-ngm-046', + 'Top Hunter - Roddy & Cathy (NGM-046)', + 'SNK', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["tophuntr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'top-landing', + 'Top Landing', + 'Taito Corporation Japan', + 1988, + array['Top Landing (World)'], + array['Arcade'], + '{"mame":["topland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitoair.cpp"]}'::jsonb + ), + ( + 'top-player-s-golf-ngm-003-ngh-003', + 'Top Player''s Golf (NGM-003 ~ NGH-003)', + 'SNK', + 1990, + '{}'::text[], + array['Sports'], + '{"mame":["tpgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'top-ranking-stars', + 'Top Ranking Stars', + 'Taito Corporation Japan', + 1993, + array['Top Ranking Stars (Ver 2.1O 1993/05/21) (New Version)'], + array['Arcade'], + '{"mame":["trstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'top-roller', + 'Top Roller', + 'Jaleco', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["toprollr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'top-secret-exidy', + 'Top Secret (Exidy)', + 'Exidy', + 1986, + array['Top Secret (Exidy) (version 1.0)'], + array['Arcade'], + '{"mame":["topsecex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'top-shooter', + 'Top Shooter', + 'Sun Mixing', + 1995, + '{}'::text[], + array['Shooter'], + '{"mame":["topshoot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_sunmix.cpp"]}'::jsonb + ), + ( + 'top-skater', + 'Top Skater', + 'Sega', + 1997, + array['Top Skater (Export, Revision A)'], + array['Arcade'], + '{"mame":["topskatr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'top-speed', + 'Top Speed', + 'Taito Corporation Japan', + 1987, + array['Top Speed (World, rev 1)'], + array['Arcade'], + '{"mame":["topspeed"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/topspeed.cpp"]}'::jsonb + ), + ( + 'top-t-cash', + 'Top T. Cash', + 'VideoIdea', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["toptcash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'top-xxi', + 'Top XXI', + 'Assogiochi Assago', + null, + array['Top XXI (Version 1.2)'], + array['Arcade'], + '{"mame":["top21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/mil4000.cpp"]}'::jsonb + ), + ( + 'top-7', + 'Top-7', + 'bootleg (UTech)', + 1999, + array['Top-7 (V8.8, set 1)'], + array['Arcade'], + '{"mame":["top7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'toppy-and-rappy', + 'Toppy & Rappy', + 'SemiCom', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["toppyrap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'tora-tora', + 'Tora Tora', + 'Game Plan', + 1980, + array['Tora Tora (prototype?)'], + array['Arcade'], + '{"mame":["toratora"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/toratora.cpp"]}'::jsonb + ), + ( + 'torarechattano-av-kantoku-hen', + 'Torarechattano - AV Kantoku Hen', + 'Nichibutsu/Love Factory/M Friend', + 2000, + array['Torarechattano - AV Kantoku Hen (Japan)'], + array['Arcade'], + '{"mame":["torarech"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'toride-ii-adauchi-gaiden', + 'Toride II Adauchi Gaiden', + 'Metro', + 1994, + array['Toride II Adauchi Gaiden (Japan)'], + array['Arcade'], + '{"mame":["toride2g"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'tornado', + 'Tornado', + 'Data East Corporation', + 1982, + array['Tornado (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["ctornado"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'tornado-baseball-ball-park', + 'Tornado Baseball / Ball Park', + 'Dave Nutting Associates / Midway / Taito', + 1976, + '{}'::text[], + array['Sports'], + '{"mame":["tornbase"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/mw8080bw.cpp"]}'::jsonb + ), + ( + 'torre-eiffel', + 'Torre Eiffel', + 'Videos A A', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["toureiff"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videosaa.cpp"]}'::jsonb + ), + ( + 'tortuga-family-italian', + 'Tortuga Family (Italian)', + 'C.M.C.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["tortufam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'torus', + 'Torus', + 'Yun Sung', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["torus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/paradise.cpp"]}'::jsonb + ), + ( + 'toryumon', + 'Toryumon', + 'Sega', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["toryumon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'total-carnage', + 'Total Carnage', + 'Midway', + 1992, + array['Total Carnage (rev LA1 03/10/92)'], + array['Arcade'], + '{"mame":["totcarn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'total-vice', + 'Total Vice', + 'Konami', + 1997, + array['Total Vice (ver EBA)'], + array['Arcade'], + '{"mame":["totlvice"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamim2.cpp"]}'::jsonb + ), + ( + 'tottemo-e-jong', + 'Tottemo E Jong', + 'Seibu Kaihatsu (Tecmo license)', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["totmejan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/goodejan.cpp"]}'::jsonb + ), + ( + 'touch-and-go', + 'Touch and Go', + 'Gaelco', + 1996, + array['Touch and Go (World, checksum 059D0235)'], + array['Arcade'], + '{"mame":["touchgo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'touch-de-uno-unou-nouryoku-check-machine', + 'Touch de Uno! / Unou Nouryoku Check Machine', + 'Sega', + 1999, + array['Touch de Uno! / Unou Nouryoku Check Machine (Japan)'], + array['Arcade'], + '{"mame":["tduno"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'touch-de-uno-2', + 'Touch de Uno! 2', + 'Sega', + 2000, + array['Touch de Uno! 2 (Japan)'], + array['Arcade'], + '{"mame":["tduno2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'touch-de-zunou', + 'Touch De Zunou', + 'Sega', + 2006, + array['Touch De Zunou (Japan, Rev A)'], + array['Arcade'], + '{"mame":["zunou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'touchdown-fever', + 'TouchDown Fever', + 'SNK', + 1987, + array['TouchDown Fever (US)'], + array['Arcade'], + '{"mame":["tdfever"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'touche-me', + 'Touche Me', + '', + null, + array['Touche Me (set 1)'], + array['Arcade'], + '{"mame":["toucheme"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/ladyfrog.cpp"]}'::jsonb + ), + ( + 'touchmaster-v3-00-euro', + 'Touchmaster (v3.00 Euro)', + 'Midway Games Inc. / CES Inc.', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["tm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'touchmaster-2000-plus-v4-63-standard', + 'Touchmaster 2000 Plus (v4.63 Standard)', + 'Midway Games Inc.', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["tm2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'touchmaster-3000-v5-02-standard', + 'Touchmaster 3000 (v5.02 Standard)', + 'Midway Games Inc.', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["tm3k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'touchmaster-4000-v6-03-standard', + 'Touchmaster 4000 (v6.03 Standard)', + 'Midway Games Inc.', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["tm4k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'touchmaster-5000-v7-10-standard', + 'Touchmaster 5000 (v7.10 Standard)', + 'Midway Games Inc.', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["tm5k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'touchmaster-7000-v8-04-standard', + 'Touchmaster 7000 (v8.04 Standard)', + 'Midway Games Inc.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["tm7k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'touchmaster-8000-v9-04-standard', + 'Touchmaster 8000 (v9.04 Standard)', + 'Midway Games Inc.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["tm8k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/tmaster.cpp"]}'::jsonb + ), + ( + 'tougenkyou', + 'Tougenkyou', + 'Nichibutsu', + 1989, + array['Tougenkyou (Japan 890418)'], + array['Arcade'], + '{"mame":["togenkyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/nbmj8900.cpp"]}'::jsonb + ), + ( + 'tough-turf-8751-317-0104', + 'Tough Turf (8751 317-0104)', + 'Sega / Sunsoft', + 1989, + array['Tough Turf (set 2, Japan) (8751 317-0104)'], + array['Arcade'], + '{"mame":["tturf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'toukidenshou-angel-eyes', + 'Toukidenshou - Angel Eyes', + 'Tecmo', + 1996, + array['Toukidenshou - Angel Eyes (VER. 960614)'], + array['Arcade'], + '{"mame":["tkdensho"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/tecmosys.cpp"]}'::jsonb + ), + ( + 'tour-4000', + 'Tour 4000', + 'High Video', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["tour4000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'tour-4010', + 'Tour 4010', + 'High Video', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["tour4010"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'tournament-arkanoid', + 'Tournament Arkanoid', + 'Taito America Corporation (Romstar license)', + 1987, + array['Tournament Arkanoid (US, older)'], + array['Arcade'], + '{"mame":["arkatour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/arkanoid.cpp"]}'::jsonb + ), + ( + 'tournament-pro-golf', + 'Tournament Pro Golf', + 'Data East Corporation', + 1981, + array['Tournament Pro Golf (DECO Cassette) (US)'], + array['Sports'], + '{"mame":["cprogolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'tournament-table', + 'Tournament Table', + 'Atari', + 1978, + array['Tournament Table (set 1)'], + array['Arcade'], + '{"mame":["tourtabl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/tourtabl.cpp"]}'::jsonb + ), + ( + 'touryuu-densetsu-elan-doree-elan-doree-legend-of-dragoon-juet-980922-v1-006', + 'Touryuu Densetsu Elan-Doree / Elan Doree - Legend of Dragoon (JUET 980922 V1.006)', + 'Sai-Mate', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["elandore"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'touryuumon-v1-1-apr-14-2005', + 'Touryuumon (V1.1, Apr 14 2005)', + 'Yuki Enterprise', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["touryuu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["eolith/ghosteo.cpp"]}'::jsonb + ), + ( + 'tower-and-shaft', + 'Tower & Shaft', + 'Aruze', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["twrshaft"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'toy-fighter', + 'Toy Fighter', + 'Sega / Anchor Inc.', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["toyfight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'toy-land-adventure', + 'Toy Land Adventure', + 'SemiCom', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["toyland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'toy-story-3-lexibook', + 'Toy Story 3 (Lexibook)', + 'Lexibook', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["lxts3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'toy-s-march-e00-j-a-a-2005011602', + 'Toy''s March (E00:J:A:A:2005011602)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["toysmarch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'toy-s-march-2-f00-j-a-a-2005110400', + 'Toy''s March 2 (F00:J:A:A:2005110400)', + 'Konami', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["toysmarch2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython2.cpp"]}'::jsonb + ), + ( + 'toypop', + 'Toypop', + 'Namco', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["toypop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/toypop.cpp"]}'::jsonb + ), + ( + 'track-and-field', + 'Track & Field', + 'Konami', + 1983, + '{}'::text[], + array['Sports'], + '{"mame":["trackfld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/trackfld.cpp"]}'::jsonb + ), + ( + 'track-and-field-playchoice-10', + 'Track & Field (PlayChoice-10)', + 'Konami (Nintendo of America license)', + 1987, + '{}'::text[], + array['Sports'], + '{"mame":["pc_tkfld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'trail-blazer', + 'Trail Blazer', + 'Coinmaster', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["trailblz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmstr.cpp"]}'::jsonb + ), + ( + 'tranquillizer-gun', + 'Tranquillizer Gun', + 'Sega', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["tranqgun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'transformer', + 'Transformer', + 'Sega', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["transfrm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segae.cpp"]}'::jsonb + ), + ( + 'transformers-beast-wars-ii', + 'Transformers Beast Wars II', + 'Sigma / Transformer Production Company / Takara', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["tbeastw2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'tranz-330', + 'Tranz 330', + 'VeriFone', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["tranz330"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["verifone/tranz330.cpp"]}'::jsonb + ), + ( + 'trap-shoot-classic-v1-0-21-mar-1997', + 'Trap Shoot Classic (v1.0 21-mar-1997)', + 'Creative Electronics And Software', + 1997, + '{}'::text[], + array['Classic'], + '{"mame":["tsclass"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ces/cesclass.cpp"]}'::jsonb + ), + ( + 'trapeze-trampoline', + 'Trapeze / Trampoline', + 'Exidy / Taito', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["trapeze"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/circus.cpp"]}'::jsonb + ), + ( + 'traverse-usa-zippy-race', + 'Traverse USA / Zippy Race', + 'Irem', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["travrusa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/travrusa.cpp"]}'::jsonb + ), + ( + 'treasure-2000', + 'Treasure 2000', + 'Subsino (American Alpha license)', + 2000, + array['Treasure 2000 (Ver. 107)'], + array['Arcade'], + '{"mame":["trea2000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'treasure-bonus', + 'Treasure Bonus', + 'Subsino (American Alpha license)', + 1995, + array['Treasure Bonus (American Alpha, Ver. 1.6)'], + array['Arcade'], + '{"mame":["tbonusal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'treasure-bonus-subsino-v1-6', + 'Treasure Bonus (Subsino, v1.6)', + 'American Alpha', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["stbsub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'treasure-city', + 'Treasure City', + 'Subsino (American Alpha license)', + 1997, + array['Treasure City (Ver. 208)'], + array['Arcade'], + '{"mame":["treacity"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'treasure-hunt-extrema-ukraine-v-34-03', + 'Treasure Hunt (Extrema, Ukraine, V. 34.03)', + 'Extrema', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["extrmth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'treasure-hunting', + 'Treasure Hunting', + 'Astro Corp.', + 2005, + array['Treasure Hunting (US.09.A)'], + array['Arcade'], + '{"mame":["treasurh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astropc.cpp"]}'::jsonb + ), + ( + 'treasure-island', + 'Treasure Island', + 'Data East Corporation', + 1981, + array['Treasure Island (DECO Cassette) (US) (set 1)', 'Treasure Island (Subsino, set 1)'], + array['Arcade'], + '{"mame":["ctisland","tisub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp","subsino/subsino.cpp"]}'::jsonb + ), + ( + 'treasure-island-data-east', + 'Treasure Island (Data East)', + 'Data East Corporation', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["tisland"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'treasure-island-extrema-ukraine-v-32-49', + 'Treasure Island (Extrema, Ukraine, V. 32.49)', + 'Extrema', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["extrmti"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/extrema.cpp"]}'::jsonb + ), + ( + 'treasure-mary', + 'Treasure Mary', + 'Subsino', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["treamary"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'treasure-ocean-v1-5a', + 'Treasure Ocean (v1.5A)', + 'Subsino / Sunwise', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["trsocean"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'tri-sports', + 'Tri-Sports', + 'Bally Midway', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["trisport"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr68.cpp"]}'::jsonb + ), + ( + 'tricep', + 'Tricep', + 'Morrow Designs', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["tricep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["morrow/tricep.cpp"]}'::jsonb + ), + ( + 'trick-trap', + 'Trick Trap', + 'Konami', + 1987, + array['Trick Trap (World?)'], + array['Arcade'], + '{"mame":["tricktrp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/labyrunr.cpp"]}'::jsonb + ), + ( + 'tricky-doc', + 'Tricky Doc', + 'Tecfri', + 1987, + array['Tricky Doc (set 1)'], + array['Arcade'], + '{"mame":["trckydoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecfri/sauro.cpp"]}'::jsonb + ), + ( + 'triforce-dimm-updater-3-17-gdt-0011', + 'Triforce DIMM Updater (3.17) (GDT-0011)', + 'Sega', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["tfupdate"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'triforce-firmware-update-for-compact-flash-box-4-01-gdt-0022a', + 'Triforce Firmware Update For Compact Flash Box (4.01) (GDT-0022A)', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["tcfboxa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'trigger-heart-exelica-ver-a-gdl-0036a', + 'Trigger Heart Exelica Ver.A (GDL-0036A)', + 'Warashi', + 2006, + array['Trigger Heart Exelica Ver.A (Japan) (GDL-0036A)'], + array['Arcade'], + '{"mame":["trgheart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'trio-the-punch-never-forget-me', + 'Trio The Punch - Never Forget Me...', + 'Data East Corporation', + 1989, + array['Trio The Punch - Never Forget Me... (World)'], + array['Arcade'], + '{"mame":["triothep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/actfancr.cpp"]}'::jsonb + ), + ( + 'triomphe', + 'Triomphe', + 'Chess King / Intelligent Chess Software', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["triomphe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["chessking/triomphe.cpp"]}'::jsonb + ), + ( + 'triple-fever', + 'Triple Fever', + 'IGS', + 2006, + array['Triple Fever (V110US)'], + array['Arcade'], + '{"mame":["tripfev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027xa.cpp"]}'::jsonb + ), + ( + 'triple-hunt', + 'Triple Hunt', + 'Atari', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["triplhnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/triplhnt.cpp"]}'::jsonb + ), + ( + 'triple-jack-v1-6g', + 'Triple Jack (V1.6G)', + 'Dyna', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["tripjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cb2001.cpp"]}'::jsonb + ), + ( + 'triple-play', + 'Triple Play', + 'Cadillac Jack', + 1998, + array['Triple Play (Ver. 1.10)'], + array['Arcade'], + '{"mame":["cj3play"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blitz68k.cpp"]}'::jsonb + ), + ( + 'triple-punch', + 'Triple Punch', + 'K.K. International', + 1982, + array['Triple Punch (set 1)'], + array['Arcade'], + '{"mame":["triplep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scramble.cpp"]}'::jsonb + ), + ( + 'triple-star-2000', + 'Triple Star 2000', + 'A.M.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["trstar2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'triple-x', + 'Triple X', + 'Torch Computers', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["triplex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["torch/triplex.cpp"]}'::jsonb + ), + ( + 'tripple-draw-v3-1-s', + 'Tripple Draw (V3.1 s)', + 'Status Games', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["tripdraw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'triton-l7-2', + 'Triton L7.2', + 'Transam', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["triton72"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/triton.cpp"]}'::jsonb + ), + ( + 'triton-music-workstation-sampler-v2-5-3', + 'Triton Music Workstation/Sampler (v2.5.3)', + 'Korg', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["korgtriton"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgtriton.cpp"]}'::jsonb + ), + ( + 'trium-eclipse', + 'Trium Eclipse', + 'Mitsubishi', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["triumec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mitsubishi/trium.cpp"]}'::jsonb + ), + ( + 'triv-four', + 'Triv Four', + 'Status Games', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["statriv4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'triv-iii', + 'Triv III', + 'Status Games', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["statriv3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'triv-two', + 'Triv Two', + 'Status Games', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["statriv2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/statriv2.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-2-12-85', + 'Trivial Pursuit (2/12/85)', + 'Bally/Sente', + 1984, + array['Trivial Pursuit (Think Tank - Genus Edition) (2/12/85)'], + array['Arcade'], + '{"mame":["triviag1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-3-22-85', + 'Trivial Pursuit (3/22/85)', + 'Bally/Sente', + 1984, + array['Trivial Pursuit (Genus II Edition) (3/22/85)'], + array['Arcade'], + '{"mame":["triviag2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-all-star-sports-edition', + 'Trivial Pursuit (All Star Sports Edition)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["triviasp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-baby-boomer-edition-3-20-85', + 'Trivial Pursuit (Baby Boomer Edition) (3/20/85)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["triviabb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-volumen-iii-spanish-maibesa-license', + 'Trivial Pursuit (Volumen III, Spanish, Maibesa license)', + 'Bally/Sente (Maibesa license)', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["triviaes"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-volumen-iv-spanish-maibesa-hardware', + 'Trivial Pursuit (Volumen IV, Spanish, Maibesa hardware)', + 'Bally/Sente (Maibesa license)', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["triviaes4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-volumen-v-spanish-maibesa-hardware', + 'Trivial Pursuit (Volumen V, Spanish, Maibesa hardware)', + 'Bally/Sente (Maibesa license)', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["triviaes5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trivial-pursuit-young-players-edition-3-29-85', + 'Trivial Pursuit (Young Players Edition) (3/29/85)', + 'Bally/Sente', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["triviayp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/balsente.cpp"]}'::jsonb + ), + ( + 'trizeal-gdl-0026', + 'Trizeal (GDL-0026)', + 'Triangle Service', + 2004, + array['Trizeal (Japan) (GDL-0026)'], + array['Arcade'], + '{"mame":["trizeal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'trog', + 'Trog', + 'Midway', + 1990, + array['Trog (rev LA5 3/29/91)'], + array['Arcade'], + '{"mame":["trog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'trojan', + 'Trojan', + 'Capcom', + 1986, + array['Trojan (US set 1)'], + array['Arcade'], + '{"mame":["trojan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/lwings.cpp"]}'::jsonb + ), + ( + 'trojan-playchoice-10', + 'Trojan (PlayChoice-10)', + 'Capcom USA (Nintendo of America license)', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_trjan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'tron-8-9', + 'Tron (8/9)', + 'Bally Midway', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["tron"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'trophy-hunting-bear-and-moose-v1-00', + 'Trophy Hunting - Bear & Moose V1.00', + 'Sammy USA Corporation', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["trophyh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'tropical-angel', + 'Tropical Angel', + 'Irem', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["troangel"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m57.cpp"]}'::jsonb + ), + ( + 'tropical-chance', + 'Tropical Chance', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["tropchnc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/stingnet.cpp"]}'::jsonb + ), + ( + 'tropical-fruits', + 'Tropical Fruits', + 'Playmark', + 1999, + array['Tropical Fruits (V. 24-06.00 Rev. 4.0)'], + array['Arcade'], + '{"mame":["tropfrt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/sderby.cpp"]}'::jsonb + ), + ( + 'trouble-witches-ac-v1-00j', + 'Trouble Witches AC (v1.00J)', + 'Adventure Planning Service/Studio SiestA', + 2008, + '{}'::text[], + array['Arcade'], + '{"mame":["trbwtchs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'trs-80-model-100', + 'TRS-80 Model 100', + 'Tandy Radio Shack', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["trsm100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kyocera/kyocera.cpp"]}'::jsonb + ), + ( + 'truck-kyosokyoku', + 'Truck Kyosokyoku', + 'Metro / Namco', + 2000, + array['Truck Kyosokyoku (US?, TKK2/VER.A)'], + array['Arcade'], + '{"mame":["truckk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'truco-clemente', + 'Truco Clemente', + 'Miky SRL', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["trucocl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/trucocl.cpp"]}'::jsonb + ), + ( + 'truco-tron', + 'Truco-Tron', + 'Playtronic SRL', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["truco"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/truco.cpp"]}'::jsonb + ), + ( + 'truxton-tatsujin', + 'Truxton / Tatsujin', + 'Toaplan / Taito Corporation', + 1988, + array['Truxton (Europe, US) / Tatsujin (Japan)'], + array['Arcade'], + '{"mame":["truxton"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/toaplan1.cpp"]}'::jsonb + ), + ( + 'truxton-ii-tatsujin-oh', + 'Truxton II / Tatsujin Oh', + 'Toaplan', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["truxton2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/truxton2.cpp"]}'::jsonb + ), + ( + 'ts-1-v2-13-0', + 'TS-1 (v2.13.0)', + 'Falco Data Products', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ts1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["falco/falcots.cpp"]}'::jsonb + ), + ( + 'ts-10', + 'TS-10', + 'Ensoniq', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ts10"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqkt.cpp"]}'::jsonb + ), + ( + 'ts-12', + 'TS-12', + 'Ensoniq', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["ts12"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esqkt.cpp"]}'::jsonb + ), + ( + 'ts-2624', + 'TS-2624', + 'Falco Data Products', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["ts2624"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["falco/falcots.cpp"]}'::jsonb + ), + ( + 'ts-3000', + 'TS-3000', + 'Televideo', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ts3000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/ts3000.cpp"]}'::jsonb + ), + ( + 'ts802', + 'TS802', + 'Televideo', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["ts802"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/ts802.cpp"]}'::jsonb + ), + ( + 'ts803h', + 'TS803H', + 'Televideo', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["ts803h"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/ts803.cpp"]}'::jsonb + ), + ( + 'ts816', + 'TS816', + 'Televideo', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["ts816"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/ts816.cpp"]}'::jsonb + ), + ( + 'tsarevna-v1-29', + 'Tsarevna (v1.29)', + 'Kupidon', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["tsarevna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cupidon.cpp"]}'::jsonb + ), + ( + 'tsukande-toru-chicchi', + 'Tsukande Toru Chicchi', + 'Konami', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["tsukande"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'tsukkomi-yousei-gips-nice-tsukkomi', + 'Tsukkomi Yousei Gips Nice Tsukkomi', + 'Namco / Metro', + 2002, + array['Tsukkomi Yousei Gips Nice Tsukkomi (NTK1 Ver.A)'], + array['Arcade'], + '{"mame":["nicetsuk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'tsuribori-taikai-jae-980605-v1-000', + 'Tsuribori Taikai (JAE 980605 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["tsuribor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'tsurikko-penta', + 'Tsurikko Penta', + 'Konami', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["tsupenta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'tsurugi', + 'Tsurugi', + 'Konami', + 2002, + array['Tsurugi (ver EAB)'], + array['Arcade'], + '{"mame":["tsurugi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'tsururin-kun', + 'Tsururin Kun', + 'Konami', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["tsururin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal.cpp"]}'::jsonb + ), + ( + 'tsuugakuro-no-yuuwaku', + 'Tsuugakuro no Yuuwaku', + 'Nichibutsu/Love Factory/Just&Just', + 2000, + array['Tsuugakuro no Yuuwaku (Japan)'], + array['Arcade'], + '{"mame":["tsuwaku"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/hrdvd.cpp"]}'::jsonb + ), + ( + 'tt030', + 'TT030', + 'Atari', + 1990, + array['TT030 (USA)'], + array['Arcade'], + '{"mame":["tt030"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/atarist.cpp"]}'::jsonb + ), + ( + 'tube-panic', + 'Tube Panic', + 'Nichibutsu / Fujitek', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["tubep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/tubep.cpp"]}'::jsonb + ), + ( + 'tugboat', + 'Tugboat', + 'Enter-Tech, Ltd.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["tugboat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tugboat.cpp"]}'::jsonb + ), + ( + 'tumble-pop', + 'Tumble Pop', + 'Data East Corporation', + 1991, + array['Tumble Pop (World)'], + array['Arcade'], + '{"mame":["tumblep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/supbtime.cpp"]}'::jsonb + ), + ( + 'tunnel-hunt', + 'Tunnel Hunt', + 'Atari', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["tunhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/tunhunt.cpp"]}'::jsonb + ), + ( + 'turbo-program-1513-1515', + 'Turbo (program 1513-1515)', + 'Sega', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["turbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/turbo.cpp"]}'::jsonb + ), + ( + 'turbo-extreme', + 'Turbo Extreme', + 'LeapFrog', + 2004, + array['Turbo Extreme (US)'], + array['Arcade'], + '{"mame":["turboex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'turbo-force', + 'Turbo Force', + 'Video System Co.', + 1991, + array['Turbo Force (World, set 1)'], + array['Arcade'], + '{"mame":["turbofrc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/pspikes.cpp"]}'::jsonb + ), + ( + 'turbo-gt-50-in-1', + 'Turbo GT 50-in-1', + 'dreamGEAR / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dturbogt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'turbo-out-run-out-run-upgrade-fd1094-317-0118', + 'Turbo Out Run (Out Run upgrade) (FD1094 317-0118)', + 'Sega', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["toutrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segaorun.cpp"]}'::jsonb + ), + ( + 'turbo-outrun-mega-tech', + 'Turbo Outrun (Mega-Tech)', + 'Sega', + 1992, + '{}'::text[], + array['Racing'], + '{"mame":["mt_tout"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'turbo-sub', + 'Turbo Sub', + 'Entertainment Sciences', + 1985, + array['Turbo Sub (prototype rev. TSCA)'], + array['Arcade'], + '{"mame":["turbosub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/esripsys.cpp"]}'::jsonb + ), + ( + 'turbo-tag', + 'Turbo Tag', + 'Bally Midway', + 1985, + array['Turbo Tag (prototype)'], + array['Arcade'], + '{"mame":["turbotag"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr3.cpp"]}'::jsonb + ), + ( + 'turbo-twist-brain-quest', + 'Turbo Twist Brain Quest', + 'LeapFrog', + 2002, + array['Turbo Twist Brain Quest (US)'], + array['Arcade'], + '{"mame":["ttwistbq"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'turbo-twist-fact-blaster', + 'Turbo Twist Fact Blaster', + 'LeapFrog', + null, + array['Turbo Twist Fact Blaster (US)'], + array['Arcade'], + '{"mame":["ttwistfb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'turbo-twist-math', + 'Turbo Twist Math', + 'LeapFrog', + 2002, + array['Turbo Twist Math (US)'], + array['Arcade'], + '{"mame":["ttwistm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'turbo-twist-spelling', + 'Turbo Twist Spelling', + 'LeapFrog', + 2000, + array['Turbo Twist Spelling (US)'], + array['Arcade'], + '{"mame":["ttwistsp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'turbo-twist-vocabulator', + 'Turbo Twist Vocabulator', + 'LeapFrog', + 2001, + array['Turbo Twist Vocabulator (US)'], + array['Arcade'], + '{"mame":["ttwistvc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["leapfrog/iquest.cpp"]}'::jsonb + ), + ( + 'turkey-hunting-usa-v1-00', + 'Turkey Hunting USA V1.00', + 'Sammy USA Corporation', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["turkhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'turkey-shoot', + 'Turkey Shoot', + 'Williams', + 1984, + array['Turkey Shoot (prototype)'], + array['Arcade'], + '{"mame":["tshoot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/williams.cpp"]}'::jsonb + ), + ( + 'turret-tower-the-enemy-has-arrived', + 'Turret Tower - The Enemy Has Arrived', + 'Dell Electronics (Namco license)', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["turrett"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/turrett.cpp"]}'::jsonb + ), + ( + 'turtle-ship-north-america', + 'Turtle Ship (North America)', + 'Philko (Sharp Image license)', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["turtship"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/sidearms.cpp"]}'::jsonb + ), + ( + 'turtles', + 'Turtles', + 'Konami (Stern Electronics license)', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["turtles"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'tut-s-tomb', + 'Tut''s Tomb', + 'Island Design', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["tutstomb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/tickee.cpp"]}'::jsonb + ), + ( + 'tutankham', + 'Tutankham', + 'Konami', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["tutankhm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tutankhm.cpp"]}'::jsonb + ), + ( + 'tv-boy-pal', + 'TV Boy (PAL)', + 'Systema?', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["tvboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/a2600.cpp"]}'::jsonb + ), + ( + 'tv-dance-mat-4-games-in-1-mix-party-3-dance-mix-3', + 'TV Dance Mat 4 Games in 1 (Mix Party 3 / Dance Mix 3)', + 'Venom', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["dancmix3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'tv-de-asobou-mickey-and-minnie-mouse-kids', + 'TV de Asobou! Mickey & Minnie Mouse Kids', + 'Tomy', + 1997, + array['TV de Asobou! Mickey & Minnie Mouse Kids (Japan)'], + array['Arcade'], + '{"mame":["mousekid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'tv-games-baseball-sh6578-hardware', + 'TV Games Baseball (SH6578 hardware)', + 'DaiDaiXing Electronics', + null, + '{}'::text[], + array['Sports'], + '{"mame":["bb6578"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'tv-games-ping-pong-sh6578-hardware', + 'TV Games Ping Pong (SH6578 hardware)', + 'DaiDaiXing Electronics', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pp6578"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'tv-megamax-active-power-game-system-30-in-1-megamax-gpd001sdg', + 'TV MegaMax active power game system 30-in-1 (MegaMax GPD001SDG)', + 'Polaroid / JungleTac', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["polmega"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'tv-ocha-ken', + 'TV Ocha-Ken', + 'Sega Toys', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["tvochken"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/sega_beena.cpp"]}'::jsonb + ), + ( + 'tv-pump-active', + 'TV Pump Active', + 'Giggle', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pumpactv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'tvc-64', + 'TVC 64', + 'Videoton', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["tvc64"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["videoton/tvc.cpp"]}'::jsonb + ), + ( + 'tvi-912c', + 'TVI-912C', + 'TeleVideo Systems', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["tv912c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["televideo/tv912.cpp"]}'::jsonb + ), + ( + 'twin-action', + 'Twin Action', + 'Afega', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["twinactn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'twin-adventure', + 'Twin Adventure', + 'Barko Corp.', + 1995, + array['Twin Adventure (World)'], + array['Arcade'], + '{"mame":["twinadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'twin-bee-yahhoo', + 'Twin Bee Yahhoo!', + 'Konami', + 1995, + array['Twin Bee Yahhoo! (ver JAA)'], + array['Arcade'], + '{"mame":["tbyahhoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'twin-brats', + 'Twin Brats', + 'Elettronica Video-Games', + 1995, + array['Twin Brats (set 1)'], + array['Arcade'], + '{"mame":["twinbrat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/stlforce.cpp"]}'::jsonb + ), + ( + 'twin-cobra', + 'Twin Cobra', + 'Toaplan / Taito Corporation', + 1987, + array['Twin Cobra (World)'], + array['Arcade'], + '{"mame":["twincobr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/twincobr.cpp"]}'::jsonb + ), + ( + 'twin-cobra-ii', + 'Twin Cobra II', + 'Taito Corporation Japan', + 1995, + array['Twin Cobra II (Ver 2.1O 1995/11/30)'], + array['Arcade'], + '{"mame":["tcobra2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'twin-eagle-revenge-joe-s-brother', + 'Twin Eagle - Revenge Joe''s Brother', + 'Seta (Taito license)', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["twineagl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'twin-eagle-ii-the-rescue-mission', + 'Twin Eagle II - The Rescue Mission', + 'Seta', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["twineag2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'twin-falcons', + 'Twin Falcons', + 'Philko (Poara Enterprises license)', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["twinfalc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/sidearms.cpp"]}'::jsonb + ), + ( + 'twin-hawk', + 'Twin Hawk', + 'Taito Corporation Japan', + 1989, + array['Twin Hawk (World)'], + array['Arcade'], + '{"mame":["twinhawk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_x.cpp"]}'::jsonb + ), + ( + 'twin-qix', + 'Twin Qix', + 'Taito America Corporation', + 1995, + array['Twin Qix (Ver 1.0A 1995/01/17, prototype)'], + array['Arcade'], + '{"mame":["twinqix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f3.cpp"]}'::jsonb + ), + ( + 'twin-squash', + 'Twin Squash', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["twinsqua"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'twinbee', + 'TwinBee', + 'Konami', + 1985, + array['TwinBee (ROM version)'], + array['Arcade'], + '{"mame":["twinbee"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'twinbee-bubble-system', + 'TwinBee (Bubble System)', + 'Konami', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["twinbeeb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/nemesis.cpp"]}'::jsonb + ), + ( + 'twinkle', + 'Twinkle', + 'SemiCom / Tirano', + 1997, + array['Twinkle (set 1)'], + array['Arcade'], + '{"mame":["twinkle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/snowbros.cpp"]}'::jsonb + ), + ( + 'twinkle-star-sprites', + 'Twinkle Star Sprites', + 'ADK / SNK', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["twinspri"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'twinkle-system', + 'Twinkle System', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["gq863"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twinkle.cpp"]}'::jsonb + ), + ( + 'twinkle-tale', + 'Twinkle Tale', + 'bootleg / Sega', + 1993, + array['Twinkle Tale (bootleg of Mega Drive version)'], + array['Arcade'], + '{"mame":["twinktmb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_acbl.cpp"]}'::jsonb + ), + ( + 'twins-newer', + 'Twins (newer)', + 'Ecogames', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["twins"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/twins.cpp"]}'::jsonb + ), + ( + 'two-tigers-dedicated', + 'Two Tigers (dedicated)', + 'Bally Midway', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["twotiger"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'tx-0-upgraded-system-8-kwords-of-ram-new-order-code', + 'TX-0 upgraded system (8 kWords of RAM, new order code)', + 'MIT', + 1962, + '{}'::text[], + array['Arcade'], + '{"mame":["tx0_8kw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mit/tx0.cpp"]}'::jsonb + ), + ( + 'tx-1', + 'TX-1', + 'Tatsumi (Atari/Namco/Taito license)', + 1983, + array['TX-1 (World)'], + array['Arcade'], + '{"mame":["tx1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tatsumi/tx1.cpp"]}'::jsonb + ), + ( + 'tx81z-fm-tone-generator', + 'TX81Z FM Tone Generator', + 'Yamaha', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["tx81z"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymtx81z.cpp"]}'::jsonb + ), + ( + 'tylz', + 'Tylz', + 'Mylstar', + 1982, + array['Tylz (prototype)'], + array['Arcade'], + '{"mame":["tylz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'type-n-talk', + 'Type ''N Talk', + 'Votrax', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["votrtnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["votrax/votrtnt.cpp"]}'::jsonb + ), + ( + 'typestar-3', + 'Typestar 3', + 'Canon', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["canonts3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["canon/canon_s80.cpp"]}'::jsonb + ), + ( + 'typhoon-lagoon-atronic', + 'Typhoon Lagoon (Atronic)', + 'Atronic', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["tylagoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'u-n-defense-force-earth-joker', + 'U.N. Defense Force: Earth Joker', + 'Visco', + 1993, + array['U.N. Defense Force: Earth Joker (US / Japan, set 1)'], + array['Arcade'], + '{"mame":["earthjkr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/asuka.cpp"]}'::jsonb + ), + ( + 'u-n-squadron', + 'U.N. Squadron', + 'Capcom', + 1989, + array['U.N. Squadron (USA)'], + array['Arcade'], + '{"mame":["unsquad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'u-s-championship-v-ball', + 'U.S. Championship V''ball', + 'Technos Japan', + 1988, + array['U.S. Championship V''ball (US)'], + array['Arcade'], + '{"mame":["vball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/vball.cpp"]}'::jsonb + ), + ( + 'u-s-classic', + 'U.S. Classic', + 'Seta', + 1989, + '{}'::text[], + array['Classic'], + '{"mame":["usclssic"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/downtown.cpp"]}'::jsonb + ), + ( + 'u5s-tk-v03a', + 'U5S-TK-V03A', + 'TK', + 1994, + array['U5S-TK-V03A (UMC UM8498F & UM8496 chipset)'], + array['Arcade'], + '{"mame":["tku5s"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["umc/pc486vl.cpp"]}'::jsonb + ), + ( + 'uchuu-daisakusen-chocovader-contactee', + 'Uchuu Daisakusen: Chocovader Contactee', + 'Namco', + 2002, + array['Uchuu Daisakusen: Chocovader Contactee (Japan, CVC1 Ver.A)'], + array['Arcade'], + '{"mame":["chocovdr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos10.cpp"]}'::jsonb + ), + ( + 'uchuu-tokkyuu-medalian', + 'Uchuu Tokkyuu Medalian', + 'Sigma', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["ucytokyu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sigmab98.cpp"]}'::jsonb + ), + ( + 'ufo-robo-dangar-4-09-1987', + 'Ufo Robo Dangar (4/09/1987)', + 'Nichibutsu', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["dangar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/galivan.cpp"]}'::jsonb + ), + ( + 'ufo-robot', + 'UFO Robot', + 'Nazionale Elettronica', + 2001, + array['UFO Robot (Ver 1.0 Rev A)'], + array['Arcade'], + '{"mame":["uforobot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'ufo-senshi-yohko-chan-mc-8123-317-0064', + 'Ufo Senshi Yohko Chan (MC-8123, 317-0064)', + 'Sega', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ufosensi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'ultim809', + 'Ultim809', + 'Matthew Sarnoff', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["ultim809"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/ultim809.cpp"]}'::jsonb + ), + ( + 'ultimate-arctic-thunder', + 'Ultimate Arctic Thunder', + 'Midway Games', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["ultarctc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midqslvr.cpp"]}'::jsonb + ), + ( + 'ultimate-mortal-kombat-3', + 'Ultimate Mortal Kombat 3', + 'Midway', + 1994, + array['Ultimate Mortal Kombat 3 (rev 1.2)'], + array['Fighting'], + '{"mame":["umk3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwunit.cpp"]}'::jsonb + ), + ( + 'ultimate-pocket-console-gm-235', + 'Ultimate Pocket Console GM-235', + 'TimeTop', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["gm235upc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'ultimate-tennis', + 'Ultimate Tennis', + 'Art & Magic', + 1993, + '{}'::text[], + array['Sports'], + '{"mame":["ultennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/artmagic.cpp"]}'::jsonb + ), + ( + 'ultra-45', + 'Ultra 45', + 'Sun Microsystems', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["ultra45"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sun/ultra45.cpp"]}'::jsonb + ), + ( + 'ultra-balloon', + 'Ultra Balloon', + 'SunA (Unico license)', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["uballoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["suna/suna16.cpp"]}'::jsonb + ), + ( + 'ultra-tank', + 'Ultra Tank', + 'Atari (Kee Games)', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["ultratnk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/ultratnk.cpp"]}'::jsonb + ), + ( + 'ultra-toukon-densetsu', + 'Ultra Toukon Densetsu', + 'Banpresto', + 1993, + array['Ultra Toukon Densetsu (Japan)'], + array['Arcade'], + '{"mame":["utoukond"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'ultra-x-weapons-ultra-keibitai', + 'Ultra X Weapons / Ultra Keibitai', + 'Banpresto / Tsuburaya Productions / Seta', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["ultrax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'ultraman', + 'Ultraman', + 'Banpresto / Bandai', + 1991, + array['Ultraman (Japan)'], + array['Arcade'], + '{"mame":["ultraman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/ultraman.cpp"]}'::jsonb + ), + ( + 'ultraman-club-lucky-numbers', + 'Ultraman Club - Lucky Numbers', + 'Banpresto', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["lnumbers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/banpresto_bpsc68000.cpp"]}'::jsonb + ), + ( + 'ultraman-club-tatakae-ultraman-kyoudai', + 'Ultraman Club - Tatakae! Ultraman Kyoudai!!', + 'Banpresto', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["umanclub"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'um-jammer-lammy-now', + 'Um Jammer Lammy NOW!', + 'Namco', + 1999, + array['Um Jammer Lammy NOW! (Japan, UL1/VER.A)'], + array['Arcade'], + '{"mame":["ujlnow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos12.cpp"]}'::jsonb + ), + ( + 'umi-monogatari-lucky-marine-theater-uls1001-st-a', + 'Umi Monogatari Lucky Marine Theater (ULS1001-ST-A)', + 'Namco', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["lmarinet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos14x.cpp"]}'::jsonb + ), + ( + 'uncle-fester-s-quest-the-addams-family-playchoice-10', + 'Uncle Fester''s Quest: The Addams Family (PlayChoice-10)', + 'Sunsoft (Nintendo of America license)', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_ftqst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'uncle-poo', + 'Uncle Poo', + 'Diatec', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["unclepoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ), + ( + 'under-defeat-gdl-0035', + 'Under Defeat (GDL-0035)', + 'G.Rev', + 2005, + array['Under Defeat (Japan) (GDL-0035)'], + array['Arcade'], + '{"mame":["undefeat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'under-fire', + 'Under Fire', + 'Taito Corporation Japan', + 1993, + array['Under Fire (World)'], + array['Arcade'], + '{"mame":["undrfire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/undrfire.cpp"]}'::jsonb + ), + ( + 'undercover-cops', + 'Undercover Cops', + 'Irem', + 1992, + array['Undercover Cops (World)'], + array['Arcade'], + '{"mame":["uccops"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m92.cpp"]}'::jsonb + ), + ( + 'uniwar-s', + 'UniWar S', + 'Irem', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["uniwars"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'unknown-igs-6poker2-game-v312cn', + 'unknown ''IGS 6POKER2'' game (V312CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["igsm312"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'unknown-pac-man-gambling-game', + 'unknown ''Pac-Man'' gambling game', + '', + null, + array['unknown ''Pac-Man'' gambling game (set 1)'], + array['Classic'], + '{"mame":["unkpacg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enraya.cpp"]}'::jsonb + ), + ( + 'unknown-space-invaders-gambling-game', + 'unknown ''Space Invaders'' gambling game', + '', + null, + array['unknown ''Space Invaders'' gambling game (encrypted, set 1)'], + array['Shooter'], + '{"mame":["unksig"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/4enraya.cpp"]}'::jsonb + ), + ( + 'unknown-vip-2000-game', + 'unknown ''VIP 2000'' game', + 'Paloma Elektronik?', + 2004, + array['unknown ''VIP 2000'' game (set 1)', 'unknown ''VIP 2000'' game (set 2)', 'unknown ''VIP 2000'' game (set 3)'], + array['Arcade'], + '{"mame":["vip2000","vip2000a","vip2000b"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/bingor.cpp"]}'::jsonb + ), + ( + 'unknown-100-in-1-handheld-mega-drive-based', + 'unknown 100-in-1 handheld (Mega Drive based)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["mdhh100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megadriv_firecore.cpp"]}'::jsonb + ), + ( + 'unknown-alba-game', + 'unknown Alba game', + 'Alba', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["unkalba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/speedatk.cpp"]}'::jsonb + ), + ( + 'unknown-amstar-cards-game', + 'unknown Amstar cards game', + 'Amstar', + null, + array['unknown Amstar cards game (set 1)'], + array['Arcade'], + '{"mame":["unkamst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amstarz80.cpp"]}'::jsonb + ), + ( + 'unknown-elsy-game', + 'unknown Elsy game', + 'Electro System (Elsy)', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["elsygame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sanremmg.cpp"]}'::jsonb + ), + ( + 'unknown-fighting-game-bb', + 'unknown fighting game ''BB''', + '', + null, + array['unknown fighting game ''BB'' (prototype)'], + array['Arcade'], + '{"mame":["bbprot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nix/fitfight.cpp"]}'::jsonb + ), + ( + 'unknown-fun-world-a0-1-game', + 'unknown Fun World A0-1 game', + 'Fun World', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["fw_a0_1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'unknown-fun-world-a7-11-game-1', + 'unknown Fun World A7-11 game 1', + 'Fun World', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["fw_a7_11"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'unknown-game-on-fr004-hardware', + 'unknown game on FR004 hardware', + 'Nova Desitec', + null, + array['unknown game on FR004 hardware (set 1)'], + array['Arcade'], + '{"mame":["unkfr004"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novadesitec/novadesitec_fr004.cpp"]}'::jsonb + ), + ( + 'unknown-game-on-fr009-hardware', + 'unknown game on FR009 hardware', + 'Nova Desitec', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unkfr009"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novadesitec/novadesitec_fr009.cpp"]}'::jsonb + ), + ( + 'unknown-game-on-truesys-hardware', + 'unknown game on TrueSys hardware', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unkts"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/truesys.cpp"]}'::jsonb + ), + ( + 'unknown-h8-italian-gambling-game', + 'unknown H8 Italian gambling game', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unkh8gam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'unknown-hom-inn-cards-game', + 'unknown Hom Inn cards game', + 'Hom Inn', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unkhomin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hominn/hominn_mcs51.cpp"]}'::jsonb + ), + ( + 'unknown-ins8900-multibus-card-980305652', + 'unknown INS8900 Multibus card (980305652)', + 'National Semiconductor', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ns5652"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["natsemi/ns5652.cpp"]}'::jsonb + ), + ( + 'unknown-labeled-wu-mary-1a-music-by-sunkiss-chen', + 'unknown Labeled ''WU- MARY-1A'' Music by: SunKiss Chen', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["marywu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/marywu.cpp"]}'::jsonb + ), + ( + 'unknown-pmc-game', + 'unknown PMC game', + 'PMC', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unkpmc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pmc.cpp"]}'::jsonb + ), + ( + 'unknown-san-remo-elsy-multigame', + 'unknown San Remo / Elsy Multigame', + 'San Remo Games', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["sanremmg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sanremmg.cpp"]}'::jsonb + ), + ( + 'unknown-smk-game', + 'unknown SMK game', + 'High Video', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unksmk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'unknown-tax-game', + 'unknown TAX game', + 'TAX / Game Revival', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unktax"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/blocktax.cpp"]}'::jsonb + ), + ( + 'unknown-top-game', + 'unknown Top game', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unktop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/unktop.cpp"]}'::jsonb + ), + ( + 'unknown-vlc-multigame', + 'unknown VLC multigame', + 'VLC Inc.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["vlcunk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vlc34010.cpp"]}'::jsonb + ), + ( + 'unknown-vrender0-bowling-game', + 'unknown VRender0+ bowling game', + 'A1 Amusement One', + null, + '{}'::text[], + array['Sports'], + '{"mame":["v0bowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/v0bowl.cpp"]}'::jsonb + ), + ( + 'unknown-vt02-based-25-in-1-handheld', + 'unknown VT02 based 25-in-1 handheld', + '', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["vt25in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'unknown-vt1682-based-101-in-1-handheld-pal', + 'unknown VT1682-based 101-in-1 handheld (PAL)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unk1682"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'unknown-vt369-based-128-in-1-gc31-369-20210702-v2', + 'unknown VT369 based 128-in-1 (GC31-369-20210702-V2)', + '', + 2021, + '{}'::text[], + array['Arcade'], + '{"mame":["unk128vt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'unknown-vt3xx-based-270-in-1-bl-867-pcb03', + 'unknown VT3xx based 270-in-1 (BL-867 PCB03)', + '', + 2022, + '{}'::text[], + array['Arcade'], + '{"mame":["nesvt270"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'unknown-yuvo-joy-stand-game', + 'unknown Yuvo Joy Stand game', + 'Yuvo', + 1997, + array['unknown Yuvo Joy Stand game (set 1)', 'unknown Yuvo Joy Stand game (set 2)'], + array['Arcade'], + '{"mame":["x180","x180ii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/joystand.cpp"]}'::jsonb + ), + ( + 'unknown-z80-based-mainframe', + 'unknown Z80-based mainframe', + 'Hewlett-Packard', + 1977, + '{}'::text[], + array['Arcade'], + '{"mame":["hpz80unk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["hp/hpz80unk.cpp"]}'::jsonb + ), + ( + 'unknown-zilec-game-on-blue-print-hardware', + 'unknown Zilec game on Blue Print hardware', + 'Zilec Electronics / Exodis', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["unkzilec"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/blueprnt.cpp"]}'::jsonb + ), + ( + 'untouchable', + 'Untouchable', + 'Dynax', + 1987, + array['Untouchable (Ver. 2.10)'], + array['Arcade'], + '{"mame":["untoucha"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/hnayayoi.cpp"]}'::jsonb + ), + ( + 'up-scope', + 'Up Scope', + 'Grand Products', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["upscope"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/upscope.cpp"]}'::jsonb + ), + ( + 'up-n-down-315-5030', + 'Up''n Down (315-5030)', + 'Sega', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["upndown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'urachacha-mudaeri', + 'Urachacha Mudaeri', + 'GamToU', + 2002, + array['Urachacha Mudaeri (Korea)'], + array['Arcade'], + '{"mame":["urachamu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'us-aaf-mustang-25th-may-1990', + 'US AAF Mustang (25th May. 1990)', + 'UPL', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["mustang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'us-vs-them', + 'Us vs. Them', + 'Mylstar', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["usvsthem"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'usagi-yasei-no-topai-online-v2-04j', + 'Usagi: Yasei no Topai Online (v2.04J)', + 'Taito Corporation/Warashi', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["usagiol"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'uts-20', + 'UTS-20', + 'Sperry Univac', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["uts20"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unisys/univac.cpp"]}'::jsonb + ), + ( + 'uvi-compu-game', + 'UVI Compu-Game', + 'Orbit Electronics', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["orbituvi"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["arcadia/arcadia.cpp"]}'::jsonb + ), + ( + 'uzebox', + 'Uzebox', + 'Belogic', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["uzebox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/uzebox.cpp"]}'::jsonb + ), + ( + 'v-goal-soccer', + 'V Goal Soccer', + 'Tecmo', + 1994, + array['V Goal Soccer (Europe)'], + array['Sports'], + '{"mame":["vgoalsoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/gstriker.cpp"]}'::jsonb + ), + ( + 'v-dog', + 'V-Dog', + 'VRT', + null, + array['V-Dog (prototype, earlier)', 'V-Dog (prototype)'], + array['Arcade'], + '{"mame":["vdogdeme","vdogdemo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'v-liner-v0-7a', + 'V-Liner (v0.7a)', + 'Dyna / BrezzaSoft', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["vliner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'valkyrie-no-densetsu', + 'Valkyrie no Densetsu', + 'Namco', + 1989, + array['Valkyrie no Densetsu (Japan)'], + array['Arcade'], + '{"mame":["valkyrie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos2.cpp"]}'::jsonb + ), + ( + 'valtric', + 'Valtric', + 'NMK (Jaleco license)', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["valtric"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/argus.cpp"]}'::jsonb + ), + ( + 'vamf-x1-2', + 'Vamf x1/2', + 'Danbi / F2 System', + 1999, + array['Vamf x1/2 (Europe, version 1.1.0908)'], + array['Arcade'], + '{"mame":["vamphalf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'vampire', + 'Vampire', + 'Entertainment Enterprises, Ltd.', + 1983, + array['Vampire (prototype?)'], + array['Arcade'], + '{"mame":["vampire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vampire.cpp"]}'::jsonb + ), + ( + 'vampire-hunter-2-darkstalkers-revenge', + 'Vampire Hunter 2: Darkstalkers Revenge', + 'Capcom', + 1997, + array['Vampire Hunter 2: Darkstalkers Revenge (Japan 970929)'], + array['Fighting'], + '{"mame":["vhunt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'vampire-night', + 'Vampire Night', + 'Sega / Namco', + 2001, + array['Vampire Night (VPN3 Ver. B)'], + array['Arcade'], + '{"mame":["vnight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'vampire-savior-2-the-lord-of-vampire', + 'Vampire Savior 2: The Lord of Vampire', + 'Capcom', + 1997, + array['Vampire Savior 2: The Lord of Vampire (Japan 970913)'], + array['Arcade'], + '{"mame":["vsav2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'vampire-savior-the-lord-of-vampire', + 'Vampire Savior: The Lord of Vampire', + 'Capcom', + 1997, + array['Vampire Savior: The Lord of Vampire (Europe 970519)'], + array['Arcade'], + '{"mame":["vsav"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'van-van-car', + 'Van-Van Car', + 'Sanritsu', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["vanvan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'vandyke', + 'Vandyke', + 'UPL', + 1990, + array['Vandyke (Japan)'], + array['Arcade'], + '{"mame":["vandyke"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nmk/nmk16.cpp"]}'::jsonb + ), + ( + 'vanguard', + 'Vanguard', + 'SNK', + 1981, + array['Vanguard (SNK, set 1)'], + array['Arcade'], + '{"mame":["vanguard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk6502.cpp"]}'::jsonb + ), + ( + 'vanguard-ii', + 'Vanguard II', + 'SNK', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["vangrd2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'vapor-trail-hyper-offence-formation', + 'Vapor Trail - Hyper Offence Formation', + 'Data East Corporation', + 1989, + array['Vapor Trail - Hyper Offence Formation (World revision 1)'], + array['Arcade'], + '{"mame":["vaportra"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/vaportra.cpp"]}'::jsonb + ), + ( + 'vapor-trx-guts-jul-2-1998-main-jul-18-1998', + 'Vapor TRX (GUTS Jul 2 1998 / MAIN Jul 18 1998)', + 'Atari Games', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["vaportrx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'varia-metal', + 'Varia Metal', + 'Excellent System', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["vmetal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["metro/metro.cpp"]}'::jsonb + ), + ( + 'varth-operation-thunderstorm', + 'Varth: Operation Thunderstorm', + 'Capcom', + 1992, + array['Varth: Operation Thunderstorm (World 920714)'], + array['Arcade'], + '{"mame":["varth"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'vasara', + 'Vasara', + 'Visco', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["vasara"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'vasara-2', + 'Vasara 2', + 'Visco', + 2001, + array['Vasara 2 (set 1)'], + array['Arcade'], + '{"mame":["vasara2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/ssv.cpp"]}'::jsonb + ), + ( + 'vastar', + 'Vastar', + 'Orca (Sesame Japan license)', + 1983, + array['Vastar (set 1)'], + array['Arcade'], + '{"mame":["vastar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/vastar.cpp"]}'::jsonb + ), + ( + 'vax-11-785', + 'VAX-11/785', + 'Digital Equipment Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["vax785"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vax11.cpp"]}'::jsonb + ), + ( + 'vcs-80', + 'VCS-80', + 'Eckhard Schiller', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["vcs80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ddr/vcs80.cpp"]}'::jsonb + ), + ( + 'vdm-79322-cm-7233', + 'VDM 79322/CM 7233', + 'Mera-Elzab', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["vdm79322"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["mera/vdm7932x.cpp"]}'::jsonb + ), + ( + 'vector-1-dd-drive', + 'Vector 1+ (DD drive)', + 'Vector Graphic', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["vector1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["northstar/horizon.cpp"]}'::jsonb + ), + ( + 'vector-4', + 'Vector 4', + 'Vector Graphic', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["vector4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vectorgraphic/vector4.cpp"]}'::jsonb + ), + ( + 'vectrex', + 'Vectrex', + 'General Consumer Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["vectrex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["miltonbradley/vectrex.cpp"]}'::jsonb + ), + ( + 'vega', + 'Vega', + 'Olympia', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["vega"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["olympia/vega.cpp"]}'::jsonb + ), + ( + 'vegas-roulette', + 'Vegas Roulette', + 'World Game', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["vroulet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vroulet.cpp"]}'::jsonb + ), + ( + 'vendetta', + 'Vendetta', + 'Konami', + 1991, + array['Vendetta (World, 4 Players, ver. T)'], + array['Arcade'], + '{"mame":["vendetta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/vendetta.cpp"]}'::jsonb + ), + ( + 'venom-and-spider-man-separation-anxiety', + 'Venom & Spider-Man - Separation Anxiety', + 'bootleg', + 1997, + array['Venom & Spider-Man - Separation Anxiety (SNES bootleg)'], + array['Arcade'], + '{"mame":["venom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'venture', + 'Venture', + 'Exidy', + 1981, + array['Venture (version 5 set 1)'], + array['Arcade'], + '{"mame":["venture"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy.cpp"]}'::jsonb + ), + ( + 'venturer-25-games-25-in-1', + 'Venturer ''25 Games'' 25-in-1', + ' / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ventur25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'version-4', + 'Version 4', + 'Amcoe', + 2006, + array['Version 4 (Version 4.3R CGA)'], + array['Arcade'], + '{"mame":["version4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/sfbonus.cpp"]}'::jsonb + ), + ( + 'versus-net-soccer', + 'Versus Net Soccer', + 'Konami', + 1996, + array['Versus Net Soccer (ver EAD)'], + array['Sports'], + '{"mame":["vsnetscr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'vet-3000-brazil-v2-1', + 'VET 3000 (Brazil, v2.1)', + 'Tecnologia em Micro Sistemas', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["vet3000"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tms/vet3000.cpp"]}'::jsonb + ), + ( + 'vfx', + 'VFX', + 'Ensoniq', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["vfx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq5505.cpp"]}'::jsonb + ), + ( + 'vfx-sd', + 'VFX-SD', + 'Ensoniq', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["vfxsd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ensoniq/esq5505.cpp"]}'::jsonb + ), + ( + 'vg-pocket-vg-2000', + 'VG Pocket (VG-2000)', + 'Performance Designed Products / JungleTac', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["vgpocket"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'vg-pocket-mini-vg-1500', + 'VG Pocket Mini (VG-1500)', + 'Performance Designed Products / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vgpmini"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'vg-pocket-tablet-vg-4000', + 'VG Pocket Tablet (VG-4000)', + 'Performance Designed Products (licensed by Konami) / JungleTac', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["vgtablet"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'vg-5000', + 'VG-5000', + 'Philips', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["vg5k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/vg5k.cpp"]}'::jsonb + ), + ( + 'vibes-retro-pocket-gamer-240-in-1', + 'Vibes Retro Pocket Gamer 240-in-1', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vibes240"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'vicious-circle', + 'Vicious Circle', + 'Atari Games', + 1996, + array['Vicious Circle (prototype)'], + array['Arcade'], + '{"mame":["vcircle"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/jaguar.cpp"]}'::jsonb + ), + ( + 'victor-21', + 'Victor 21', + 'Subsino / Buffy', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["victor21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'victor-5', + 'Victor 5', + 'Subsino / Buffy', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["victor5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'victor-6-v2-3n', + 'Victor 6 (v2.3N)', + 'American Alpha', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["victor6"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino.cpp"]}'::jsonb + ), + ( + 'victor-9000', + 'Victor 9000', + 'Victor Business Products', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["victor9k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["act/victor9k.cpp"]}'::jsonb + ), + ( + 'victorious-nine', + 'Victorious Nine', + 'Taito', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["victnine"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/flstory.cpp"]}'::jsonb + ), + ( + 'victory', + 'Victory', + 'Exidy', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["victory"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/victory.cpp"]}'::jsonb + ), + ( + 'victory-comsoft', + 'Victory (Comsoft)', + 'Comsoft', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["victoryc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'victory-paradise-ii-v9', + 'Victory Paradise II (V9)', + 'Paradise', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["vparadis2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/umipoker.cpp"]}'::jsonb + ), + ( + 'victory-road', + 'Victory Road', + 'SNK', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["victroad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'victory-shoot', + 'Victory Shoot', + 'Taito Corporation', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["vicshoot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/vicshoot.cpp"]}'::jsonb + ), + ( + 'video-21', + 'Video 21', + 'Video Games GmbH', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["video21"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["videogames/video21.cpp"]}'::jsonb + ), + ( + 'video-carnival-1999-super-royal-card', + 'Video Carnival 1999 / Super Royal Card', + 'Electronic Projects', + null, + array['Video Carnival 1999 / Super Royal Card (Version 0.11)'], + array['Arcade'], + '{"mame":["vcarn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/spool99.cpp"]}'::jsonb + ), + ( + 'video-eight', + 'Video Eight', + 'Macro', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["videight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'video-eight-ball', + 'Video Eight Ball', + 'Century Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["8ball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'video-hustler', + 'Video Hustler', + 'Konami', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["hustler"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/scobra.cpp"]}'::jsonb + ), + ( + 'video-vince-and-the-game-factory', + 'Video Vince and the Game Factory', + 'Mylstar', + 1984, + array['Video Vince and the Game Factory (prototype)'], + array['Arcade'], + '{"mame":["vidvince"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'videoart', + 'VideoArt', + 'LJN Toys', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["videoart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videoart.cpp"]}'::jsonb + ), + ( + 'videobrain-familycomputer', + 'VideoBrain FamilyComputer', + 'VideoBrain Computer Company', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["vidbrain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vidbrain/vidbrain.cpp"]}'::jsonb + ), + ( + 'videopac-g7000', + 'Videopac G7000', + 'Philips', + 1978, + array['Videopac G7000 (Europe)'], + array['Arcade'], + '{"mame":["videopac"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/odyssey2.cpp"]}'::jsonb + ), + ( + 'videopac-g7400', + 'Videopac+ G7400', + 'Philips', + 1983, + array['Videopac+ G7400 (Europe)'], + array['Arcade'], + '{"mame":["videopacp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["philips/odyssey2.cpp"]}'::jsonb + ), + ( + 'viewpoint', + 'Viewpoint', + 'Sammy / Aicom', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["viewpoin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'viewpoint-122', + 'Viewpoint 122', + 'ADDS', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["vp122"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["citoh/cit220.cpp"]}'::jsonb + ), + ( + 'vigilante', + 'Vigilante', + 'Irem', + 1988, + array['Vigilante (World, Rev E)'], + array['Arcade'], + '{"mame":["vigilant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/vigilant.cpp"]}'::jsonb + ), + ( + 'viking-treasure', + 'Viking Treasure', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vikingt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/tasman.cpp"]}'::jsonb + ), + ( + 'vimana', + 'Vimana', + 'Toaplan', + 1991, + array['Vimana (World, rev A)'], + array['Arcade'], + '{"mame":["vimana"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/toaplan1.cpp"]}'::jsonb + ), + ( + 'vindicators', + 'Vindicators', + 'Atari Games', + 1988, + array['Vindicators (rev 5)'], + array['Arcade'], + '{"mame":["vindictr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/vindictr.cpp"]}'::jsonb + ), + ( + 'vindicators-part-ii', + 'Vindicators Part II', + 'Atari Games', + 1988, + array['Vindicators Part II (rev 3)'], + array['Arcade'], + '{"mame":["vindctr2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/gauntlet.cpp"]}'::jsonb + ), + ( + 'vintage-gamer-240-in-1', + 'Vintage Gamer 240-in-1', + 'Typo', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["typo240"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt32.cpp"]}'::jsonb + ), + ( + 'vintage-keys-classic-analog-keyboards', + 'Vintage Keys Classic Analog Keyboards', + 'E-mu Systems', + 1993, + '{}'::text[], + array['Classic'], + '{"mame":["vintkeys"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["emusys/emu68k.cpp"]}'::jsonb + ), + ( + 'violence-fight', + 'Violence Fight', + 'Taito Corporation Japan', + 1989, + array['Violence Fight (World)'], + array['Arcade'], + '{"mame":["viofight"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_b.cpp"]}'::jsonb + ), + ( + 'violent-storm', + 'Violent Storm', + 'Konami', + 1993, + array['Violent Storm (ver EAC)'], + array['Arcade'], + '{"mame":["viostorm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/mystwarr.cpp"]}'::jsonb + ), + ( + 'vip-novag', + 'VIP (Novag)', + 'Novag Industries / Intelligent Heuristic Programming', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["nvip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/vip.cpp"]}'::jsonb + ), + ( + 'viper', + 'Viper', + 'Leland Corporation', + 1988, + array['Viper (rev 3)'], + array['Arcade'], + '{"mame":["viper"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'viper-phase-1', + 'Viper Phase 1', + 'Seibu Kaihatsu', + 1995, + array['Viper Phase 1 (New Version, World)'], + array['Arcade'], + '{"mame":["viprp1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/seibuspi.cpp"]}'::jsonb + ), + ( + 'virtua-athletics-virtua-athlete-gds-0019', + 'Virtua Athletics / Virtua Athlete (GDS-0019)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["vathlete"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-bowling', + 'Virtua Bowling', + 'IGS', + 1996, + array['Virtua Bowling (World, V101XCM)'], + array['Sports'], + '{"mame":["vbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs011.cpp"]}'::jsonb + ), + ( + 'virtua-cop', + 'Virtua Cop', + 'Sega', + 1994, + array['Virtua Cop (Revision B)'], + array['Light gun'], + '{"mame":["vcop"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'virtua-cop-2', + 'Virtua Cop 2', + 'Sega', + 1995, + '{}'::text[], + array['Light gun'], + '{"mame":["vcop2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'virtua-cop-3-gdx-0003b', + 'Virtua Cop 3 (GDX-0003B)', + 'Sega', + 2003, + array['Virtua Cop 3 (Rev B) (GDX-0003B)'], + array['Light gun'], + '{"mame":["vcop3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'virtua-fighter', + 'Virtua Fighter', + 'Sega', + 1993, + '{}'::text[], + array['Fighting'], + '{"mame":["vf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model1.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-2', + 'Virtua Fighter 2', + 'Sega', + 1994, + array['Virtua Fighter 2 (Version 2.1)'], + array['Fighting'], + '{"mame":["vf2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-3', + 'Virtua Fighter 3', + 'Sega', + 1996, + array['Virtua Fighter 3 (Revision D)'], + array['Fighting'], + '{"mame":["vf3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-4', + 'Virtua Fighter 4', + 'Sega', + 2002, + array['Virtua Fighter 4 (World)'], + array['Fighting'], + '{"mame":["vf4cart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-4-version-c-gds-0012c', + 'Virtua Fighter 4 Version C (GDS-0012C)', + 'Sega', + 2001, + '{}'::text[], + array['Fighting'], + '{"mame":["vf4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-4-evolution', + 'Virtua Fighter 4: Evolution', + 'Sega', + 2002, + array['Virtua Fighter 4: Evolution (World)'], + array['Fighting'], + '{"mame":["vf4evoct"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-4-evolution-gds-0024c', + 'Virtua Fighter 4: Evolution (GDS-0024C)', + 'Sega', + 2002, + array['Virtua Fighter 4: Evolution (Version B) (Japan) (GDS-0024C)'], + array['Fighting'], + '{"mame":["vf4evo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-4-final-tuned-gds-0036f', + 'Virtua Fighter 4: Final Tuned (GDS-0036F)', + 'Sega', + 2004, + array['Virtua Fighter 4: Final Tuned (Ver. B) (GDS-0036F)'], + array['Fighting'], + '{"mame":["vf4tuned"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-5-export', + 'Virtua Fighter 5 (Export)', + 'Sega', + 2005, + '{}'::text[], + array['Fighting'], + '{"mame":["vf5"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-kids-juet-960319-v0-000', + 'Virtua Fighter Kids (JUET 960319 V0.000)', + 'Sega', + 1996, + '{}'::text[], + array['Fighting'], + '{"mame":["vfkids"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'virtua-fighter-remix-juetbkal-950428-v1-000', + 'Virtua Fighter Remix (JUETBKAL 950428 V1.000)', + 'Sega', + 1995, + '{}'::text[], + array['Fighting'], + '{"mame":["vfremix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'virtua-golf-dynamic-golf-gds-0009a', + 'Virtua Golf / Dynamic Golf (GDS-0009A)', + 'Sega', + 2001, + array['Virtua Golf / Dynamic Golf (Rev A) (GDS-0009A)'], + array['Sports'], + '{"mame":["dygolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-nba', + 'Virtua NBA', + 'Sega', + 2000, + array['Virtua NBA (USA)'], + array['Arcade'], + '{"mame":["virnba"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-racing', + 'Virtua Racing', + 'Sega', + 1992, + '{}'::text[], + array['Racing'], + '{"mame":["vr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model1.cpp"]}'::jsonb + ), + ( + 'virtua-striker', + 'Virtua Striker', + 'Sega', + 1994, + array['Virtua Striker (Revision A)'], + array['Arcade'], + '{"mame":["vstriker"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2', + 'Virtua Striker 2', + 'Sega', + 1997, + array['Virtua Striker 2 (Step 2.0, Export, USA)'], + array['Arcade'], + '{"mame":["vs2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2-98-step-2-0', + 'Virtua Striker 2 ''98 (Step 2.0)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["vs298"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2-99-1', + 'Virtua Striker 2 ''99.1', + 'Sega', + 1998, + array['Virtua Striker 2 ''99.1 (Export, USA, Revision B)'], + array['Arcade'], + '{"mame":["vs2v991"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model3.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2-ver-2000', + 'Virtua Striker 2 Ver. 2000', + 'Sega', + 1999, + array['Virtua Striker 2 Ver. 2000 (Rev C)'], + array['Arcade'], + '{"mame":["vs2_2k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2002-export-gdt-0002', + 'Virtua Striker 2002 (Export) (GDT-0002)', + 'Sega / Amusement Vision', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["vs2002ex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2002-gdt-0001', + 'Virtua Striker 2002 (GDT-0001)', + 'Sega / Amusement Vision', + 2002, + array['Virtua Striker 2002 (Japan) (GDT-0001)'], + array['Arcade'], + '{"mame":["vs2002j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-striker-2002-type-3-gdt-0012', + 'Virtua Striker 2002 (Type 3) (GDT-0012)', + 'Sega / Amusement Vision', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["vs2002t3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-striker-3', + 'Virtua Striker 3', + 'Amusement Vision / Sega', + 2001, + array['Virtua Striker 3 (World, Rev B)'], + array['Arcade'], + '{"mame":["vstrik3c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-striker-3-gds-0006', + 'Virtua Striker 3 (GDS-0006)', + 'Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["vstrik3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-striker-4-gdt-0013e', + 'Virtua Striker 4 (GDT-0013E)', + 'Sega', + 2005, + array['Virtua Striker 4 (Japan, Rev E) (GDT-0013E)'], + array['Arcade'], + '{"mame":["vs4j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-striker-4-gdt-0015a', + 'Virtua Striker 4 (GDT-0015A)', + 'Sega', + 2005, + array['Virtua Striker 4 (Export, Rev A) (GDT-0015A)'], + array['Arcade'], + '{"mame":["vs4"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-striker-4-ver-2006-export-gdt-0021', + 'Virtua Striker 4 Ver.2006 (Export) (GDT-0021)', + 'Sega', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["vs42k6ex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-striker-4-ver-2006-gdt-0020d', + 'Virtua Striker 4 Ver.2006 (GDT-0020D)', + 'Sega', + 2006, + array['Virtua Striker 4 Ver.2006 (Japan, Rev D) (GDT-0020D)'], + array['Arcade'], + '{"mame":["vs42006"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/triforce.cpp"]}'::jsonb + ), + ( + 'virtua-tennis-power-smash', + 'Virtua Tennis / Power Smash', + 'Sega', + 1999, + '{}'::text[], + array['Sports'], + '{"mame":["vtennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-tennis-power-smash-gds-0011', + 'Virtua Tennis / Power Smash (GDS-0011)', + 'Sega', + 2001, + '{}'::text[], + array['Sports'], + '{"mame":["vtennisg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-tennis-2-power-smash-2', + 'Virtua Tennis 2 / Power Smash 2', + 'Sega', + 2001, + array['Virtua Tennis 2 / Power Smash 2 (Rev A)'], + array['Sports'], + '{"mame":["vtenis2c"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-tennis-2-power-smash-2-gds-0015a', + 'Virtua Tennis 2 / Power Smash 2 (GDS-0015A)', + 'Sega', + 2001, + array['Virtua Tennis 2 / Power Smash 2 (Rev A) (GDS-0015A)'], + array['Sports'], + '{"mame":["vtennis2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'virtua-tennis-3', + 'Virtua Tennis 3', + 'Sega', + 2006, + array['Virtua Tennis 3 (Japan)'], + array['Sports'], + '{"mame":["vtennis3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/lindbergh.cpp"]}'::jsonb + ), + ( + 'virtual-boy', + 'Virtual Boy', + 'Nintendo', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["vboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vboy.cpp"]}'::jsonb + ), + ( + 'virtual-combat', + 'Virtual Combat', + 'VR8 Inc.', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["vcombat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vcombat.cpp"]}'::jsonb + ), + ( + 'virtual-football', + 'Virtual Football', + '', + null, + array['Virtual Football (with 3 bonus games)'], + array['Sports'], + '{"mame":["vfootbal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'virtual-ping-pong-protocol', + 'Virtual Ping Pong (Protocol)', + 'Protocol', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["protpp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'virtual-pool', + 'Virtual Pool', + 'Incredible Technologies', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["virtpool"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/iteagle.cpp"]}'::jsonb + ), + ( + 'virtual-tv-ping-pong', + 'Virtual TV Ping Pong', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vtvppong"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'virtual-tv-soccer', + 'Virtual TV Soccer', + '', + null, + '{}'::text[], + array['Sports'], + '{"mame":["vtvsocr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_clone.cpp"]}'::jsonb + ), + ( + 'virus-a', + 'Virus A', + 'Access', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["virusa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["access/acvirus.cpp"]}'::jsonb + ), + ( + 'virus-b', + 'Virus B', + 'Access', + 1999, + array['Virus B (Ver. T)'], + array['Arcade'], + '{"mame":["virusb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["access/acvirus.cpp"]}'::jsonb + ), + ( + 'virus-c', + 'Virus C', + 'Access', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["virusc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["access/acvirus.cpp"]}'::jsonb + ), + ( + 'virus-classic', + 'Virus Classic', + 'Access', + 2004, + '{}'::text[], + array['Classic'], + '{"mame":["viruscl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["access/acvirus.cpp"]}'::jsonb + ), + ( + 'virus-rack', + 'Virus Rack', + 'Access', + 2001, + array['Virus Rack (Ver. T)'], + array['Arcade'], + '{"mame":["virusrck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["access/acvirus.cpp"]}'::jsonb + ), + ( + 'virus-rack-xl', + 'Virus Rack XL', + 'Access', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["virusrckxl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["access/acvirus.cpp"]}'::jsonb + ), + ( + 'vision-quest', + 'Vision Quest', + 'Kramer Manufacturing / Nova Productions Ltd.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["visnqust"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/cops.cpp"]}'::jsonb + ), + ( + 'visual-100', + 'Visual 100', + 'Visual Technology', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["v100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["visual/v100.cpp"]}'::jsonb + ), + ( + 'visual-102', + 'Visual 102', + 'Visual Technology', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["v102"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["visual/v102.cpp"]}'::jsonb + ), + ( + 'visual-1050', + 'Visual 1050', + 'Visual Technology Inc', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["v1050"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["visual/v1050.cpp"]}'::jsonb + ), + ( + 'visual-50', + 'Visual 50', + 'Visual Technology', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["visual50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["visual/v50.cpp"]}'::jsonb + ), + ( + 'visual-550', + 'Visual 550', + 'Visual Technology', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["v550"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["visual/v550.cpp"]}'::jsonb + ), + ( + 'visual-memory-unit', + 'Visual Memory Unit', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["svmu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/svmu.cpp"]}'::jsonb + ), + ( + 'vivid-dolls', + 'Vivid Dolls', + 'Visco', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["vivdolls"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/aleck64.cpp"]}'::jsonb + ), + ( + 'vixen', + 'Vixen', + 'Osborne', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["vixen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["osborne/vixen.cpp"]}'::jsonb + ), + ( + 'vj-visual-and-music-slap', + 'VJ: Visual & Music Slap', + 'Jaleco', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["vjslap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/tetrisp2.cpp"]}'::jsonb + ), + ( + 'vk100-gigi', + 'VK100 ''GIGI''', + 'Digital Equipment Corporation', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["vk100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vk100.cpp"]}'::jsonb + ), + ( + 'vl1', + 'VL1', + 'Yamaha', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["vl1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymvl1.cpp"]}'::jsonb + ), + ( + 'vl70-m', + 'VL70-m', + 'Yamaha', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["vl70"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yamaha/ymvl70.cpp"]}'::jsonb + ), + ( + 'vlc-nevada', + 'VLC Nevada', + 'VLC Inc.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["nevada"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vlc.cpp"]}'::jsonb + ), + ( + 'vocalizer-1000', + 'Vocalizer 1000', + 'Breakaway Music Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["vocalizer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vocalizer.cpp"]}'::jsonb + ), + ( + 'voice-chess-challenger', + 'Voice Chess Challenger', + 'Fidelity Electronics', + 1979, + array['Voice Chess Challenger (set 1)'], + array['Arcade'], + '{"mame":["vcc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/vcc.cpp"]}'::jsonb + ), + ( + 'voice-sensory-chess-challenger', + 'Voice Sensory Chess Challenger', + 'Fidelity Electronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["vsc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["fidelity/vsc.cpp"]}'::jsonb + ), + ( + 'volfied', + 'Volfied', + 'Taito Corporation Japan', + 1989, + array['Volfied (World, rev 1)'], + array['Arcade'], + '{"mame":["volfied"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/volfied.cpp"]}'::jsonb + ), + ( + 'volley-ball-playchoice-10', + 'Volley Ball (PlayChoice-10)', + 'Nintendo', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_vball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'volly-ramtek', + 'Volly (Ramtek)', + 'Ramtek', + 1973, + '{}'::text[], + array['Arcade'], + '{"mame":["vollyrmt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/ramtek.cpp"]}'::jsonb + ), + ( + 'voltage-fighter-gowcaizer-choujin-gakuen-gowcaizer', + 'Voltage Fighter - Gowcaizer / Choujin Gakuen Gowcaizer', + 'Technos Japan', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["gowcaizr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'vortex', + 'Vortex', + 'Zilec Electronics', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["vortex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'vrt-vt-sdk-boxing-demo-for-vt03-pic32', + 'VRT VT SDK ''Boxing'' (Demo for VT03 Pic32)', + 'VRT', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vtboxing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vrt-vt-sdk-pink-jelly-vt03-demo', + 'VRT VT SDK ''Pink Jelly'' (VT03 Demo)', + 'VRT / Simmer Technology Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["pinkjelly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vrt-vt-sdk-vt03-sound-test-sound-generator-fmdemo', + 'VRT VT SDK ''VT03 Sound Test'' (Sound Generator FMDemo)', + 'VRT', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vtsndtest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vs-block-breaker', + 'VS Block Breaker', + 'Kaneko / Mediaworks', + 1997, + array['VS Block Breaker (Europe)'], + array['Arcade'], + '{"mame":["vblokbrk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/suprnova.cpp"]}'::jsonb + ), + ( + 'vs-gong-fight', + 'VS Gong Fight', + 'Kaneko', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["vsgongf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/tsamurai.cpp"]}'::jsonb + ), + ( + 'vs-maxx-15-in-1', + 'Vs Maxx 15-in-1', + 'Senario / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmaxx15"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'vs-maxx-17-in-1', + 'Vs Maxx 17-in-1', + 'Senario / JungleTac', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmaxx17"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vs-maxx-25-in-1-sh6578-hardware', + 'Vs Maxx 25-in-1 (SH6578 hardware)', + 'Senario / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmaxx25"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'vs-maxx-25-in-1-vt03-hardware', + 'Vs Maxx 25-in-1 (VT03 hardware)', + 'Senario / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmax25v"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vs-maxx-tx-2-50-in-1', + 'Vs Maxx TX-2 50-in-1', + 'Senario / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmaxtx2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt09.cpp"]}'::jsonb + ), + ( + 'vs-maxx-video-extreme-50-in-1-with-speed-racer-and-snood', + 'Vs Maxx Video Extreme 50-in-1 (with Speed Racer and Snood)', + 'Senario / JungleTac', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmaxxvd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vs-maxx-wireless-77-in-1', + 'Vs Maxx Wireless 77-in-1', + 'Senario / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["vsmaxx77"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'vs-atari-r-b-i-baseball', + 'Vs. Atari R.B.I. Baseball', + 'Namco', + 1986, + array['Vs. Atari R.B.I. Baseball (set 1)'], + array['Sports'], + '{"mame":["rbibb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-balloon-fight', + 'Vs. Balloon Fight', + 'Nintendo', + 1984, + array['Vs. Balloon Fight (set BF4 A-3)'], + array['Arcade'], + '{"mame":["balonfgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-baseball', + 'Vs. Baseball', + 'Nintendo of America', + 1984, + array['Vs. Baseball (US, set BA E-1)'], + array['Sports'], + '{"mame":["vsbball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-battle-city', + 'Vs. Battle City', + 'Namco', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["btlecity"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-castlevania', + 'Vs. Castlevania', + 'Konami', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["cstlevna"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-clu-clu-land', + 'Vs. Clu Clu Land', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["cluclu"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-dr-mario', + 'Vs. Dr. Mario', + 'Nintendo', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["drmario"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-duck-hunt', + 'Vs. Duck Hunt', + 'Nintendo', + 1985, + array['Vs. Duck Hunt (set DH3 E)'], + array['Arcade'], + '{"mame":["duckhunt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-excitebike', + 'Vs. Excitebike', + 'Nintendo', + 1984, + array['Vs. Excitebike (set EB4-3 E)'], + array['Arcade'], + '{"mame":["excitebk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-freedom-force', + 'Vs. Freedom Force', + 'Sunsoft', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["vsfdf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-gradius', + 'Vs. Gradius', + 'Konami', + 1986, + array['Vs. Gradius (US, set GR E)'], + array['Shooter'], + '{"mame":["vsgradus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-gumshoe', + 'Vs. Gumshoe', + 'Nintendo', + 1986, + array['Vs. Gumshoe (set GM5)'], + array['Arcade'], + '{"mame":["vsgshoe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-hogan-s-alley', + 'Vs. Hogan''s Alley', + 'Nintendo', + 1985, + array['Vs. Hogan''s Alley (set HA4-1 E-1)'], + array['Arcade'], + '{"mame":["hogalley"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-hot-smash', + 'Vs. Hot Smash', + 'Kaneko / Taito', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["hotsmash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/superqix.cpp"]}'::jsonb + ), + ( + 'vs-ice-climber', + 'Vs. Ice Climber', + 'Nintendo', + 1984, + array['Vs. Ice Climber (set IC4-4 B-1)'], + array['Arcade'], + '{"mame":["iceclimb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-ice-climber-dual', + 'Vs. Ice Climber Dual', + 'Nintendo', + 1984, + array['Vs. Ice Climber Dual (set IC4-4 A-1)'], + array['Arcade'], + '{"mame":["iceclmrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-janshi-brandnew-stars', + 'Vs. Janshi Brandnew Stars', + 'Jaleco', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["bnstars1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/bnstars.cpp"]}'::jsonb + ), + ( + 'vs-mach-rider', + 'Vs. Mach Rider', + 'Nintendo', + 1985, + array['Vs. Mach Rider (Endurance Course Version)'], + array['Arcade'], + '{"mame":["nvs_machrider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-mighty-bomb-jack', + 'Vs. Mighty Bomb Jack', + 'Tecmo', + 1986, + array['Vs. Mighty Bomb Jack (Japan)'], + array['Arcade'], + '{"mame":["nvs_mightybj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-ninja-jajamaru-kun', + 'Vs. Ninja Jajamaru Kun', + 'Jaleco', + 1985, + array['Vs. Ninja Jajamaru Kun (Japan)'], + array['Arcade'], + '{"mame":["jajamaru"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-platoon', + 'Vs. Platoon', + 'Ocean Software Limited', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["nvs_platoon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-raid-on-bungeling-bay-rd4-2-b', + 'Vs. Raid on Bungeling Bay (RD4-2 B)', + 'Nintendo / Broderbund Software Inc.', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["bnglngby"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-slalom', + 'Vs. Slalom', + 'Rare Coin-It Inc.', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["vsslalom"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-soccer', + 'Vs. Soccer', + 'Nintendo', + 1985, + array['Vs. Soccer (set SC4-2 A)'], + array['Sports'], + '{"mame":["vssoccer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-star-luster', + 'Vs. Star Luster', + 'Namco', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["starlstr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-stroke-and-match-golf', + 'Vs. Stroke & Match Golf', + 'Nintendo', + 1984, + array['Vs. Stroke & Match Golf (Men Version, set GF4-2 F)'], + array['Sports'], + '{"mame":["smgolf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-super-captain-flag', + 'Vs. Super Captain Flag', + 'Jaleco', + 1993, + array['Vs. Super Captain Flag (Japan)'], + array['Arcade'], + '{"mame":["vscaptfl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'vs-super-mario-bros', + 'Vs. Super Mario Bros.', + 'Nintendo', + 1986, + array['Vs. Super Mario Bros. (set SM4-4 E)'], + array['Platformer'], + '{"mame":["suprmrio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-super-skykid', + 'Vs. Super SkyKid', + 'Namco', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["vsskykid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-super-xevious', + 'Vs. Super Xevious', + 'Namco', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["supxevs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-t-k-o-boxing', + 'Vs. T.K.O. Boxing', + 'Namco / Data East USA', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["tkoboxng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-tennis', + 'Vs. Tennis', + 'Nintendo Co., Ltd.', + 1984, + array['Vs. Tennis (Japan/USA, set TE A-3)'], + array['Sports'], + '{"mame":["vstennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-tetris', + 'Vs. Tetris', + 'Academysoft-Elorg', + 1987, + '{}'::text[], + array['Puzzle'], + '{"mame":["vstetris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-the-goonies', + 'Vs. The Goonies', + 'Konami', + 1986, + array['Vs. The Goonies (set E)'], + array['Arcade'], + '{"mame":["goonies"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-top-gun', + 'Vs. Top Gun', + 'Konami', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["topgun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vs-wrecking-crew', + 'Vs. Wrecking Crew', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["wrecking"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vsnes.cpp"]}'::jsonb + ), + ( + 'vt100', + 'VT100', + 'Digital Equipment Corporation', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["vt100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt100.cpp"]}'::jsonb + ), + ( + 'vt102', + 'VT102', + 'Digital Equipment Corporation', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["vt102"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt100.cpp"]}'::jsonb + ), + ( + 'vt220', + 'VT220', + 'Digital Equipment Corporation', + 1983, + array['VT220 (Version 2.3)'], + array['Arcade'], + '{"mame":["vt220"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt220.cpp"]}'::jsonb + ), + ( + 'vt240', + 'VT240', + 'Digital Equipment Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["vt240"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt240.cpp"]}'::jsonb + ), + ( + 'vt320', + 'VT320', + 'Digital Equipment Corporation', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["vt320"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt320.cpp"]}'::jsonb + ), + ( + 'vt330', + 'VT330', + 'Digital Equipment Corporation', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["vt330"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt320.cpp"]}'::jsonb + ), + ( + 'vt52', + 'VT52', + 'ADI', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["adi_vt52"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/adi_vt52.cpp"]}'::jsonb + ), + ( + 'vt62-decscope', + 'VT62 DECscope', + 'Digital Equipment Corporation', + 1978, + '{}'::text[], + array['Arcade'], + '{"mame":["vt62"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dec/vt62.cpp"]}'::jsonb + ), + ( + 'vulcan-venture-new', + 'Vulcan Venture (new)', + 'Konami', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["vulcan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/twin16.cpp"]}'::jsonb + ), + ( + 'vulgus', + 'Vulgus', + 'Capcom', + 1984, + array['Vulgus (set 1)'], + array['Arcade'], + '{"mame":["vulgus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/vulgus.cpp"]}'::jsonb + ), + ( + 'vx600-programmable-matrix-synthesizer', + 'VX600 Programmable Matrix Synthesizer', + 'Akai', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["vx600"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["akai/akaivx600.cpp"]}'::jsonb + ), + ( + 'wacko', + 'Wacko', + 'Bally Midway', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wacko"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr.cpp"]}'::jsonb + ), + ( + 'wai-wai-jockey', + 'Wai Wai Jockey', + 'Konami', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["waijockey"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/quickpick5.cpp"]}'::jsonb + ), + ( + 'wai-wai-jockey-gate-in', + 'Wai Wai Jockey Gate-In!', + 'Jaleco / Casio', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["wwjgtin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/lasso.cpp"]}'::jsonb + ), + ( + 'waiwai-drive', + 'WaiWai Drive', + 'MOSS / Sammy', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["waidrive"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/dc_atomiswave.cpp"]}'::jsonb + ), + ( + 'wakeng', + 'Wakeng', + 'Sealy', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["wakeng"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/menghong.cpp"]}'::jsonb + ), + ( + 'waku-waku-7', + 'Waku Waku 7', + 'Sunsoft', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["wakuwak7"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'waku-waku-anpanman', + 'Waku Waku Anpanman', + 'Sega', + 1992, + array['Waku Waku Anpanman (Rev A)'], + array['Arcade'], + '{"mame":["wwanpanm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'waku-waku-doubutsu-land-tonton', + 'Waku Waku Doubutsu Land TonTon', + 'Success / Taiyo Jidoki', + 1987, + array['Waku Waku Doubutsu Land TonTon (Japan)'], + array['Arcade'], + '{"mame":["tonton"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["success/tonton.cpp"]}'::jsonb + ), + ( + 'waku-waku-jumbo', + 'Waku Waku Jumbo', + 'Sega', + 1990, + array['Waku Waku Jumbo (Rev A)'], + array['Arcade'], + '{"mame":["wwjumbo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'waku-waku-marine', + 'Waku Waku Marine', + 'Sega', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["wwmarine"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'waku-waku-pajero', + 'Waku Waku Pajero', + 'Sega', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["wwpajero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'waku-waku-shinkansen-j-971031-v0-002', + 'Waku Waku Shinkansen (J 971031 V0.002)', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["wwshin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'waku-waku-sonic-patrol-car', + 'Waku Waku Sonic Patrol Car', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["soniccar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'waku-waku-thomas', + 'Waku Waku Thomas', + 'Banpresto', + 1993, + array['Waku Waku Thomas (Japan)'], + array['Arcade'], + '{"mame":["wwthomas"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'waku-waku-ultraman-racing', + 'Waku Waku Ultraman Racing', + 'Sega', + 1996, + '{}'::text[], + array['Racing'], + '{"mame":["ultracin"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'wall-crash', + 'Wall Crash', + 'Midcoin', + 1984, + array['Wall Crash (set 1)'], + array['Arcade'], + '{"mame":["wallc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midcoin/wallc.cpp"]}'::jsonb + ), + ( + 'wall-street', + 'Wall Street', + 'Century Electronics', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wallst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/cvs.cpp"]}'::jsonb + ), + ( + 'wally-wo-sagase-fd1094-317-0197b', + 'Wally wo Sagase! (FD1094 317-0197B)', + 'Sega', + 1992, + array['Wally wo Sagase! (rev B, Japan, 2 players) (FD1094 317-0197B)'], + array['Arcade'], + '{"mame":["wwallyj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas18.cpp"]}'::jsonb + ), + ( + 'wan-wan-dash', + 'Wan Wan Dash', + 'Amuzy Corporation', + 2007, + array['Wan Wan Dash (Japan, ver 1.01)'], + array['Arcade'], + '{"mame":["wwdash"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'wang-professional-computer', + 'Wang Professional Computer', + 'Wang Laboratories', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["wangpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wang/wangpc.cpp"]}'::jsonb + ), + ( + 'wangan-midnight', + 'Wangan Midnight', + 'Namco', + 2001, + array['Wangan Midnight (WMN1 Ver. A)'], + array['Arcade'], + '{"mame":["wanganmd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'wangan-midnight-maximum-tune-gdx-0009b', + 'Wangan Midnight Maximum Tune (GDX-0009B)', + 'Namco', + 2004, + array['Wangan Midnight Maximum Tune (Export, Rev B) (GDX-0009B)'], + array['Arcade'], + '{"mame":["wangmid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'wangan-midnight-maximum-tune-2-gdx-0016a', + 'Wangan Midnight Maximum Tune 2 (GDX-0016A)', + 'Namco', + 2005, + array['Wangan Midnight Maximum Tune 2 (Export, Rev A) (GDX-0016A)'], + array['Arcade'], + '{"mame":["wangmid2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/chihiro.cpp"]}'::jsonb + ), + ( + 'wangan-midnight-r', + 'Wangan Midnight R', + 'Namco', + 2002, + array['Wangan Midnight R (WMR1 Ver. A)'], + array['Arcade'], + '{"mame":["wanganmr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'wanikko-punch', + 'Wanikko Punch', + 'Amuzy Corporation', + 2005, + array['Wanikko Punch (Japan, ver 1.20)'], + array['Arcade'], + '{"mame":["wanpunch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'wanpaku-fishing', + 'Wanpaku Fishing', + 'Sega', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["wfishing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'wanpaku-pirates', + 'Wanpaku Pirates', + 'Amuzy Corporation', + 2006, + array['Wanpaku Pirates (Japan, ver 1.00)'], + array['Arcade'], + '{"mame":["wanpakup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'wanpaku-safari-j-981109-v1-000', + 'Wanpaku Safari (J 981109 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["wasafari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'wanted', + 'Wanted', + 'Sigma Enterprises Inc.', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["wanted"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/marineb.cpp"]}'::jsonb + ), + ( + 'wanted-sega', + 'Wanted (Sega)', + 'Sega', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wantsega"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/vicdual.cpp"]}'::jsonb + ), + ( + 'wantouchable', + 'Wantouchable', + 'Sammy', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["wantouch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sigma/sammymdl.cpp"]}'::jsonb + ), + ( + 'war-gods-hd-10-09-1996-dual-resolution', + 'War Gods (HD 10/09/1996 - Dual Resolution)', + 'Midway', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["wargods"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midvunit.cpp"]}'::jsonb + ), + ( + 'war-iii-cherry-best', + 'War III Cherry Best', + 'S.B.E.', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["war3cb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'war-mission-wm-04-06-87', + 'War Mission (WM 04/06/87)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_war"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'war-of-aero-project-meiou', + 'War of Aero - Project MEIOU', + 'Yang Cheng', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["wrofaero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'war-of-the-bugs-or-monsterous-manouvers-in-a-mushroom-maze', + 'War of the Bugs or Monsterous Manouvers in a Mushroom Maze', + 'Armenia / Food and Fun Corp', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["warofbug"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'war-of-the-worlds', + 'War of the Worlds', + 'Cinematronics', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["wotw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'war-final-assault-guts-1-3-apr-20-1999-game-apr-20-1999', + 'War: Final Assault (GUTS 1.3 Apr 20 1999, GAME Apr 20 1999)', + 'Atari Games', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["warfa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/vegas.cpp"]}'::jsonb + ), + ( + 'warai-no-hana-tenshi', + 'Warai no Hana Tenshi', + 'Dynax', + 1991, + array['Warai no Hana Tenshi (Japan)'], + array['Arcade'], + '{"mame":["warahana"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/dynax.cpp"]}'::jsonb + ), + ( + 'wardner', + 'Wardner', + 'Toaplan / Taito Corporation Japan', + 1987, + array['Wardner (World)'], + array['Arcade'], + '{"mame":["wardner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/wardner.cpp"]}'::jsonb + ), + ( + 'warlords', + 'Warlords', + 'Atari', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["warlords"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/centiped.cpp"]}'::jsonb + ), + ( + 'warp-and-warp', + 'Warp & Warp', + 'Namco', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["warpwarp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/warpwarp.cpp"]}'::jsonb + ), + ( + 'warp-speed', + 'Warp Speed', + 'Meadows Games, Inc.', + null, + array['Warp Speed (prototype)'], + array['Arcade'], + '{"mame":["warpsped"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["meadows/warpsped.cpp"]}'::jsonb + ), + ( + 'warp-1', + 'Warp-1', + 'Sun Electronics', + 1979, + array['Warp-1 (Japan)'], + array['Arcade'], + '{"mame":["warp1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sunelectronics/dai3wksi.cpp"]}'::jsonb + ), + ( + 'warrior', + 'Warrior', + 'Vectorbeam', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["warrior"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/cinemat.cpp"]}'::jsonb + ), + ( + 'warrior-blade-rastan-saga-episode-iii', + 'Warrior Blade - Rastan Saga Episode III', + 'Taito Corporation', + 1991, + array['Warrior Blade - Rastan Saga Episode III (Japan)'], + array['Platformer'], + '{"mame":["warriorb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/warriorb.cpp"]}'::jsonb + ), + ( + 'warriors-of-fate', + 'Warriors of Fate', + 'Capcom', + 1992, + array['Warriors of Fate (World 921031)'], + array['Arcade'], + '{"mame":["wof"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'watashiha-suzumechan', + 'Watashiha Suzumechan', + 'Dyna Electronics', + 1986, + array['Watashiha Suzumechan (Japan)'], + array['Arcade'], + '{"mame":["suzume"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dynax/royalmah.cpp"]}'::jsonb + ), + ( + 'water-balls', + 'Water Balls', + 'ABM', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["watrball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/blmbycar.cpp"]}'::jsonb + ), + ( + 'water-match-315-5064', + 'Water Match (315-5064)', + 'Sega', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["wmatch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'water-ski', + 'Water Ski', + 'Taito Corporation', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["waterski"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'water-nymph', + 'Water-Nymph', + 'Subsino', + 1996, + array['Water-Nymph (Ver. 1.4)'], + array['Arcade'], + '{"mame":["wtrnymph"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'wave-runner', + 'Wave Runner', + 'Sega', + 1996, + array['Wave Runner (Japan, Revision A)'], + array['Arcade'], + '{"mame":["waverunr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'wave-runner-gp', + 'Wave Runner GP', + 'CRI / Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["wrungp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'wavestation-a-d', + 'WaveStation A/D', + 'Korg', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["korgwsad"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgws.cpp"]}'::jsonb + ), + ( + 'wavestation-ex', + 'WaveStation EX', + 'Korg', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["korgwsex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgws.cpp"]}'::jsonb + ), + ( + 'wavestation-sr', + 'WaveStation SR', + 'Korg', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["korgwssr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgws.cpp"]}'::jsonb + ), + ( + 'wayne-gretzky-s-3d-hockey', + 'Wayne Gretzky''s 3D Hockey', + 'Atari Games', + 1996, + array['Wayne Gretzky''s 3D Hockey (ver 1.3)'], + array['Arcade'], + '{"mame":["wg3dh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/seattle.cpp"]}'::jsonb + ), + ( + 'weatherstar-4000', + 'WeatherSTAR 4000', + 'Applied Microelectronics Institute/The Weather Channel', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["wxstar4k"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amirix/wxstar4000.cpp"]}'::jsonb + ), + ( + 'wec-le-mans-24-v2-01', + 'WEC Le Mans 24 (v2.01)', + 'Konami', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["wecleman"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/wecleman.cpp"]}'::jsonb + ), + ( + 'wedding-rhapsody-gx624-jaa', + 'Wedding Rhapsody (GX624 JAA)', + 'Konami', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["weddingr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigv.cpp"]}'::jsonb + ), + ( + 'welltris', + 'Welltris', + 'Video System Co.', + 1991, + array['Welltris (World?, 2 players)'], + array['Arcade'], + '{"mame":["welltris"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["vsystem/welltris.cpp"]}'::jsonb + ), + ( + 'western-dream-gold', + 'Western Dream Gold', + 'Sega', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["westdrmg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'western-venture', + 'Western Venture', + 'Astro Corp.', + 2008, + array['Western Venture (Ver. AA.02.D)'], + array['Arcade'], + '{"mame":["westvent"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'wgp-2-real-race-feeling', + 'WGP 2: Real Race Feeling', + 'Taito Corporation Japan', + 1990, + array['WGP 2: Real Race Feeling (World)'], + array['Arcade'], + '{"mame":["wgp2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/wgp.cpp"]}'::jsonb + ), + ( + 'wgp-real-race-feeling', + 'WGP: Real Race Feeling', + 'Taito Corporation Japan', + 1989, + array['WGP: Real Race Feeling (World)'], + array['Arcade'], + '{"mame":["wgp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/wgp.cpp"]}'::jsonb + ), + ( + 'wheel-of-fortune', + 'Wheel Of Fortune', + 'GameTek', + 1989, + array['Wheel Of Fortune (set 1)'], + array['Arcade'], + '{"mame":["wfortune"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech8.cpp"]}'::jsonb + ), + ( + 'wheel-of-fortune-p517-v16-english', + 'Wheel of Fortune (P517 V16, English)', + 'Coinmaster-Gaming, Ltd.', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["wof_v16"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/coinmvga.cpp"]}'::jsonb + ), + ( + 'wheels-and-fire', + 'Wheels & Fire', + 'TCH', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["wheelfir"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tch/wheelfir.cpp"]}'::jsonb + ), + ( + 'wheels-ii', + 'Wheels II', + 'Midway', + 1975, + '{}'::text[], + array['Arcade'], + '{"mame":["wheelsii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwayttl.cpp"]}'::jsonb + ), + ( + 'wheels-runner', + 'Wheels Runner', + 'International Games', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["wheelrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["edevices/fantland.cpp"]}'::jsonb + ), + ( + 'white-russia', + 'White Russia', + 'Konami', + null, + array['White Russia (Konami Endeavour, Russia)'], + array['Arcade'], + '{"mame":["whiterus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'who-dunit', + 'Who Dunit', + 'Exidy', + 1988, + array['Who Dunit (version 9.0)'], + array['Arcade'], + '{"mame":["whodunit"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'who-dunnit', + 'Who Dunnit', + 'WMS', + 1999, + array['Who Dunnit (Russian)'], + array['Arcade'], + '{"mame":["wdun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'who-shot-johnny-rock-v1-6', + 'Who Shot Johnny Rock? (v1.6)', + 'American Laser Games', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["wsjr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'wicat-system-150', + 'Wicat System 150', + 'Millennium Systems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wicat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wicat/wicat.cpp"]}'::jsonb + ), + ( + 'wicked-witch', + 'Wicked Witch', + 'Astro Corp.', + 2005, + array['Wicked Witch (Ver. AA.01.A)'], + array['Arcade'], + '{"mame":["wwitch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'wiggie-waggie', + 'Wiggie Waggie', + 'Promat', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["wiggie"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'wikid-joystick-14-in-1', + 'Wikid Joystick 14-in-1', + 'Advance Bright Ltd. / JungleTac', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["ablwikid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_sh6578.cpp"]}'::jsonb + ), + ( + 'wild-arrow-color-standard-v4-8', + 'Wild Arrow (color, Standard V4.8)', + 'Meyco Games, Inc.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wldarrow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/meyc8080.cpp"]}'::jsonb + ), + ( + 'wild-card-olympic-games-v2-0', + 'Wild Card (Olympic Games, v2.0)', + 'Olympic Video Gaming PTY LTD', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["olym65wc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'wild-cat', + 'Wild Cat', + 'Excel', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["wcat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'wild-cat-3', + 'Wild Cat 3', + 'E.A.I.', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["wcat3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'wild-fang-tecmo-knight', + 'Wild Fang / Tecmo Knight', + 'Tecmo', + 1989, + array['Wild Fang / Tecmo Knight (World?)'], + array['Arcade'], + '{"mame":["wildfang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["tecmo/gaiden.cpp"]}'::jsonb + ), + ( + 'wild-gunman-playchoice-10', + 'Wild Gunman (PlayChoice-10)', + 'Nintendo', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_wgnmn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'wild-guns', + 'Wild Guns', + 'bootleg', + 1996, + array['Wild Guns (SNES bootleg)'], + array['Arcade'], + '{"mame":["wldgunsb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/snesb.cpp"]}'::jsonb + ), + ( + 'wild-pilot', + 'Wild Pilot', + 'Jaleco', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["wildplt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/cischeat.cpp"]}'::jsonb + ), + ( + 'wild-riders', + 'Wild Riders', + 'Wow Entertainment / Sega', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["wldrider"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'wild-streak', + 'Wild Streak', + 'WMS', + 2000, + array['Wild Streak (Russian)'], + array['Arcade'], + '{"mame":["wldstrek"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'wild-thing-atronic', + 'Wild Thing (Atronic)', + 'Atronic', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["atrwild"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/atronic.cpp"]}'::jsonb + ), + ( + 'wild-west-c-o-w-boys-of-moo-mesa', + 'Wild West C.O.W.-Boys of Moo Mesa', + 'Konami', + 1992, + array['Wild West C.O.W.-Boys of Moo Mesa (ver EAB)'], + array['Arcade'], + '{"mame":["moomesa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/moo.cpp"]}'::jsonb + ), + ( + 'wild-western', + 'Wild Western', + 'Taito Corporation', + 1982, + array['Wild Western (set 1)'], + array['Arcade'], + '{"mame":["wwestern"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitosj.cpp"]}'::jsonb + ), + ( + 'wild-witch', + 'Wild Witch', + 'Video Klein', + 2001, + array['Wild Witch (Export, 6T/12T ver 1.84A)'], + array['Arcade'], + '{"mame":["wldwitch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'williams-multigame', + 'Williams Multigame', + 'hack (Clay Cowgill)', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["wmg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/wmg.cpp"]}'::jsonb + ), + ( + 'willow', + 'Willow', + 'Capcom', + 1989, + array['Willow (World)'], + array['Arcade'], + '{"mame":["willow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps1.cpp"]}'::jsonb + ), + ( + 'wily-tower', + 'Wily Tower', + 'Irem', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["wilytowr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m63.cpp"]}'::jsonb + ), + ( + 'win-cherry', + 'Win Cherry', + 'Videostar', + 2001, + array['Win Cherry (ver 0.16 - 19990219)'], + array['Arcade'], + '{"mame":["wcherry"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/goldstar.cpp"]}'::jsonb + ), + ( + 'win-lose-or-draw-senario', + 'Win, Lose or Draw (Senario)', + 'Senario', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["senwld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'winding-heat-eaa-euro-v2-11', + 'Winding Heat (EAA, Euro v2.11)', + 'Konami', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["windheat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/zr107.cpp"]}'::jsonb + ), + ( + 'windjammer-021216', + 'Windjammer (021216)', + 'Igrosoft', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["windjamr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/multfish.cpp"]}'::jsonb + ), + ( + 'windjammers-flying-power-disc', + 'Windjammers / Flying Power Disc', + 'Data East Corporation', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["wjammers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'wing-force', + 'Wing Force', + 'A.I (Atlus license)', + 1993, + array['Wing Force (Japan, prototype)'], + array['Arcade'], + '{"mame":["wingforc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/kaneko16.cpp"]}'::jsonb + ), + ( + 'wing-shooting-championship-v2-00', + 'Wing Shooting Championship V2.00', + 'Sammy USA Corporation', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["wschamp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta2.cpp"]}'::jsonb + ), + ( + 'wing-war', + 'Wing War', + 'Sega', + 1994, + array['Wing War (World)'], + array['Arcade'], + '{"mame":["wingwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model1.cpp"]}'::jsonb + ), + ( + 'wink', + 'Wink', + 'Midcoin', + 1985, + array['Wink (set 1)'], + array['Arcade'], + '{"mame":["wink"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midcoin/wink.cpp"]}'::jsonb + ), + ( + 'winner', + 'Winner', + 'Videos A A', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["winner"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/videosaa.cpp"]}'::jsonb + ), + ( + 'winner-s-wheel-magical-spot', + 'Winner''s Wheel - Magical Spot', + 'Sega', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["wwmspot"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/winclub.cpp"]}'::jsonb + ), + ( + 'winners-circle-82', + 'Winners Circle (82)', + 'Corona Co, LTD.', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["winner82"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/corona.cpp"]}'::jsonb + ), + ( + 'winning-bid-english', + 'Winning Bid (English)', + 'WMS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["winbid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'winning-run', + 'Winning Run', + 'Namco', + 1988, + array['Winning Run (World) (89/06/06, Ver.09)'], + array['Arcade'], + '{"mame":["winrun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21.cpp"]}'::jsonb + ), + ( + 'winning-run-91', + 'Winning Run ''91', + 'Namco', + 1991, + array['Winning Run ''91 (Japan) (1991/03/05, Main Ver 1.0, Sub Ver 1.0)'], + array['Arcade'], + '{"mame":["winrun91"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21.cpp"]}'::jsonb + ), + ( + 'winning-run-suzuka-grand-prix', + 'Winning Run Suzuka Grand Prix', + 'Namco', + 1989, + array['Winning Run Suzuka Grand Prix (Japan) (89/12/03, Ver.02)'], + array['Arcade'], + '{"mame":["winrungp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos21.cpp"]}'::jsonb + ), + ( + 'winning-spike', + 'Winning Spike', + 'Konami', + 1997, + array['Winning Spike (ver EAA)'], + array['Arcade'], + '{"mame":["winspike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konamigx.cpp"]}'::jsonb + ), + ( + 'winter-heat-juet-971012-v1-000', + 'Winter Heat (JUET 971012 V1.000)', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["winterht"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'wipeout-ramtek', + 'Wipeout (Ramtek)', + 'Ramtek', + 1974, + '{}'::text[], + array['Arcade'], + '{"mame":["wipeormt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ramtek/ramtek.cpp"]}'::jsonb + ), + ( + 'wiping', + 'Wiping', + 'Nichibutsu', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["wiping"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/wiping.cpp"]}'::jsonb + ), + ( + 'wireless-tennis-pal-play-vision', + 'Wireless Tennis (PAL, Play Vision)', + 'Macro Winners (Play Vision license)', + 2004, + '{}'::text[], + array['Sports'], + '{"mame":["sporztn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'wit-s', + 'Wit''s', + 'Athena (Visco license)', + 1989, + array['Wit''s (Japan)'], + array['Arcade'], + '{"mame":["wits"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'witch', + 'Witch', + 'Vic Tokai (Excellent System license)', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["witch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/witch.cpp"]}'::jsonb + ), + ( + 'witch-card', + 'Witch Card', + 'Video Klein?', + 1991, + array['Witch Card (Video Klein CPU box, set 1)'], + array['Arcade'], + '{"mame":["witchcrd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'witch-game', + 'Witch Game', + 'Video Klein', + 1991, + array['Witch Game (Video Klein, set 1)'], + array['Arcade'], + '{"mame":["witchgme"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'witch-jack', + 'Witch Jack', + 'Video Klein', + 1996, + array['Witch Jack (Export, 6T/12T ver 0.87-89)'], + array['Arcade'], + '{"mame":["wtchjack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'witch-royal', + 'Witch Royal', + 'Video Klein', + null, + array['Witch Royal (Export version 2.1)'], + array['Arcade'], + '{"mame":["witchryl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["funworld/funworld.cpp"]}'::jsonb + ), + ( + 'witch-strike', + 'Witch Strike', + 'Video Klein', + 1992, + array['Witch Strike (Export, 6T/12T ver 1.01A)'], + array['Arcade'], + '{"mame":["wstrike"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'witch-up-and-down', + 'Witch Up & Down', + 'Video Klein', + 1998, + array['Witch Up & Down (Export, 6T/12T ver 1.02)'], + array['Arcade'], + '{"mame":["wupndown"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/goldnpkr.cpp"]}'::jsonb + ), + ( + 'wivern-wings', + 'Wivern Wings', + 'SemiCom', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["wivernwg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'wiz', + 'Wiz', + 'Seibu Kaihatsu', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["wiz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/wiz.cpp"]}'::jsonb + ), + ( + 'wiz-warz', + 'Wiz Warz', + 'Mylstar', + 1984, + array['Wiz Warz (prototype)'], + array['Arcade'], + '{"mame":["wizwarz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gottlieb/gottlieb.cpp"]}'::jsonb + ), + ( + 'wizard', + 'Wizard', + 'A.A.', + 1999, + array['Wizard (Ver 1.0)'], + array['Arcade'], + '{"mame":["wizard"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'wizard-fire', + 'Wizard Fire', + 'Data East Corporation', + 1992, + array['Wizard Fire (Over Sea v2.1)'], + array['Arcade'], + '{"mame":["wizdfire"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/rohga.cpp"]}'::jsonb + ), + ( + 'wizard-of-wor', + 'Wizard of Wor', + 'Dave Nutting Associates / Midway', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["wow"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/astrocde.cpp"]}'::jsonb + ), + ( + 'wizard-oz-750', + 'Wizard OZ-750', + 'Sharp', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["oz750"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["intel/rex6000.cpp"]}'::jsonb + ), + ( + 'wk-1800', + 'WK-1800', + 'Casio', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["wk1800"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/wk1800.cpp"]}'::jsonb + ), + ( + 'wms-setup-clear-chips', + 'WMS SetUp/Clear Chips', + 'WMS', + null, + array['WMS SetUp/Clear Chips (set 1)'], + array['Arcade'], + '{"mame":["wms"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'wolf-pack', + 'Wolf Pack', + 'Atari', + 1978, + array['Wolf Pack (prototype)'], + array['Arcade'], + '{"mame":["wolfpack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/wolfpack.cpp"]}'::jsonb + ), + ( + 'won-tertainment-happy-channel', + 'Won! Tertainment Happy Channel', + 'Capcom / Tomy', + 2008, + array['Won! Tertainment Happy Channel (Ver.1.00E 2008/02/21)'], + array['Arcade'], + '{"mame":["wontame"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/alien.cpp"]}'::jsonb + ), + ( + 'won-tertainment-music-channel-v1-00', + 'Won!Tertainment Music Channel (v1.00)', + 'Capcom', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["wontmuch"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitotx.cpp"]}'::jsonb + ), + ( + 'wonder-boy', + 'Wonder Boy', + 'Escape (Sega license)', + 1986, + array['Wonder Boy (set 1, 315-5177)'], + array['Arcade'], + '{"mame":["wboy"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'wonder-boy-iii-monster-lair-8751-317-0098', + 'Wonder Boy III - Monster Lair (8751 317-0098)', + 'Sega / Westone', + 1988, + array['Wonder Boy III - Monster Lair (set 6, World, System 16B) (8751 317-0098)'], + array['Arcade'], + '{"mame":["wb3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'wonder-boy-monster-land', + 'Wonder Boy: Monster Land', + 'Sega / Westone', + 1987, + array['Wonder Boy: Monster Land (Japan New Ver., MC-8123, 317-0043)'], + array['Arcade'], + '{"mame":["wbml"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/system1.cpp"]}'::jsonb + ), + ( + 'wonder-circus', + 'Wonder Circus', + 'Cobra', + null, + array['Wonder Circus (Japan, v1.1.1)'], + array['Arcade'], + '{"mame":["wcircus"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["excellent/lastbank.cpp"]}'::jsonb + ), + ( + 'wonder-league-96', + 'Wonder League ''96', + 'SemiCom', + 1996, + array['Wonder League ''96 (Korea)'], + array['Arcade'], + '{"mame":["wondl96"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'wonder-league-star-sok-magicball-fighting', + 'Wonder League Star - Sok-Magicball Fighting', + 'Mijin', + 1995, + array['Wonder League Star - Sok-Magicball Fighting (Korea)'], + array['Arcade'], + '{"mame":["wlstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/tumbleb.cpp"]}'::jsonb + ), + ( + 'wonder-momo', + 'Wonder Momo', + 'Namco', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["wndrmomo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos86.cpp"]}'::jsonb + ), + ( + 'wonder-planet', + 'Wonder Planet', + 'Data East Corporation', + 1987, + array['Wonder Planet (Japan)'], + array['Arcade'], + '{"mame":["wndrplnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/karnov.cpp"]}'::jsonb + ), + ( + 'wonder-stick', + 'Wonder Stick', + 'Yun Sung', + null, + array['Wonder Stick (set 1)'], + array['Arcade'], + '{"mame":["wondstck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["yunsung/nmg5.cpp"]}'::jsonb + ), + ( + 'wonderswan', + 'WonderSwan', + 'Bandai', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["wswan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bandai/wswan.cpp"]}'::jsonb + ), + ( + 'woodpecker', + 'Woodpecker', + 'Amenip (Palcom Queen River)', + 1981, + array['Woodpecker (set 1)'], + array['Arcade'], + '{"mame":["woodpeck"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["pacman/pacman.cpp"]}'::jsonb + ), + ( + 'world-adventure', + 'World Adventure', + 'Logic / F2 System', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["worldadv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'world-beach-volley', + 'World Beach Volley', + 'Playmark', + 1995, + array['World Beach Volley (set 1, PIC16C57 audio CPU)'], + array['Arcade'], + '{"mame":["wbeachvl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["playmark/playmark.cpp"]}'::jsonb + ), + ( + 'world-championship-soccer-mega-tech', + 'World Championship Soccer (Mega-Tech)', + 'Sega', + 1989, + '{}'::text[], + array['Sports'], + '{"mame":["mt_wcsoc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'world-class-bowling-v1-66', + 'World Class Bowling (v1.66)', + 'Incredible Technologies', + 1995, + '{}'::text[], + array['Sports'], + '{"mame":["wcbowl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["itech/itech32.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-european-clubs-2004-2005-cdv-10013', + 'World Club Champion Football European Clubs 2004-2005 (CDV-10013)', + 'Sega', + 2005, + array['World Club Champion Football European Clubs 2004-2005 (Asia) (CDV-10013)'], + array['Sports'], + '{"mame":["wccf310j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-european-clubs-2004-2005-ver-1-2-cdv-10021', + 'World Club Champion Football European Clubs 2004-2005 Ver.1.2 (CDV-10021)', + 'Sega', + 2006, + array['World Club Champion Football European Clubs 2004-2005 Ver.1.2 (Japan) (CDV-10021)'], + array['Sports'], + '{"mame":["wccf341j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-european-clubs-2004-2005-ver-3-22-export-cdv-10015p', + 'World Club Champion Football European Clubs 2004-2005 Ver.3.22 (Export) (CDV-10015P)', + 'Sega', + 2005, + '{}'::text[], + array['Sports'], + '{"mame":["wccf322e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-european-clubs-2005-2006-cdv-10025', + 'World Club Champion Football European Clubs 2005-2006 (CDV-10025)', + 'Sega', + 2006, + array['World Club Champion Football European Clubs 2005-2006 (Japan) (CDV-10025)'], + array['Sports'], + '{"mame":["wccf400j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-european-clubs-2005-2006-export-cdv-10027', + 'World Club Champion Football European Clubs 2005-2006 (Export) (CDV-10027)', + 'Sega', + 2006, + '{}'::text[], + array['Sports'], + '{"mame":["wccf420e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-serie-a-2001-2002-dimm-firm-ver-3-03-cdp-10003', + 'World Club Champion Football Serie A 2001-2002 DIMM FIRM Ver.3.03 (CDP-10003)', + 'Hitmaker / Sega', + 2002, + '{}'::text[], + array['Sports'], + '{"mame":["wccf1dup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-serie-a-2001-2002-ver-2-cdp-10001c', + 'World Club Champion Football Serie A 2001-2002 Ver.2 (CDP-10001C)', + 'Hitmaker / Sega', + 2003, + array['World Club Champion Football Serie A 2001-2002 Ver.2 (Japan) (CDP-10001C)'], + array['Sports'], + '{"mame":["wccf116"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-serie-a-2002-2003-drive-checker-cdv-10007', + 'World Club Champion Football Serie A 2002-2003 Drive Checker (CDV-10007)', + 'Hitmaker / Sega', + 2004, + '{}'::text[], + array['Sports'], + '{"mame":["wccf2chk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-serie-a-2002-2003-ver-2-12-italy-cdv-10002', + 'World Club Champion Football Serie A 2002-2003 Ver.2.12 (Italy) (CDV-10002)', + 'Hitmaker / Sega', + 2004, + '{}'::text[], + array['Sports'], + '{"mame":["wccf212e"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-club-champion-football-serie-a-2002-2003-ver-2-34-cdv-10008', + 'World Club Champion Football Serie A 2002-2003 Ver.2.34 (CDV-10008)', + 'Hitmaker / Sega', + 2004, + array['World Club Champion Football Serie A 2002-2003 Ver.2.34 (Japan) (CDV-10008)'], + array['Sports'], + '{"mame":["wccf234j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-combat', + 'World Combat', + 'Konami', + 2002, + array['World Combat (ver AAD:B)'], + array['Arcade'], + '{"mame":["wcombat"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'world-cup', + 'World Cup', + 'Nazionale Elettronica', + 2001, + array['World Cup (Ver 1.5)'], + array['Arcade'], + '{"mame":["wcup"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgamble.cpp"]}'::jsonb + ), + ( + 'world-cup-volley-95', + 'World Cup Volley ''95', + 'Data East Corporation', + 1995, + array['World Cup Volley ''95 (Asia v1.0)'], + array['Arcade'], + '{"mame":["wcvol95"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/deco156.cpp"]}'::jsonb + ), + ( + 'world-darts', + 'World Darts', + 'Arcadia Systems', + 1987, + array['World Darts (Arcadia, set 1, V 2.1)'], + array['Arcade'], + '{"mame":["ar_dart"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'world-heroes-alm-005', + 'World Heroes (ALM-005)', + 'Alpha Denshi Co.', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["wh1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'world-heroes-2-alm-006-alh-006', + 'World Heroes 2 (ALM-006 ~ ALH-006)', + 'ADK', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["wh2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'world-heroes-2-jet-adm-007-adh-007', + 'World Heroes 2 Jet (ADM-007 ~ ADH-007)', + 'ADK / SNK', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["wh2j"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'world-heroes-perfect', + 'World Heroes Perfect', + 'ADK / SNK', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["whp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'world-kicks', + 'World Kicks', + 'Namco', + 2000, + array['World Kicks (World, WK2 Ver.A)'], + array['Arcade'], + '{"mame":["wldkicks"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-pk-soccer-v2', + 'World PK Soccer V2', + 'Jaleco', + 1996, + array['World PK Soccer V2 (ver 1.1)'], + array['Sports'], + '{"mame":["wpksocv2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["jaleco/ms32.cpp"]}'::jsonb + ), + ( + 'world-rally-2-twin-racing', + 'World Rally 2: Twin Racing', + 'Gaelco', + 1995, + array['World Rally 2: Twin Racing (version 20-07, checksum B1B8)'], + array['Racing'], + '{"mame":["wrally2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco2.cpp"]}'::jsonb + ), + ( + 'world-rally-championship', + 'World Rally Championship', + 'Gaelco', + 1993, + array['World Rally Championship (version 1.0, checksum DE0D, 08 Nov 1993)'], + array['Arcade'], + '{"mame":["wrally"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/wrally.cpp"]}'::jsonb + ), + ( + 'world-series-99-super-major-league-99', + 'World Series 99 / Super Major League 99', + 'Sega', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["smlg99"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-series-baseball-super-major-league-gds-0010', + 'World Series Baseball / Super Major League (GDS-0010)', + 'Sega', + 2001, + '{}'::text[], + array['Sports'], + '{"mame":["wsbbgd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'world-series-the-season', + 'World Series: The Season', + 'Cinematronics', + 1985, + array['World Series: The Season (rev 1)'], + array['Arcade'], + '{"mame":["wseries"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'world-soccer-finals', + 'World Soccer Finals', + 'Leland Corporation', + 1990, + array['World Soccer Finals (rev 4)'], + array['Sports'], + '{"mame":["wsf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/leland.cpp"]}'::jsonb + ), + ( + 'world-soccer-tv-game-10-in-1-pal', + 'World Soccer TV Game 10-in-1 (PAL)', + 'Taikee', + null, + '{}'::text[], + array['Sports'], + '{"mame":["wldsoctv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'world-soccer-winning-eleven-arcade-game-2003', + 'World Soccer Winning Eleven Arcade Game 2003', + 'Konami', + 2003, + '{}'::text[], + array['Sports'], + '{"mame":["wswe2k3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython.cpp"]}'::jsonb + ), + ( + 'world-soccer-winning-eleven-arcade-game-style', + 'World Soccer Winning Eleven Arcade Game Style', + 'Konami', + 2002, + '{}'::text[], + array['Sports'], + '{"mame":["wswe"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/kpython.cpp"]}'::jsonb + ), + ( + 'world-tennis', + 'World Tennis', + 'bootleg', + 1982, + '{}'::text[], + array['Sports'], + '{"mame":["wtennis"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'world-trophy-soccer-arcadia-v-3-0', + 'World Trophy Soccer (Arcadia, V 3.0)', + 'Arcadia Systems', + 1989, + '{}'::text[], + array['Sports'], + '{"mame":["ar_socc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'world-wars', + 'World Wars', + 'SNK', + 1987, + array['World Wars (World?)'], + array['Arcade'], + '{"mame":["worldwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/snk.cpp"]}'::jsonb + ), + ( + 'wow-new-fantasia-explicit', + 'WOW New Fantasia (Explicit)', + 'Comad', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["wownfant"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'wow-wireless-gaming-pal', + 'Wow Wireless Gaming (PAL)', + 'Wow', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["wowwg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'wren-executive', + 'Wren Executive', + 'Thorn EMI', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["wren"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wren.cpp"]}'::jsonb + ), + ( + 'wrestle-war-8751-317-0103', + 'Wrestle War (8751 317-0103)', + 'Sega', + 1989, + array['Wrestle War (set 3, World) (8751 317-0103)'], + array['Arcade'], + '{"mame":["wrestwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segas16b.cpp"]}'::jsonb + ), + ( + 'wrestle-war-mega-tech', + 'Wrestle War (Mega-Tech)', + 'Sega', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["mt_wwar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/megatech.cpp"]}'::jsonb + ), + ( + 'wu-lin-zhengba', + 'Wu Lin Zhengba', + 'Huang Yeh', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["wlzb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["huangyeh/hy-9802.cpp"]}'::jsonb + ), + ( + 'wu-lu-fuxing', + 'Wu Lu Fuxing', + 'Huang Yeh', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["wlfx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["huangyeh/hy-9802.cpp"]}'::jsonb + ), + ( + 'wully-bully', + 'Wully Bully', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["wulybuly"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/crystal.cpp"]}'::jsonb + ), + ( + 'wwf-royal-rumble', + 'WWF Royal Rumble', + 'Sega', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["wwfroyal"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'wwf-superstars', + 'WWF Superstars', + 'Technos Japan', + 1989, + array['WWF Superstars (Europe)'], + array['Arcade'], + '{"mame":["wwfsstar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/wwfsstar.cpp"]}'::jsonb + ), + ( + 'wwf-wrestlefest', + 'WWF WrestleFest', + 'Technos Japan (Tecmo license)', + 1991, + array['WWF WrestleFest (World)'], + array['Arcade'], + '{"mame":["wwfwfest"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/ddragon3.cpp"]}'::jsonb + ), + ( + 'wwf-wrestlemania', + 'WWF: Wrestlemania', + 'Midway', + 1995, + array['WWF: Wrestlemania (rev 1.30 08/10/95)'], + array['Arcade'], + '{"mame":["wwfmania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midwunit.cpp"]}'::jsonb + ), + ( + 'wy-100', + 'WY-100', + 'Wyse Technology', + 1981, + '{}'::text[], + array['Arcade'], + '{"mame":["wy100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy100.cpp"]}'::jsonb + ), + ( + 'wy-120-v1-4', + 'WY-120 (v1.4)', + 'Wyse Technology', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["wy120"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy150.cpp"]}'::jsonb + ), + ( + 'wy-150-v1-0', + 'WY-150 (v1.0)', + 'Wyse Technology', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["wy150"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy150.cpp"]}'::jsonb + ), + ( + 'wy-160-v1-7', + 'WY-160 (v1.7)', + 'Wyse Technology', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["wy160"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy150.cpp"]}'::jsonb + ), + ( + 'wy-185es-v2-0', + 'WY-185ES (v2.0)', + 'Wyse Technology', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["wy185es"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy55.cpp"]}'::jsonb + ), + ( + 'wy-30-v1-8', + 'WY-30+ (v1.8)', + 'Wyse Technology', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["wy30p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy30p.cpp"]}'::jsonb + ), + ( + 'wy-325-v3-2', + 'WY-325 (v3.2)', + 'Wyse Technology', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["wy325"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy150.cpp"]}'::jsonb + ), + ( + 'wy-50', + 'WY-50', + 'Wyse Technology', + 1984, + array['WY-50 (Rev. E)'], + array['Arcade'], + '{"mame":["wy50"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy50.cpp"]}'::jsonb + ), + ( + 'wy-55-v2-1', + 'WY-55 (v2.1)', + 'Wyse Technology', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["wy55"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy55.cpp"]}'::jsonb + ), + ( + 'wy-60-rbfng2', + 'WY-60 (RBFNG2)', + 'Wyse Technology', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["wy60"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy60.cpp"]}'::jsonb + ), + ( + 'wy-65-v2-1', + 'WY-65 (v2.1)', + 'Wyse Technology', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["wy65"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy55.cpp"]}'::jsonb + ), + ( + 'wy-75', + 'WY-75', + 'Wyse Technology', + 1984, + array['WY-75 (Rev. H)'], + array['Arcade'], + '{"mame":["wy75"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy50.cpp"]}'::jsonb + ), + ( + 'wy-85', + 'WY-85', + 'Wyse Technology', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["wy85"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["wyse/wy85.cpp"]}'::jsonb + ), + ( + 'wyvern-f-0', + 'Wyvern F-0', + 'Taito Corporation', + 1985, + array['Wyvern F-0 (Rev 1)'], + array['Arcade'], + '{"mame":["wyvernf0"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/wyvernf0.cpp"]}'::jsonb + ), + ( + 'x-five-jokers', + 'X Five Jokers', + 'Electronic Projects', + null, + array['X Five Jokers (Version 1.12)'], + array['Arcade'], + '{"mame":["x5jokers"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl3.cpp"]}'::jsonb + ), + ( + 'x-multiply', + 'X Multiply', + 'Irem', + 1989, + array['X Multiply (World, M81 hardware)'], + array['Arcade'], + '{"mame":["xmultipl"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m72.cpp"]}'::jsonb + ), + ( + 'x-the-ball', + 'X the Ball', + 'Rare', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["xtheball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["rare/xtheball.cpp"]}'::jsonb + ), + ( + 'x-tom-3d', + 'X Tom 3D', + 'Andamiro / Jamie System Development', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["xtom3d"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xtom3d.cpp"]}'::jsonb + ), + ( + 'x-07', + 'X-07', + 'Canon', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["x07"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["canon/x07.cpp"]}'::jsonb + ), + ( + 'x-day-2', + 'X-Day 2', + 'Namco', + 1995, + array['X-Day 2 (Japan)'], + array['Arcade'], + '{"mame":["xday2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'x-men', + 'X-Men', + 'Konami', + 1992, + array['X-Men (4 Players ver EBA)'], + array['Beat em up'], + '{"mame":["xmen"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/xmen.cpp"]}'::jsonb + ), + ( + 'x-men-vs-street-fighter', + 'X-Men Vs. Street Fighter', + 'Capcom', + 1996, + array['X-Men Vs. Street Fighter (Europe 961004)'], + array['Fighting', 'Beat em up'], + '{"mame":["xmvsf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'x-men-children-of-the-atom', + 'X-Men: Children of the Atom', + 'Capcom', + 1994, + array['X-Men: Children of the Atom (Europe 950331)'], + array['Beat em up'], + '{"mame":["xmcota"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["capcom/cps2.cpp"]}'::jsonb + ), + ( + 'x-plan', + 'X-Plan', + 'Subsino', + 2006, + array['X-Plan (Ver. 101)'], + array['Arcade'], + '{"mame":["xplan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'x-train', + 'X-Train', + 'Subsino', + 1999, + array['X-Train (Ver. 1.3)'], + array['Arcade'], + '{"mame":["xtrain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'x-eye', + 'X''eye', + 'JVC', + 1993, + array['X''eye (USA, NTSC)'], + array['Arcade'], + '{"mame":["xeye"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/mdconsole.cpp"]}'::jsonb + ), + ( + 'x2222-final-debug', + 'X2222 (final debug?)', + 'Oriental Soft / Promat', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["x2222"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["promat/gstream.cpp"]}'::jsonb + ), + ( + 'x37', + 'X37', + 'Luxor', + 1985, + array['X37 (prototype)'], + array['Arcade'], + '{"mame":["x37"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["luxor/ds90.cpp"]}'::jsonb + ), + ( + 'xain-d-sleena', + 'Xain''d Sleena', + 'Technos Japan (Taito license)', + 1986, + array['Xain''d Sleena (World)'], + array['Arcade'], + '{"mame":["xsleena"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["technos/xain.cpp"]}'::jsonb + ), + ( + 'xain-d-sleena-sc-3-0-magnet-system', + 'Xain''d Sleena (SC 3.0, Magnet System)', + 'EFO SA / Cedar', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["mag_xain"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["efo/cedar_magnet.cpp"]}'::jsonb + ), + ( + 'xbox', + 'XBOX', + 'Microsoft', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["xbox"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["microsoft/xbox.cpp"]}'::jsonb + ), + ( + 'xds-19p', + 'XDS-19P', + 'Visual Technology', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["xds19p"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["visual/xds.cpp"]}'::jsonb + ), + ( + 'xenon-arcadia-v-2-3', + 'Xenon (Arcadia, V 2.3)', + 'Arcadia Systems', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["ar_xeon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/arsystems.cpp"]}'::jsonb + ), + ( + 'xenophobe', + 'Xenophobe', + 'Bally Midway', + 1987, + '{}'::text[], + array['Arcade'], + '{"mame":["xenophob"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/mcr68.cpp"]}'::jsonb + ), + ( + 'xerox-820-ii', + 'Xerox 820-II', + 'Xerox', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["x820ii"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["xerox/xerox820.cpp"]}'::jsonb + ), + ( + 'xevious-namco', + 'Xevious (Namco)', + 'Namco', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["xevious"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/galaga.cpp"]}'::jsonb + ), + ( + 'xevious-3d-g', + 'Xevious 3D/G', + 'Namco', + 1995, + array['Xevious 3D/G (World, XV32/VER.B)'], + array['Arcade'], + '{"mame":["xevi3dg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcos11.cpp"]}'::jsonb + ), + ( + 'xexex', + 'Xexex', + 'Konami', + 1991, + array['Xexex (ver EAA)'], + array['Arcade'], + '{"mame":["xexex"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/xexex.cpp"]}'::jsonb + ), + ( + 'xiaochou-jianianhua-s100cn', + 'Xiaochou Jianianhua (S100CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["xcjnh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'xiaoyao-dou-dizhu-v216cn', + 'Xiaoyao Dou Dizhu (V216CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["xyddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'xin-jin-huangguan-v400cn', + 'Xin Jin Huangguan (V400CN)', + 'IGS', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["xjinhuang"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'xing-wireless-interactive-tv-game-wi-tv-zone-48-in-1', + 'Xing Wireless Interactive TV Game ''Wi TV Zone'' 48-in-1', + 'Xing', + null, + array['Xing Wireless Interactive TV Game ''Wi TV Zone'' 48-in-1 (Europe, PAL)'], + array['Arcade'], + '{"mame":["xing48"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'xingyun-caishen', + 'Xingyun Caishen', + 'Huang Yeh', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["xycs"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["huangyeh/hy-268a.cpp"]}'::jsonb + ), + ( + 'xingyun-dou-dizhu', + 'Xingyun Dou Dizhu', + 'Herb Home', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["xyddzhh"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/bmcpokr.cpp"]}'::jsonb + ), + ( + 'xingyun-manguan', + 'Xingyun Manguan', + 'IGS', + 1996, + array['Xingyun Manguan (China, V651C, set 1)'], + array['Arcade'], + '{"mame":["xymg"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs011.cpp"]}'::jsonb + ), + ( + 'xingyun-pao-de-kuai-v106cn', + 'Xingyun Pao De Kuai (V106CN)', + 'IGS', + 2005, + '{}'::text[], + array['Arcade'], + '{"mame":["xypdk"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'xingyun-paomadi-super-v401cn', + 'Xingyun Paomadi Super (V401CN)', + 'IGS', + 2003, + '{}'::text[], + array['Arcade'], + '{"mame":["xypmd"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_68k_023vid.cpp"]}'::jsonb + ), + ( + 'xiyou-douniu-s110cn', + 'Xiyou Douniu (S110CN)', + 'IGS', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["xydn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'xm200-orchestra-module', + 'XM200 Orchestra Module', + 'Orla', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["xm200"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orla/xm200.cpp"]}'::jsonb + ), + ( + 'xor-world', + 'Xor World', + 'Gaelco', + 1990, + array['Xor World (different hardware, ver 1.1, checksum 3333BA, prototype)', 'Xor World (Modular System, prototype, set 1)', 'Xor World (ver 1.2, checksum DB5D0F, prototype)'], + array['Arcade'], + '{"mame":["xorwflat","xorwldms","xorworld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["gaelco/gaelco.cpp","gaelco/xorworld_ms.cpp","gaelco/xorworld.cpp"]}'::jsonb + ), + ( + 'xpander', + 'Xpander', + 'Oberheim', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["xpander"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["oberheim/xpander.cpp"]}'::jsonb + ), + ( + 'xtreme-rally-off-beat-racer', + 'Xtreme Rally / Off Beat Racer!', + 'SNK', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["xrally"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["snk/hng64.cpp"]}'::jsonb + ), + ( + 'xtrial-racing', + 'Xtrial Racing', + 'Konami', + 2002, + array['Xtrial Racing (ver JAB)'], + array['Racing'], + '{"mame":["xtrial"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/viper.cpp"]}'::jsonb + ), + ( + 'xx-mission', + 'XX Mission', + 'UPL', + 1986, + '{}'::text[], + array['Arcade'], + '{"mame":["xxmissio"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["upl/xxmissio.cpp"]}'::jsonb + ), + ( + 'xybots', + 'Xybots', + 'Atari Games', + 1987, + array['Xybots (rev 2)'], + array['Arcade'], + '{"mame":["xybots"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["atari/xybots.cpp"]}'::jsonb + ), + ( + 'xyonix', + 'Xyonix', + 'Philko', + 1989, + '{}'::text[], + array['Arcade'], + '{"mame":["xyonix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/xyonix.cpp"]}'::jsonb + ), + ( + 'y-unit-test-rom-v1-40', + 'Y-Unit Test ROM (v1.40)', + 'Midway', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["yunittst"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/midyunit.cpp"]}'::jsonb + ), + ( + 'yam-yam', + 'Yam! Yam!?', + 'Dooyong', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["yamyam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dooyong/gundealr.cpp"]}'::jsonb + ), + ( + 'yamaha-mixt-book-player-copera', + 'Yamaha Mixt Book Player Copera', + 'Yamaha / Sega', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["copera"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segapico.cpp"]}'::jsonb + ), + ( + 'yamato', + 'Yamato', + 'Sega', + 1983, + array['Yamato (set 1)'], + array['Arcade'], + '{"mame":["yamato"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nichibutsu/cclimber.cpp"]}'::jsonb + ), + ( + 'yataimura-kingyosukui', + 'Yataimura Kingyosukui', + 'Sega', + 2009, + array['Yataimura Kingyosukui (1-player, Japan, Ver 1.005)'], + array['Arcade'], + '{"mame":["kingyo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'yataimura-shateki', + 'Yataimura Shateki', + 'Sega', + 2010, + array['Yataimura Shateki (1-player, Japan, Ver 1.000)'], + array['Arcade'], + '{"mame":["shateki"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segasp.cpp"]}'::jsonb + ), + ( + 'yatterman-plus-j-981006-v1-000', + 'Yatterman Plus (J 981006 V1.000)', + 'Sega', + 1998, + '{}'::text[], + array['Arcade'], + '{"mame":["yattrmnp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'yes-no-sinri-tokimeki-chart', + 'Yes/No Sinri Tokimeki Chart', + 'Taito Corporation', + 1992, + '{}'::text[], + array['Arcade'], + '{"mame":["yesnoj"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taito_f2.cpp"]}'::jsonb + ), + ( + 'yie-ar-kung-fu', + 'Yie Ar Kung-Fu', + 'Konami', + 1985, + array['Yie Ar Kung-Fu (version I)'], + array['Arcade'], + '{"mame":["yiear"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/yiear.cpp"]}'::jsonb + ), + ( + 'ying-hua-lian-2-0', + 'Ying Hua Lian 2.0', + 'Subsino', + 1998, + array['Ying Hua Lian 2.0 (China, Ver. 1.02)'], + array['Arcade'], + '{"mame":["saklove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["subsino/subsino2.cpp"]}'::jsonb + ), + ( + 'yizhi-xiangqi', + 'Yizhi Xiangqi', + 'WHT', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["yizhix"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/whtm68k.cpp"]}'::jsonb + ), + ( + 'yo-noid-playchoice-10', + 'Yo! Noid (PlayChoice-10)', + 'Capcom USA (Nintendo of America license)', + 1990, + '{}'::text[], + array['Arcade'], + '{"mame":["pc_ynoid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/playch10.cpp"]}'::jsonb + ), + ( + 'yori-jori-kuk-kuk', + 'Yori Jori Kuk Kuk', + 'Golden Bell Entertainment', + 2002, + '{}'::text[], + array['Arcade'], + '{"mame":["yorijori"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/vamphalf.cpp"]}'::jsonb + ), + ( + 'yosaku-to-donbei', + 'Yosaku to Donbei', + 'Wing', + 1979, + array['Yosaku to Donbei (set 1)'], + array['Arcade'], + '{"mame":["yosakdon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midw8080/8080bw.cpp"]}'::jsonb + ), + ( + 'youjyuden', + 'Youjyuden', + 'Irem', + 1986, + array['Youjyuden (Japan)'], + array['Arcade'], + '{"mame":["youjyudn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["irem/m62.cpp"]}'::jsonb + ), + ( + 'yu-gi-oh-monster-capsule', + 'Yu-Gi-Oh Monster Capsule', + 'Konami', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["ymcapsul"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konmedal68k.cpp"]}'::jsonb + ), + ( + 'yu-jan', + 'Yu-Jan', + 'Yubis / T.System', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["yujan"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/macs.cpp"]}'::jsonb + ), + ( + 'yu-ka', + 'Yu-Ka', + 'Yubis / T.System', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["yuka"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/macs.cpp"]}'::jsonb + ), + ( + 'yuanyang-hudie-meng', + 'Yuanyang Hudie Meng', + 'GMS', + 2005, + array['Yuanyang Hudie Meng (Version 8.8A 2005-09-25)'], + array['Arcade'], + '{"mame":["yyhm"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/gms.cpp"]}'::jsonb + ), + ( + 'yukon', + 'Yukon', + 'Exidy', + 1989, + array['Yukon (version 2.0)'], + array['Arcade'], + '{"mame":["yukon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["exidy/exidy440.cpp"]}'::jsonb + ), + ( + 'yukon-gold', + 'Yukon Gold', + 'WMS', + 2000, + array['Yukon Gold (Russian)'], + array['Arcade'], + '{"mame":["yukongld"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/wms.cpp"]}'::jsonb + ), + ( + 'yumefuda', + 'Yumefuda', + 'Alba', + 1991, + '{}'::text[], + array['Arcade'], + '{"mame":["yumefuda"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/albazg.cpp"]}'::jsonb + ), + ( + 'z-100', + 'Z-100', + 'Zenith Data Systems', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["z100"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["heathzenith/z100.cpp"]}'::jsonb + ), + ( + 'z1013-matrix-8x4', + 'Z1013 (matrix 8x4)', + 'VEB Robotron Electronics Riesa', + 1985, + '{}'::text[], + array['Arcade'], + '{"mame":["z1013"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/z1013.cpp"]}'::jsonb + ), + ( + 'z3-guitar-synthesizer', + 'Z3 Guitar Synthesizer', + 'Korg', + 1988, + '{}'::text[], + array['Arcade'], + '{"mame":["korgz3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["korg/korgz3.cpp"]}'::jsonb + ), + ( + 'z80-based-triple-time-zone-clock', + 'Z80 based, triple time zone clock', + 'Tom Storey', + 2020, + '{}'::text[], + array['Arcade'], + '{"mame":["z80clock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/z80clock.cpp"]}'::jsonb + ), + ( + 'z80-dev-board', + 'Z80 dev board', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["z80dev"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/z80dev.cpp"]}'::jsonb + ), + ( + 'z80ne', + 'Z80NE', + 'Nuova Elettronica', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["z80ne"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/z80ne.cpp"]}'::jsonb + ), + ( + 'z9001-kc-85-1-10', + 'Z9001 (KC 85/1.10)', + 'Robotron', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["z9001"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["robotron/z9001.cpp"]}'::jsonb + ), + ( + 'zarya-vostoka', + 'Zarya Vostoka', + 'Nova Games of Canada', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["zaryavos"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/roundup.cpp"]}'::jsonb + ), + ( + 'zaviga', + 'Zaviga', + 'Data East Corporation', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["zaviga"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/bwing.cpp"]}'::jsonb + ), + ( + 'zaxxon', + 'Zaxxon', + 'Sega', + 1982, + array['Zaxxon (set 1, rev D)'], + array['Arcade'], + '{"mame":["zaxxon"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/zaxxon.cpp"]}'::jsonb + ), + ( + 'zdog-44-in-1', + 'ZDog (44 in 1)', + 'Hummer Technology Co., Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["zdog"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'zed-blade-operation-ragnarok', + 'Zed Blade / Operation Ragnarok', + 'NMK', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["zedblade"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'zektor', + 'Zektor', + 'Sega', + 1982, + array['Zektor (revision B)'], + array['Arcade'], + '{"mame":["zektor"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segag80v.cpp"]}'::jsonb + ), + ( + 'zelos', + 'Zelos', + 'Namco', + 1994, + array['Zelos (Japan, main unit)', 'Zelos (Japan, terminal)'], + array['Arcade'], + '{"mame":["zelos","zelost"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcona1.cpp"]}'::jsonb + ), + ( + 'zen-nippon-pro-wres-featuring-virtua-j-971123-v1-000', + 'Zen Nippon Pro-Wres Featuring Virtua (J 971123 V1.000)', + 'Sega', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["znpwfv"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'zenigata-ponta', + 'Zenigata Ponta', + 'Amuzy Corporation', + 2005, + array['Zenigata Ponta (Japan, ver 1.02)'], + array['Arcade'], + '{"mame":["zenponta"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/amuzy.cpp"]}'::jsonb + ), + ( + 'zenkoku-seifuku-bishoujo-grand-prix-find-love-j-971212-v1-000', + 'Zenkoku Seifuku Bishoujo Grand Prix Find Love (J 971212 V1.000)', + 'Daiki / FCF', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["findlove"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/stv.cpp"]}'::jsonb + ), + ( + 'zero-konami-endeavour', + 'Zero (Konami Endeavour)', + 'Konami', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["konzero"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["konami/konendev.cpp"]}'::jsonb + ), + ( + 'zero-gunner-export-model-2b', + 'Zero Gunner (Export, Model 2B)', + 'Psikyo', + 1997, + '{}'::text[], + array['Arcade'], + '{"mame":["zerogun"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/model2.cpp"]}'::jsonb + ), + ( + 'zero-gunner-2', + 'Zero Gunner 2', + 'Psikyo', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["zerogu2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'zero-hour', + 'Zero Hour', + 'Universal', + 1980, + array['Zero Hour (set 1)'], + array['Arcade'], + '{"mame":["zerohour"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["universal/zerohour.cpp"]}'::jsonb + ), + ( + 'zero-point', + 'Zero Point', + 'Unico', + 1998, + array['Zero Point (set 1)'], + array['Arcade'], + '{"mame":["zeropnt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/unico.cpp"]}'::jsonb + ), + ( + 'zero-point-2', + 'Zero Point 2', + 'Unico', + 1999, + '{}'::text[], + array['Arcade'], + '{"mame":["zeropnt2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["unico/unico.cpp"]}'::jsonb + ), + ( + 'zero-target', + 'Zero Target', + 'Data East Corporation', + 1985, + array['Zero Target (World, CW)'], + array['Arcade'], + '{"mame":["zerotrgt"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/cntsteer.cpp"]}'::jsonb + ), + ( + 'zero-team-usa', + 'Zero Team USA', + 'Seibu Kaihatsu (Fabtek license)', + 1993, + array['Zero Team USA (US)'], + array['Arcade'], + '{"mame":["zeroteam"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seibu/raiden2.cpp"]}'::jsonb + ), + ( + 'zero-wing', + 'Zero Wing', + 'Toaplan', + 1989, + array['Zero Wing (2P set)'], + array['Arcade'], + '{"mame":["zerowing"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["toaplan/toaplan1.cpp"]}'::jsonb + ), + ( + 'zero-zone', + 'Zero Zone', + 'Comad', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["zerozone"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["comad/zerozone.cpp"]}'::jsonb + ), + ( + 'zeroize', + 'Zeroize', + 'Data East Corporation', + 1983, + array['Zeroize (DECO Cassette) (US)'], + array['Arcade'], + '{"mame":["czeroize"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/decocass.cpp"]}'::jsonb + ), + ( + 'zexall-fpga-z80-test-interface', + 'Zexall (FPGA Z80 test interface)', + 'Frank Cringle / Kevin Horton', + 2009, + '{}'::text[], + array['Arcade'], + '{"mame":["zexall"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["homebrew/zexall.cpp"]}'::jsonb + ), + ( + 'zhongguo-chu-da-d-v102c', + 'Zhongguo Chu Da D (V102C)', + 'IGS', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["zhongguo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m027.cpp"]}'::jsonb + ), + ( + 'zhongguo-long-pretty-chance-dragon-world-pretty-chance', + 'Zhongguo Long Pretty Chance [Dragon World Pretty Chance]', + 'IGS', + 2001, + array['Zhongguo Long Pretty Chance [Dragon World Pretty Chance] (V110 03/19/02 11:13:16, China)'], + array['Arcade'], + '{"mame":["dwpc"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/pgm.cpp"]}'::jsonb + ), + ( + 'zhongji-dou-dizhu-v204cn', + 'Zhongji Dou Dizhu (V204CN)', + 'IGS', + 2010, + '{}'::text[], + array['Arcade'], + '{"mame":["zjddz"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/igs_m036.cpp"]}'::jsonb + ), + ( + 'zig-zag', + 'Zig Zag', + 'bootleg (LAX)', + 1982, + array['Zig Zag (bootleg Dig Dug conversion on Galaxian hardware, set 1)'], + array['Arcade'], + '{"mame":["zigzagb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["galaxian/galaxian.cpp"]}'::jsonb + ), + ( + 'zing-zing-zip-zhen-zhen-ji-pao', + 'Zing Zing Zip / Zhen Zhen Ji Pao', + 'Allumer / Tecmo', + 1992, + array['Zing Zing Zip (World) / Zhen Zhen Ji Pao (China?)'], + array['Arcade'], + '{"mame":["zingzip"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'zintrick-oshidashi-zentrix', + 'Zintrick / Oshidashi Zentrix', + 'bootleg', + 1996, + array['Zintrick / Oshidashi Zentrix (bootleg of CD version)'], + array['Arcade'], + '{"mame":["zintrckb"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'zip-and-zap-explicit', + 'Zip & Zap (Explicit)', + 'Barko Corp', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["zipzap"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["kaneko/expro02.cpp"]}'::jsonb + ), + ( + 'zircon-ii', + 'Zircon II', + 'Novag Industries / Intelligent Heuristic Programming', + 1995, + '{}'::text[], + array['Arcade'], + '{"mame":["zircon2"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["novag/zircon2.cpp"]}'::jsonb + ), + ( + 'zl-383-400-in-1-handheld-console', + 'ZL-383 400-in-1 Handheld Console', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["zl383"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'zoar', + 'Zoar', + 'Data East USA', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["zoar"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dataeast/btime.cpp"]}'::jsonb + ), + ( + 'zodiack', + 'Zodiack', + 'Orca (Esco Trading Co., Inc. license)', + 1983, + '{}'::text[], + array['Arcade'], + '{"mame":["zodiack"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["orca/zodiack.cpp"]}'::jsonb + ), + ( + 'zoids-infinity', + 'Zoids Infinity', + 'Tomy / Taito', + 2004, + '{}'::text[], + array['Arcade'], + '{"mame":["zoidsinf"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'zoids-infinity-ex-plus', + 'Zoids Infinity EX Plus', + 'Tomy / Taito', + 2006, + array['Zoids Infinity EX Plus (ver. 2.10)'], + array['Arcade'], + '{"mame":["zoidiexp"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["namco/namcops2.cpp"]}'::jsonb + ), + ( + 'zombie-raid', + 'Zombie Raid', + 'American Sammy', + 1995, + array['Zombie Raid (9/28/95, US)'], + array['Arcade'], + '{"mame":["zombraid"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["seta/seta.cpp"]}'::jsonb + ), + ( + 'zombie-revenge', + 'Zombie Revenge', + 'Sega', + 1999, + array['Zombie Revenge (Rev A)'], + array['Arcade'], + '{"mame":["zombrvn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/naomi.cpp"]}'::jsonb + ), + ( + 'zone-7-in-1-sports-ntsc', + 'Zone 7-in-1 Sports (NTSC)', + 'Ultimate Products Ltd.', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["zone7in1"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/vt1682.cpp"]}'::jsonb + ), + ( + 'zone-fusion', + 'Zone Fusion', + 'Ultimate Products / Jungle''s Soft', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["zonefusn"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt369_vtunknown.cpp"]}'::jsonb + ), + ( + 'zoo', + 'Zoo', + 'Astro Corp.', + 2004, + array['Zoo (Ver. ZO.02.D, Aug 27 2004)'], + array['Arcade'], + '{"mame":["zoo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["astrocorp/astrcorp.cpp"]}'::jsonb + ), + ( + 'zoo-keeper', + 'Zoo Keeper', + 'Taito America Corporation', + 1982, + array['Zoo Keeper (set 1)'], + array['Arcade'], + '{"mame":["zookeep"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/qix.cpp"]}'::jsonb + ), + ( + 'zoofari', + 'Zoofari', + 'ICE/Play Mechanix', + 2006, + '{}'::text[], + array['Arcade'], + '{"mame":["zoofari"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["ice/vp101.cpp"]}'::jsonb + ), + ( + 'zoomania', + 'Zoomania', + 'Industrias Brasileiras', + null, + array['Zoomania (Version 10.04, set 1)'], + array['Arcade'], + '{"mame":["zoomania"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/highvdeo.cpp"]}'::jsonb + ), + ( + 'zoomer-z-pda-z-7000', + 'Zoomer (Z-PDA / Z-7000)', + 'Casio / Tandy', + 1993, + '{}'::text[], + array['Arcade'], + '{"mame":["zoomer"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["casio/zoomer.cpp"]}'::jsonb + ), + ( + 'zooty-drum', + 'Zooty Drum', + 'PARA Enterprises', + 2000, + '{}'::text[], + array['Arcade'], + '{"mame":["zdrum"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/pasha2.cpp"]}'::jsonb + ), + ( + 'zorton-brothers-los-justicieros-v1-01', + 'Zorton Brothers / Los Justicieros (v1.01)', + 'Picmatic', + 1994, + '{}'::text[], + array['Arcade'], + '{"mame":["zortonbr"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["amiga/alg.cpp"]}'::jsonb + ), + ( + 'zrt-80', + 'ZRT-80', + 'Digital Research Computers', + 1982, + '{}'::text[], + array['Arcade'], + '{"mame":["zrt80"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["drc/zrt80.cpp"]}'::jsonb + ), + ( + 'zsbc-3', + 'ZSBC-3', + 'Digital Microsystems', + 1980, + '{}'::text[], + array['Arcade'], + '{"mame":["zsbc3"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["dms/zsbc3.cpp"]}'::jsonb + ), + ( + 'zuanshi-wutai-v110ii', + 'Zuanshi Wutai (V110II)', + 'IGS', + 1996, + '{}'::text[], + array['Arcade'], + '{"mame":["zuanshiw"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["igs/spoker.cpp"]}'::jsonb + ), + ( + 'zudu-go-2udu-go', + 'Zudu-go / 2udu-go', + 'Macro Winners / Waixing', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["zudugo"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["nintendo/nes_vt02_vt03.cpp"]}'::jsonb + ), + ( + 'zun-zun-block', + 'Zun Zun Block', + 'Taito', + 1979, + '{}'::text[], + array['Arcade'], + '{"mame":["zzblock"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["taito/taitottl.cpp"]}'::jsonb + ), + ( + 'zunzunkyou-no-yabou', + 'Zunzunkyou no Yabou', + 'Sega', + 1994, + array['Zunzunkyou no Yabou (Japan)'], + array['Arcade'], + '{"mame":["zunkyou"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["sega/segac2.cpp"]}'::jsonb + ), + ( + 'zupapa-italian-gambling-game', + 'Zupapa (Italian gambling game)', + '', + null, + '{}'::text[], + array['Arcade'], + '{"mame":["zupapah8"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["misc/itgambl2.cpp"]}'::jsonb + ), + ( + 'zupapa', + 'Zupapa!', + 'SNK', + 2001, + '{}'::text[], + array['Arcade'], + '{"mame":["zupapa"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["neogeo/neogeo.cpp"]}'::jsonb + ), + ( + 'zuqiu-wang-king-of-football', + 'Zuqiu Wang - King of Football', + 'BMC', + 1995, + '{}'::text[], + array['Sports'], + '{"mame":["koftball"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["bmc/koftball.cpp"]}'::jsonb + ), + ( + 'zwackery', + 'Zwackery', + 'Bally Midway', + 1984, + '{}'::text[], + array['Arcade'], + '{"mame":["zwackery"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["midway/zwackery.cpp"]}'::jsonb + ), + ( + 'zzyzzyxx', + 'Zzyzzyxx', + 'Cinematronics / Advanced Microcomputer Systems', + 1982, + array['Zzyzzyxx (set 1)'], + array['Arcade'], + '{"mame":["zzyzzyxx"]}'::jsonb, + '{"excluded_noise":["gambling","handheld","home-computer","home-console","pinball","plug-and-play"],"include_mechanical":false,"import_policy":"parents-only","source":"mame-listxml","source_file":"mame.xml","source_files":["cinematronics/jack.cpp"]}'::jsonb + ) +on conflict (slug) do update +set + title = excluded.title, + manufacturer = coalesce(g.manufacturer, excluded.manufacturer), + release_year = coalesce(g.release_year, excluded.release_year), + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(g.aliases, '{}'::text[]) || excluded.aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(g.categories, '{}'::text[]) || excluded.categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(g.external_ids, '{}'::jsonb) || (excluded.external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(g.external_ids -> 'mame', '[]'::jsonb) || coalesce(excluded.external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(g.metadata, '{}'::jsonb) || excluded.metadata; + +commit; diff --git a/supabase/seed-data/merge-mame-catalog-duplicates.sql b/supabase/seed-data/merge-mame-catalog-duplicates.sql new file mode 100644 index 0000000..83d5396 --- /dev/null +++ b/supabase/seed-data/merge-mame-catalog-duplicates.sql @@ -0,0 +1,94 @@ +-- Safe cleanup for punctuation/title duplicates created during early MAME imports. +-- +-- This merges aliases/categories/external IDs into the canonical game row, then +-- deletes the duplicate row only when it is not referenced by live inventory or +-- inventory reports. + +with duplicate_pairs(duplicate_slug, canonical_slug) as ( + values + ('dragon-s-lair', 'dragons-lair'), + ('q-bert', 'qbert'), + ('road-blasters', 'roadblasters'), + ('satan-s-hollow', 'satans-hollow'), + ('smash-t-v', 'smash-tv'), + ('soul-calibur', 'soulcalibur'), + ('soul-calibur-ii', 'soulcalibur-ii'), + ('star-wars', 'star-wars-1983'), + ('terminator-2-judgment-day', 'terminator-2-judgment-day-arcade'), + ('the-house-of-the-dead-2', 'house-of-the-dead-2') +), +matched_pairs as ( + select + duplicate_pairs.duplicate_slug, + duplicate_pairs.canonical_slug, + duplicate_game.id as duplicate_id, + canonical_game.id as canonical_id, + duplicate_game.aliases as duplicate_aliases, + duplicate_game.categories as duplicate_categories, + duplicate_game.external_ids as duplicate_external_ids, + duplicate_game.metadata as duplicate_metadata + from duplicate_pairs + join public.games duplicate_game on duplicate_game.slug = duplicate_pairs.duplicate_slug + join public.games canonical_game on canonical_game.slug = duplicate_pairs.canonical_slug +) +update public.games canonical_game +set + aliases = ( + select array( + select distinct alias_value + from unnest(coalesce(canonical_game.aliases, '{}'::text[]) || matched_pairs.duplicate_aliases) as merged_aliases(alias_value) + where alias_value <> '' + order by alias_value + ) + ), + categories = ( + select array( + select distinct category_value + from unnest(coalesce(canonical_game.categories, '{}'::text[]) || matched_pairs.duplicate_categories) as merged_categories(category_value) + where category_value <> '' + order by category_value + ) + ), + external_ids = jsonb_set( + coalesce(canonical_game.external_ids, '{}'::jsonb) || (matched_pairs.duplicate_external_ids - 'mame'), + '{mame}', + ( + select to_jsonb(array( + select distinct mame_id + from jsonb_array_elements_text(coalesce(canonical_game.external_ids -> 'mame', '[]'::jsonb) || coalesce(matched_pairs.duplicate_external_ids -> 'mame', '[]'::jsonb)) as merged_mame_ids(mame_id) + order by mame_id + )) + ), + true + ), + metadata = coalesce(canonical_game.metadata, '{}'::jsonb) || matched_pairs.duplicate_metadata +from matched_pairs +where canonical_game.id = matched_pairs.canonical_id; + +with duplicate_pairs(duplicate_slug, canonical_slug) as ( + values + ('dragon-s-lair', 'dragons-lair'), + ('q-bert', 'qbert'), + ('road-blasters', 'roadblasters'), + ('satan-s-hollow', 'satans-hollow'), + ('smash-t-v', 'smash-tv'), + ('soul-calibur', 'soulcalibur'), + ('soul-calibur-ii', 'soulcalibur-ii'), + ('star-wars', 'star-wars-1983'), + ('terminator-2-judgment-day', 'terminator-2-judgment-day-arcade'), + ('the-house-of-the-dead-2', 'house-of-the-dead-2') +) +delete from public.games duplicate_game +using duplicate_pairs +where + duplicate_game.slug = duplicate_pairs.duplicate_slug + and not exists ( + select 1 + from public.venue_games venue_game + where venue_game.game_id = duplicate_game.id + ) + and not exists ( + select 1 + from public.inventory_reports inventory_report + where inventory_report.game_id = duplicate_game.id + );